Lines Matching refs:script
83 // Process function of the JavaScript script given as an argument.
84 JsHttpRequestProcessor(Isolate* isolate, Handle<String> script)
85 : isolate_(isolate), script_(script) { }
93 // Execute the script associated with this processor and extract the
95 bool ExecuteScript(Handle<String> script);
155 // Execute the script and fetch the Process method.
182 // Compile and run the script
186 // The script compiled and ran correctly. Now we fetch out the
207 bool JsHttpRequestProcessor::ExecuteScript(Handle<String> script) {
210 // We're just about to compile the script; set up an error handler to
211 // catch any exceptions the script might throw.
214 // Compile the script and check for errors.
215 Handle<Script> compiled_script = Script::Compile(script);
219 // The script failed to compile; bail out.
223 // Run the script!
229 // Running the script failed; bail out.
635 fprintf(stderr, "No script was specified.\n");