Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
Apache FalconJX 0.7.0
-
None
Description
The module is defined in ActionScript with metdata using a name that includes a dash.
[JSModule(name="my-module")]
The generated JavaScript code looks like this:
var my-module = require("my-module);
However, that's not a valid variable name. It should produce something like this (with automatic camel casing, similar to externc):
var myModule = require("my-module");