Home | History | Annotate | Download | only in include

Lines Matching defs:Script

499  * Pre-compilation data that can be associated with a script.  This
500 * data can be calculated for a script in advance of actually
501 * compiling it, and can be stored between compilations. When script
509 * Pre-compiles the specified script (context-independent).
511 * \param input Pointer to UTF-8 script source code.
512 * \param length Length of UTF-8 script source code.
517 * Pre-compiles the specified script (context-independent).
522 * \param source Script source code.
554 * The origin, within a file, of a script.
576 * A compiled JavaScript script.
578 class V8EXPORT Script {
582 * Compiles the specified script (context-independent).
584 * \param source Script source code.
585 * \param origin Script origin, owned by caller, no references are kept
590 * \param script_data Arbitrary data associated with script. Using
593 * \return Compiled script object (context independent; when run it
596 static Local<Script> New(Handle<String> source,
602 * Compiles the specified script using the specified file name
603 * object (typically a string) as the script's origin.
605 * \param source Script source code.
607 * as the script's origin.
608 * \return Compiled script object (context independent; when run it
611 static Local<Script> New(Handle<String> source,
615 * Compiles the specified script (bound to current context).
617 * \param source Script source code.
618 * \param origin Script origin, owned by caller, no references are kept
623 * \param script_data Arbitrary data associated with script. Using
626 * \return Compiled script object, bound to the context that was active
630 static Local<Script> Compile(Handle<String> source,
636 * Compiles the specified script using the specified file name
637 * object (typically a string) as the script's origin.
639 * \param source Script source code.
640 * \param file_name File name to use as script's origin
641 * \param script_data Arbitrary data associated with script. Using
644 * \return Compiled script object, bound to the context that was active
648 static Local<Script> Compile(Handle<String> source,
653 * Runs the script returning the resulting value. If the script is
662 * Returns the script id value.
667 * Associate an additional data object with the script. This is mainly used
684 * Returns the resource name for the script from where the function causing
690 * Returns the resource data for the script from where the function causing
708 * Returns the index within the script of the first character where
714 * Returns the index within the script of the last character where
813 * Returns the name of the resource that contains the script for the
819 * Returns the name of the resource that contains the script for the
820 * function for this StackFrame or sourceURL value if the script name
3078 * script.
3309 friend class Script;