• Home
  • Raw
  • Download

Lines Matching refs:Script

22 TQ_OBJECT_CONSTRUCTORS_IMPL(Script)
24 NEVER_READ_ONLY_SPACE_IMPL(Script) in NEVER_READ_ONLY_SPACE_IMPL() argument
27 ACCESSORS_CHECKED(Script, wasm_breakpoint_infos, FixedArray, in NEVER_READ_ONLY_SPACE_IMPL()
30 ACCESSORS_CHECKED(Script, wasm_managed_native_module, Object, in NEVER_READ_ONLY_SPACE_IMPL()
32 ACCESSORS_CHECKED(Script, wasm_weak_instance_list, WeakArrayList, in NEVER_READ_ONLY_SPACE_IMPL()
39 SMI_ACCESSORS(Script, type, kScriptTypeOffset) in NEVER_READ_ONLY_SPACE_IMPL()
40 ACCESSORS_CHECKED(Script, eval_from_shared_or_wrapped_arguments_or_sfi_table, in NEVER_READ_ONLY_SPACE_IMPL()
43 SMI_ACCESSORS_CHECKED(Script, eval_from_position, kEvalFromPositionOffset, in NEVER_READ_ONLY_SPACE_IMPL()
47 bool Script::is_wrapped() const { in NEVER_READ_ONLY_SPACE_IMPL()
52 bool Script::has_eval_from_shared() const { in has_eval_from_shared()
57 void Script::set_eval_from_shared(SharedFunctionInfo shared, in set_eval_from_shared()
64 SharedFunctionInfo Script::eval_from_shared() const { in eval_from_shared()
70 void Script::set_wrapped_arguments(FixedArray value, WriteBarrierMode mode) { in set_wrapped_arguments()
76 FixedArray Script::wrapped_arguments() const { in wrapped_arguments()
81 void Script::set_shared_function_info_table(ObjectHashTable value, in set_shared_function_info_table()
89 ObjectHashTable Script::shared_function_info_table() const { in shared_function_info_table()
95 DEF_GETTER(Script, shared_function_infos, WeakFixedArray) { in DEF_GETTER() argument
104 void Script::set_shared_function_infos(WeakFixedArray value, in set_shared_function_infos()
113 int Script::shared_function_info_count() const { in shared_function_info_count()
123 bool Script::has_wasm_breakpoint_infos() const { in has_wasm_breakpoint_infos()
127 wasm::NativeModule* Script::wasm_native_module() const { in wasm_native_module()
131 bool Script::break_on_entry() const { return BreakOnEntryBit::decode(flags()); } in break_on_entry()
133 void Script::set_break_on_entry(bool value) { in set_break_on_entry()
138 Script::CompilationType Script::compilation_type() { in compilation_type()
141 void Script::set_compilation_type(CompilationType type) { in set_compilation_type()
144 Script::CompilationState Script::compilation_state() { in compilation_state()
147 void Script::set_compilation_state(CompilationState state) { in set_compilation_state()
151 bool Script::is_repl_mode() const { return IsReplModeBit::decode(flags()); } in is_repl_mode()
153 void Script::set_is_repl_mode(bool value) { in set_is_repl_mode()
157 ScriptOriginOptions Script::origin_options() { in origin_options()
160 void Script::set_origin_options(ScriptOriginOptions origin_options) { in set_origin_options()
165 bool Script::HasValidSource() { in HasValidSource()
178 bool Script::HasSourceURLComment() const { in HasSourceURLComment()
182 bool Script::IsMaybeUnfinalized(Isolate* isolate) const { in IsMaybeUnfinalized()