Home | History | Annotate | Download | only in include

Lines Matching defs:Script

97 class Script;
994 * The origin, within a file, of a script.
1030 * A compiled JavaScript script, not yet tied to a Context.
1035 * Binds the script to the currently entered context.
1037 Local<Script> BindToCurrentContext();
1052 * Returns zero based line number of the code_pos location in the script.
1103 * A compiled JavaScript script, tied to a Context which was active when the
1104 * script was compiled.
1106 class V8_EXPORT Script {
1113 Local<Script> Compile(Local<String> source,
1115 static V8_WARN_UNUSED_RESULT MaybeLocal<Script> Compile(
1119 static Local<Script> V8_DEPRECATE_SOON("Use maybe version",
1124 * Runs the script returning the resulting value. It will be run in the
1132 * Returns the corresponding context-unbound script.
1182 * Source code which can be then compiled to a UnboundScript or Script.
1223 * For streaming incomplete script data to V8. The embedder should implement a
1315 * Compiles the specified script (context-independent).
1323 * \param source Script source code.
1324 * \return Compiled script object (context independent; for running it must be
1336 * Compiles the specified script (bound to current context).
1338 * \param source Script source code.
1342 * \return Compiled script object, bound to the context that was active
1348 Local<Script> Compile(Isolate* isolate, Source* source,
1350 static V8_WARN_UNUSED_RESULT MaybeLocal<Script> Compile(
1355 * Returns a task which streams script data into V8, or NULL if the script
1358 * script, and it will request data from the StreamedSource as needed. When
1359 * ScriptStreamingTask::Run exits, all data has been streamed and the script
1370 * Compiles a streamed script (bound to current context).
1377 Local<Script> Compile(Isolate* isolate,
1381 static V8_WARN_UNUSED_RESULT MaybeLocal<Script> Compile(
1458 * Returns the origin for the script from where the function causing the
1464 * Returns the resource name for the script from where the function causing
1483 * Returns the index within the script of the first character where
1489 * Returns the index within the script of the last character where
1514 * Passes on the value set by the embedder when it fed the script from which
1606 * Returns the id of the script for the function for this StackFrame.
1608 * retrieve the script id, or if kScriptId was not passed as an option when
1614 * Returns the name of the resource that contains the script for the
1620 * Returns the name of the resource that contains the script for the
1621 * function for this StackFrame or sourceURL value if the script name
5822 // --- Enter/Leave Script Callback ---
5890 * - auto: microtasks are invoked when the script call depth decrements
6138 // Script info for CODE_ADDED event.
6139 Local<UnboundScript> script;
6973 * Adds a callback to notify the host application right before a script
6974 * is about to run. If a script re-enters the runtime during executing, the
6986 * Adds a callback to notify the host application when a script finished
6987 * running. If a script re-enters the runtime during executing, the
6988 * CallCompletedCallback is only invoked when the outer-most script
7411 * snapshot. Include the side-effects of running the optional script.
7419 * warm-up script to trigger code compilation. The side effects are then
7916 * Returns true if an exception has been caught due to script execution
7921 * methods are called to terminate a long-running script.
8270 friend class Script;