Lines Matching full:path
33 help="path to nodejs exetuable")
34 parser.add_argument("--frontend-tool-path",
35 help="path to frontend conversion tool")
37 help='path to node-modules exetuable')
38 parser.add_argument("--plugin-path",
39 help="plugin js file path")
59 js_file = os.path.join(file_path, file_name)
60 file_name_pre = os.path.splitext(file_name)[0]
62 generate_js_bytecode = os.path.join(
63 os.path.dirname(__file__), "generate_js_bytecode.py")
65 (out_dir, _) = os.path.split(input_arguments.generated_file)
66 dst_file = os.path.join(out_dir, f'{file_name_pre}{JS_BIN_EXT}')
75 '--frontend-tool-path',
91 if os.path.exists(out_file):
94 file_name_pre = os.path.splitext(file_name)[0]
95 js_src_file = os.path.join(file_path, file_name)
96 (out_dir, _) = os.path.split(input_arguments.generated_file)
97 js_bin_file = os.path.join(out_dir, file_name_pre + JS_BIN_EXT)
151 buf = bytearray(os.path.getsize(js_bin_file))