X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-script-v8%2Fsrc%2Fmodule-loader%2Fmodule-loader.cpp;h=9255574b3451f830e4633fb5fa910b228e3230fe;hb=697145b86697d27ad5d66ba0fb7a49a018b1f29c;hp=12ad13c485548e352519ab6c0c95d7cde52fb663;hpb=9c6ea1aa6babb4e6e1c59187cad13b44e0639662;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-script-v8/src/module-loader/module-loader.cpp b/plugins/dali-script-v8/src/module-loader/module-loader.cpp index 12ad13c..9255574 100644 --- a/plugins/dali-script-v8/src/module-loader/module-loader.cpp +++ b/plugins/dali-script-v8/src/module-loader/module-loader.cpp @@ -18,6 +18,9 @@ // CLASS HEADER #include "module-loader.h" +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include @@ -105,7 +108,7 @@ bool ModuleLoader::ExecuteScriptFromFile( v8::Isolate* isolate, } /** - * ### var module = require("module-name"); + * ### var module = require("moduleName"); * * * There is no standard for modules or the 'require' keyword in JavaScript.
@@ -161,7 +164,7 @@ bool ModuleLoader::ExecuteScriptFromFile( v8::Isolate* isolate, * from an object literal with name-value pairs (exports object) to a function. * * // my_first_module.js - * module.exports = function() { log("hello-world"); } + * module.exports = function() { log("helloWorld"); } * *
* @@ -173,23 +176,24 @@ bool ModuleLoader::ExecuteScriptFromFile( v8::Isolate* isolate, * #### Exporting as a constructor * * - * // ImageActor.js - * function ImageActor( position, orientation, image, name ) + * // ImageView.js + * function ImageView( position, orientation, image, name ) * { - * this = new dali.ImageActor( image ); + * this = new dali.Control("ImageView"); + * this.image = image; * this.position = position; * this.orientation = orientation; * this.name = name; * } - * module.exports = ImageActor; + * module.exports = ImageView; * *
* * // main.js * - * var ImageActor = require(" ImageActor.js"); + * var ImageView = require(" ImageView.js"); * - * var imageActor = new ImageActor( position, orientation, image, "my first image actor"); + * var imageView = new ImageView( position, orientation, image, "my first image actor"); * * #### Exporting as a singleton *