This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


    from a745882  provided isn't allowed in many places in Maven 3 so use 
runtime instead and allow for swf build of asdoc to be skipped
     new d20bb6b  ClassDirectiveProcessor: fixed issue where methods could be 
marked abstract without an error (references #73) AbstractOutsideClassProblem: 
fixed wording of invalid abstract usage error
     new 0e3fbc7  ASFeatureTestsBase: do not add 'Unexpected compilation 
problems:' to result string unless there are actually some problems
     new ddc6ec3  compiler: implemented abstract methods (closes #75)

The 3 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:
 .../compiler/internal/codegen/as/ASEmitter.java    |   12 +
 .../codegen/js/royale/TestRoyaleMethodMembers.java |    8 +
 .../as/codegen/ClassDirectiveProcessor.java        |  146 ++-
 .../as/codegen/GlobalDirectiveProcessor.java       |   62 +-
 .../as/codegen/InterfaceDirectiveProcessor.java    |   68 +-
 .../internal/definitions/ClassDefinition.java      |   59 +
 .../internal/definitions/FunctionDefinition.java   |   26 +
 .../semantics/MethodBodySemanticChecker.java       |   24 +-
 .../compiler/internal/semantics/SemanticUtils.java |   36 +-
 ...lem.java => AbstractMethodWithBodyProblem.java} |   10 +-
 .../problems/AbstractOutsideClassProblem.java      |    2 +-
 ...em.java => BadAccessAbstractMethodProblem.java} |   15 +-
 ...ava => UnimplementedAbstractMethodProblem.java} |   15 +-
 .../src/test/java/as/ASAbstractClassTests.java     | 1193 ++++++++++++++++++++
 compiler/src/test/java/as/ASFeatureTestsBase.java  |    2 +-
 15 files changed, 1579 insertions(+), 99 deletions(-)
 copy 
compiler/src/main/java/org/apache/royale/compiler/problems/{InterfaceMethodWithBodyProblem.java
 => AbstractMethodWithBodyProblem.java} (78%)
 copy 
compiler/src/main/java/org/apache/royale/compiler/problems/{InvalidPrivateNamespaceProblem.java
 => BadAccessAbstractMethodProblem.java} (73%)
 copy 
compiler/src/main/java/org/apache/royale/compiler/problems/{UnimplementedInterfaceMethodProblem.java
 => UnimplementedAbstractMethodProblem.java} (69%)
 create mode 100644 compiler/src/test/java/as/ASAbstractClassTests.java

Reply via email to