Skip to content

Commit

Permalink
Run tools/format.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 6, 2018
1 parent fe404df commit d9cb093
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ static_library("libdeno") {
v8_source_set("deno_nosnapshot") {
sources = [
"src/binding.cc",
"src/internal.h",
"src/deno.h",
"src/file_util.cc",
"src/file_util.h",
"src/deno.h",
"src/internal.h",
]
deps = [
"third_party/v8:v8_monolith",
Expand Down
2 changes: 1 addition & 1 deletion src/binding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ IN THE SOFTWARE.
#include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h"

#include "internal.h"
#include "deno.h"
#include "internal.h"

namespace deno {

Expand Down
1 change: 1 addition & 0 deletions src/deno.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// All rights reserved. MIT License.
#ifndef DENO_H_
#define DENO_H_
#include <stddef.h>
// Neither Rust nor Go support calling directly into C++ functions, therefore
// the public interface to libdeno is done in C.
#ifdef __cplusplus
Expand Down
2 changes: 1 addition & 1 deletion src/from_snapshot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h"

#include "internal.h"
#include "deno.h"
#include "internal.h"

#ifdef DENO_MOCK_RUNTIME
#include "snapshot_mock_runtime.cc"
Expand Down
2 changes: 1 addition & 1 deletion src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#include <unistd.h>
#endif

#include "flatbuffers/flatbuffers.h"
#include "deno.h"
#include "flatbuffers/flatbuffers.h"
#include "src/msg_generated.h"
#include "third_party/v8/src/base/logging.h"

Expand Down
4 changes: 2 additions & 2 deletions src/snapshot_creator.cc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright 2018 Ryan Dahl <[email protected]>
// All rights reserved. MIT License.
// Hint: --trace_serializer is a useful debugging flag.
#include "internal.h"
#include "file_util.h"
#include "deno.h"
#include "file_util.h"
#include "internal.h"
#include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h"

Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"allowUnreachableCode": false,
"experimentalDecorators": true
},
"include": [ "js/main.ts" ],
"exclude": [ "node_modules" ]
"include": ["js/main.ts"],
"exclude": ["node_modules"]
}

0 comments on commit d9cb093

Please sign in to comment.