royale-compiler icon indicating copy to clipboard operation
royale-compiler copied to clipboard

Apache Royale Compiler

Results 58 royale-compiler issues
Sort by recently updated
recently updated
newest added

Hi! We spot a vulnerable dependency in your project, which might threaten your software. And we found that the vulnerable function of this CVE can be easily accessed from your...

Attached example (labelField="bindItem(...)") throws this error: ``` c:\somewhere\TestLabelItemBind.mxml line 16 column 31 Error: Internal error in ASBlockWalker subsystem, when generating code for: c:\somewhere\TestLabelItemBind.mxml line 16 column 31: java.lang.NullPointerException at org.apache.royale.compiler.internal.codegen.mxml.royale.MXMLRoyaleEmitter.emitInstance(MXMLRoyaleEmitter.java:2483)...

bug

Bumps [plexus-utils](https://github.com/sonatype/plexus-utils) from 3.0.3 to 3.0.16. Commits cf317f9 [maven-release-plugin] prepare release plexus-utils-3.0.16 26e3ae8 Remove incorrect tag element 99639d6 Little test to mimic ${project.artifactMap(g:a:c)} usage 5d46979 Needs to build with 1.7...

dependencies

When using CDATA for literals that contain something that looks like data binding (i.e. {sum}), getting error: ``` Warning: Data binding will not be able to detect assignments to 'sum'....

This code will result in an issue : ``` var d1:Date = new Date(); d1.hours = d1.minutes = d1.milliseconds = 0; trace ("d1->" + d1.getTime()); ``` will output : `d1->NaN`...

Currently in ActionScript, it's only possible to declare function signatures for methods and package level functions. It's not possible to declare signatures for variables and function paramters. The best you...

language feature

Using this simple app: ``` ``` If you compile using this config: ``` { "config": "royale", "compilerOptions": { "debug": true, "targets": ["JSRoyale"], "source-map": true, "remove-circulars": true }, "additionalOptions": "-js-output-optimization=skipAsCoercions -allow-abstract-classes=true...

The following application: ``` ; console.log(xml.toXMLString()); } ]]> ``` compiled using: ``` { "config": "royale", "compilerOptions": { "debug": true, "targets": ["JSRoyale"], "source-map": true, "remove-circulars": true }, "additionalOptions": "-js-output-optimization=skipAsCoercions -js-dynamic-access-unknown-members=true -allow-abstract-classes=true...

bug

Example: ```as3 package { public class CommentInsideFunctionParameters { public function CommentInsideFunctionParameters(param:Object=null /** asdoc comment is bad? **/) { } } } ``` The Royale compiler gives the following error, but...

bug