Repository: flex-falcon Updated Branches: refs/heads/feature/flexmojos-tests 609dd49b1 -> c2eb5dae6
- Added one more test reproducing a problem with mx:Repeater and operand stack underflows. Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/c2eb5dae Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/c2eb5dae Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/c2eb5dae Branch: refs/heads/feature/flexmojos-tests Commit: c2eb5dae68ec8501c65401b4fc2d95d71bb43ea3 Parents: 609dd49 Author: cdutz <[email protected]> Authored: Sat Oct 25 17:34:05 2014 +0200 Committer: cdutz <[email protected]> Committed: Sat Oct 25 17:34:05 2014 +0200 ---------------------------------------------------------------------- flexmojos-tests/mx-repeater/pom.xml | 44 ++++++++++++++++++++ .../src/main/flex/TestMxRepeater.mxml | 10 +++++ flexmojos-tests/pom.xml | 5 +++ 3 files changed, 59 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c2eb5dae/flexmojos-tests/mx-repeater/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/mx-repeater/pom.xml b/flexmojos-tests/mx-repeater/pom.xml new file mode 100644 index 0000000..c793c50 --- /dev/null +++ b/flexmojos-tests/mx-repeater/pom.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.flex.compiler.falcon.tests</groupId> + <artifactId>mx-repeater</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>swc</packaging> + + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>net.flexmojos.oss</groupId> + <artifactId>flexmojos-maven-plugin</artifactId> + <version>7.1.0-SNAPSHOT</version> + <extensions>true</extensions> + <dependencies> + <dependency> + <groupId>org.apache.flex.compiler</groupId> + <artifactId>falcon-compiler</artifactId> + <version>0.0.3-SNAPSHOT</version> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.flex</groupId> + <artifactId>framework</artifactId> + <version>4.13.0.20140701</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>com.adobe.flash.framework</groupId> + <artifactId>playerglobal</artifactId> + <version>13.0</version> + <type>swc</type> + </dependency> + </dependencies> + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c2eb5dae/flexmojos-tests/mx-repeater/src/main/flex/TestMxRepeater.mxml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/mx-repeater/src/main/flex/TestMxRepeater.mxml b/flexmojos-tests/mx-repeater/src/main/flex/TestMxRepeater.mxml new file mode 100644 index 0000000..c6fba7c --- /dev/null +++ b/flexmojos-tests/mx-repeater/src/main/flex/TestMxRepeater.mxml @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" + xmlns:mx="library://ns.adobe.com/flex/mx" + xmlns:s="library://ns.adobe.com/flex/spark"> + + <mx:Repeater> + <mx:Label text="Text"/> + </mx:Repeater> + +</s:Application> http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c2eb5dae/flexmojos-tests/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/pom.xml b/flexmojos-tests/pom.xml index 115bf02..c734e4d 100644 --- a/flexmojos-tests/pom.xml +++ b/flexmojos-tests/pom.xml @@ -78,6 +78,11 @@ Problem area: When annotating an Interface with Bindable, this causes problems. --> <module>bindable-interface</module> + + <!-- + Problem area: When including an mx:Repeater, Falcon produces operand stack underflow exceptions. + --> + <module>mx-repeater</module> </modules> </project> \ No newline at end of file
