Skip to content

Commit

Permalink
chore: rename js_internals file
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldziuba03 committed Sep 16, 2024
1 parent bc4b95d commit 47811cd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ def generate_cpp_header(folder_path, output_file):
f.write(f"#endif // {header_guard}\n")

folder_path = "./js"
output_file = "core/js_internals.hh"
output_file = "core/js_internals.h"

generate_cpp_header(folder_path, output_file)
File renamed without changes.
2 changes: 1 addition & 1 deletion core/loader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <unordered_map>

#include <assert.h>
#include "js_internals.hh"
#include "js_internals.h"
#include <v8.h>
#include "v8_utils.cc"

Expand Down

0 comments on commit 47811cd

Please sign in to comment.