On 9/18/16, 12:03 AM, "lizhi" <[email protected]> wrote:
>function JSCompiler_emptyFn() {
> return function () {}
>
>}
>function JSCompiler_set(a) {
> return function (b) {
> this[a] = b
> }
>}
>function JSCompiler_get(a) {
> return function () {
> return this[a]
> }
>}
>function JSCompiler_returnArg(a) {
> return function () {
> return a
> }
>}
>
>This code is generated by mxmlc , this code is not included in any of my
>code , I do not know where they come from , then this code is also very
>important , can solve the problem .
I don't see this in my output. JSCompiler is part of Google Closure
Compiler so maybe you are using a different version than I am. CompC will
not send the output to Google Closure Compiler.
-Alex