Lines Matching refs:file
49 # load("path/to/file.js")
50 # d8.file.execute("path/to/file.js")
54 # import foobar from "path/to/file.js"
55 # import {foo, bar} from "path/to/file.js"
56 # export {"foo" as "bar"} from "path/to/file.js"
61 # import "path/to/file.js"
72 def read_file(file):
73 with open(file, encoding='ISO-8859-1') as f:
81 self.name = name # string that identifies test in the status file
344 """Gets runtime flags from a status file.
451 def _get_resources_for_file(self, file):
452 """Returns for a given file a list of absolute paths of files needed by the
453 given file.
455 source = read_file(file)
461 os.path.join(os.path.dirname(file), import_path)))
474 # Imported files are relative to the file importing them.