This is an automated email from the ASF dual-hosted git repository.
greg-dove pushed a change to branch local_var_resolution_issue
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
from c55c317b8 Refine definition handling and add compiler diagnostic
utilities. -Add synchronization to metatag management in DefinitionBase and
improve robustness of file path comparisons. -Enhance FunctionScope to
automatically trigger re-parsing of function bodies during property lookups if
nodes have been reclaimed. -Improve robustness of ASScopeBase.toString() and
RoyaleProject.doubleCheckAmbiguousDefinition() with null-safety checks. -Add
CompilerDiagnosticsConstants.println() [...]
add 308d8867b JSDynamicAccessOverride, JSForInOverride, and
JSForEachOverride metadata: optionally emit custom method calls when specific
syntax is encountered
add b1370d2e1 IJSMetaAttributeConstants: move from some magic strings to
constants for existing JS metadata
add bbeed1399 Fix up some more metadata checks to use constants
add 9dd78ef74 IJSMetaAttributeConstants: missed adding a separate
iteratorDoneMethod for JSForEachOverride
add 42b49b4e3 MXMLRoyaleEmitter: when emitting the new
UIComponentDescriptors, include children for MX containers
add 9e580afe5 MXMLJSCNative: support resource bundles for JS target,
similar to JSRoyale
new 14fbdf9cc Merge branch 'develop' into missing_scope_bugfix
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
RELEASE_NOTES.md | 2 +
.../royale/compiler/clients/COMPJSCNative.java | 13 +-
.../royale/compiler/clients/COMPJSCRoyale.java | 13 +-
.../royale/compiler/clients/MXMLJSCNative.java | 192 ++++++++++++
.../constants/IJSMetaAttributeConstants.java | 62 ++++
.../codegen/js/jx/BinaryOperatorEmitter.java | 91 +++++-
.../internal/codegen/js/jx/ClassEmitter.java | 41 +++
.../codegen/js/jx/DynamicAccessEmitter.java | 21 ++
.../internal/codegen/js/jx/ForEachEmitter.java | 337 +++++++++++++++++++++
.../internal/codegen/js/jx/ForLoopEmitter.java | 183 ++++++++++-
.../internal/codegen/js/jx/LiteralEmitter.java | 3 +-
.../codegen/js/jx/UnaryOperatorEmitter.java | 35 ++-
.../js/royale/JSRoyaleASDocDITAEmitter.java | 3 +-
.../codegen/mxml/royale/MXMLRoyaleEmitter.java | 144 ++++++++-
.../codegen/mxml/royale/MXMLRoyalePublisher.java | 18 +-
.../internal/parsing/as/RoyaleASDocDelegate.java | 5 +-
.../internal/projects/RoyaleJSProject.java | 5 +-
.../royale/compiler/utils/DefinitionUtils.java | 6 +-
.../constants/IMetaAttributeConstants.java | 3 +
.../problems/MissingMetaTagAttributeProblem.java | 14 +-
.../main/java/org/apache/royale/utils/JSXUtil.java | 3 +-
21 files changed, 1135 insertions(+), 59 deletions(-)
create mode 100644
compiler-jx/src/main/java/org/apache/royale/compiler/constants/IJSMetaAttributeConstants.java
copy
compiler-jx/src/main/java/org/apache/royale/compiler/problems/JSIncludeMetaTagUnknownAttributeProblem.java
=>
compiler/src/main/java/org/apache/royale/compiler/problems/MissingMetaTagAttributeProblem.java
(76%)