Lines Matching refs:JavaScript
1 JerryScript Engine can be embedded into any application, providing the way to run JavaScript in a l…
3 …is intended to introduce you to JerryScript embedding API and to create a minimal JavaScript shell.
38 ## Example 1. Execute JavaScript from your application
74 and cleaned up with the `jerry_cleanup` method. The example JavaScript code
131 ## Example 3. Split JavaScript parsing and script execution
194 ## Example 4. Adding a C method for JavaScript
196 The previous examples were not that eye catching as there were no visual output by the JavaScript c…
200 This method will be implemented in C and will be called from the JavaScript code.
226 /* Return an "undefined" value to the JavaScript engine */
239 /* Add the "print" method for the JavaScript global object */
303 argument (which probably comes from a JavaScript source) to a JS string and prints it out to the st…
346 /* Return an "undefined" value to the JavaScript engine */
359 /* Add the "print" method for the JavaScript global object */
485 ## Example 7. Interaction with JavaScript environment - adding a string property
503 /* Initializing JavaScript environment */
537 /* Free JavaScript value, returned by eval */
565 …e which wraps another value. This "error" can be created by throwing a JavaScript value from JS co…
664 ## Example 8: Simple JavaScript shell
666 Now all building blocks, necessary to construct JavaScript shell, are ready.
910 /* Free JavaScript value, returned by eval */
1028 /* Free JavaScript value, returned by eval (my_js_object) */
1041 /* Free JavaScript value, returned by eval */
1103 /* Free the JavaScript value returned by eval */