Repository: flex-falcon Updated Branches: refs/heads/develop 639c5f2c6 -> 251672631
Added 'window' to NativeJSType to permit direct access to window object for javascript, required for 'remove-circulars' Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/25167263 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/25167263 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/25167263 Branch: refs/heads/develop Commit: 251672631e4304e58a5ae912788bfad29f88c3fd Parents: 639c5f2 Author: greg-dove <[email protected]> Authored: Wed Mar 29 09:00:53 2017 +1300 Committer: greg-dove <[email protected]> Committed: Wed Mar 29 09:01:55 2017 +1300 ---------------------------------------------------------------------- .../src/main/java/org/apache/flex/compiler/utils/NativeUtils.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/25167263/compiler-jx/src/main/java/org/apache/flex/compiler/utils/NativeUtils.java ---------------------------------------------------------------------- diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/utils/NativeUtils.java b/compiler-jx/src/main/java/org/apache/flex/compiler/utils/NativeUtils.java index b2396c1..4582a54 100644 --- a/compiler-jx/src/main/java/org/apache/flex/compiler/utils/NativeUtils.java +++ b/compiler-jx/src/main/java/org/apache/flex/compiler/utils/NativeUtils.java @@ -118,6 +118,7 @@ public class NativeUtils String("String"), undefined("undefined"), unescape("unescape"), + window("window"), // (erikdebruin) These aren't strictly 'native' to JS, but the // Publisher provides global functions, so, for all
