Falcon MXML progress

2012-12-21 Thread Gordon Smith
Today I added feature tests for the , , , and tags. Next to come will probably be and , and then property/style/event attributes/tags. Once we've got a set of tests for all kinds of tags and attributes, I'll work on states and databinding. I'll be on break and not reading flex-dev until Thurs

RE: Falcon functional tests

2012-12-21 Thread Gordon Smith
= File.createTempFile(outputSwcName, ".swc"); > tmpFile.deleteOnExit(); output = tmpFile.getAbsolutePath(); > > does remove the temporary swcs. > > If you're not doing anything else with the tests, I can commit this > easy fix. > > Cheers, > Chema > > 201

Falcon functional tests

2012-12-21 Thread Gordon Smith
My user directory is getting littered with files like airframework236875180568976546.swc from the functional tests that compile SWCs. Did somebody change the way they compile, or has this been happening since I wrote the test infrastructure? - Gordon

RE: Falcon tests

2012-12-21 Thread Gordon Smith
gt; if not the it sets env.FLEX_HOME as FLEX_HOME. >> >> >> >> >> .. what do think about moving unittest.properties one directory up ( >> maybe rename that file to env.properties ) so it can be used for >> compiler, compiler.js (and/or compiler.jx) and co

RE: [jira] [Commented] (FLEX-33320) Falcon doesn't allow multiline member access

2012-12-20 Thread Gordon Smith
There has always been an ambiguity in AS3 about [Foo] being interpretable as either metadata or as property access. (This is one reason we're changing the metadata syntax in AS4!) I don't remember the rule in the old compiler, but I think Falcon's rule is that if the [Foo] is the first nonwhites

RE: svn commit: r1423863 - /incubator/flex/sdk/branches/develop/frameworks/projects/charts/src/mx/charts/DateTimeAxis.as

2012-12-19 Thread Gordon Smith
es? Is styleFunction of type Function? The same case... newStyles is Object, for styleFunction there is override public function set styleFunction(value:Function):void { super.styleFunction = value; } 2012/12/19 Gordon Smith > What is the type of newStyles? Is styleFunction of type

RE: Flex just became a TLP (top-level project) with Alex as our VP

2012-12-19 Thread Gordon Smith
Woohoo! - Gordon -Original Message- From: Carol Frampton [mailto:cfram...@adobe.com] Sent: Wednesday, December 19, 2012 1:13 PM To: flex-dev@incubator.apache.org Subject: Flex just became a TLP (top-level project) with Alex as our VP On 12/19/12 4 :00PM, "Doug Cutting" wrote: >The D

RE: svn commit: r1423863 - /incubator/flex/sdk/branches/develop/frameworks/projects/charts/src/mx/charts/DateTimeAxis.as

2012-12-19 Thread Gordon Smith
What is the type of newStyles? Is styleFunction of type Function? - Gordon -Original Message- From: Chema Balsas [mailto:jbal...@gmail.com] Sent: Wednesday, December 19, 2012 12:47 PM To: flex-dev@incubator.apache.org Subject: Re: svn commit: r1423863 - /incubator/flex/sdk/branches/dev

RE: svn commit: r1423863 - /incubator/flex/sdk/branches/develop/frameworks/projects/charts/src/mx/charts/DateTimeAxis.as

2012-12-19 Thread Gordon Smith
on(v); In this case, I used that "hackish" construction because I saw it was already used somewhere else in the existing code. For example, you can find it in line 1334 in DateTimeAxis.as line 377 in LogAxis.as Of course, I'm open to suggestions :) Cheers, Chema 2012/12/19 Gord

RE: svn commit: r1423863 - /incubator/flex/sdk/branches/develop/frameworks/projects/charts/src/mx/charts/DateTimeAxis.as

2012-12-19 Thread Gordon Smith
What error or warning did Falcon produce without this? - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Wednesday, December 19, 2012 12:07 PM To: flex-dev@incubator.apache.org Subject: Re: svn commit: r1423863 - /incubator/flex/sdk/branches/develop

RE: Falcon tests

2012-12-17 Thread Gordon Smith
e sdk or update this file... Cheers, Chema 2012/12/15 Gordon Smith > Yep, my fault. Sorry about that! > > - Gordon > > -Original Message- > From: Gordon Smith > Sent: Friday, December 14, 2012 4:57 PM > To: flex-dev@incubator.apache.org > Subject: RE: Falcon

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
't doing this, but is it going to? It's easy to modify the compile-config files to get these, and it does show the dependencies more explicitly. What do you think? Cheers, Chema 2012/12/15 Gordon Smith > I'm not sure what's going on with the resource bundle issue, but I &g

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
. How's that compc doesn't > complain? Is this another place where Falcon is pickier? > > Take the mx project. Other than its bundles, it uses some from > framework, so we need to add both folders to the source-path in > compile-config.xml where none was used before. Is

RE: Falcon tests

2012-12-14 Thread Gordon Smith
Yep, my fault. Sorry about that! - Gordon -Original Message- From: Gordon Smith Sent: Friday, December 14, 2012 4:57 PM To: flex-dev@incubator.apache.org Subject: RE: Falcon tests I have a feeling I may have updated the sdk trunk when I thought I was updating branches/develop. I&#x

RE: Falcon tests

2012-12-14 Thread Gordon Smith
check to see what might be the problem, but they're currently passing for me. 2012/12/15 Gordon Smith > > Do you mean sdk, which is copied to compiler/generated/dist/sdk? > > I'm not sure what you're asking. I'm talking about removing the > copy.sdk that I ad

New Falcon feature tests

2012-12-14 Thread Gordon Smith
Today I added Falcon feature tests for the /, /, and / tags, showing that these codegen properly. I also ddded Javadoc explaining how these tags differ from ordinary instance tags. Feature tests can now optionally compile against various Flex SWCs (rather than just playerglobal.swc) and can a

RE: Falcon tests

2012-12-14 Thread Gordon Smith
run the SWC-building tests. However, > some of them fail for me: You probably have to update the sdk (branch develop). I think he made some sdk changes. Cyrill On Fri, Dec 14, 2012 at 1:48 PM, Gordon Smith wrote: > @czadra: Thanks for making all the tests use a consistent way to find th

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
We now have 18 > out of 29 tests passing. I'll try to start looking over the hard ones > over the week. > > Cheers, > Chema > > > 2012/12/10 Gordon Smith > >> > I've just commited some changes into rpc, authoringsupport, >> > framework &g

Falcon tests

2012-12-14 Thread Gordon Smith
@czadra: Thanks for making all the tests use a consistent way to find the SDK. In your template-unittest.properties file, it seems like the four lines for setting the properties shouldn't be commented out with #, since anybody making a copy will have to uncomment these lines. Also, is there any

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Gordon Smith
fo. Mike Quoting Gordon Smith : > I would be surprised if the BURM is faster than a simple top-down walk. > > The main advantage of using a BURM is that it allows for optimizations > to be easily coded as alternate reductions with lower cost. Typically > there are many difference

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Gordon Smith
I would be surprised if the BURM is faster than a simple top-down walk. The main advantage of using a BURM is that it allows for optimizations to be easily coded as alternate reductions with lower cost. Typically there are many difference sequences of bottom-up reductions that could be applied t

RE: Falcon SDKSWCTests

2012-12-10 Thread Gordon Smith
> I've just commited some changes into rpc, authoringsupport, framework and > mobilecomponents so that they compile properly in falcon. I've enabled those > tests and now we have 11 out of 29 working. Nice progress! > Warning: mx.core.Version is defined by multiple files: This is an example wh

RE: [Falcon] Unit tests failing

2012-12-10 Thread Gordon Smith
And I'm not blocked by this. - Gordon -Original Message- From: Gordon Smith Sent: Monday, December 10, 2012 11:21 AM To: flex-dev@incubator.apache.org Subject: RE: [Falcon] Unit tests failing They're not yet run by 'ant tests'. I just run them in Eclipse. But I

RE: [Falcon] Unit tests failing

2012-12-10 Thread Gordon Smith
dobe.com] > Sent: Friday, December 07, 2012 9:01 PM > To: flex-dev@incubator.apache.org > Subject: Re: [Falcon] Unit tests failing > > > > > On 12/7/12 4:56 PM, "Gordon Smith" wrote: > >> It is unacceptable to have to configure every debug config

RE: [Falcon] Unit tests failing

2012-12-10 Thread Gordon Smith
12/7/12 4:56 PM, "Gordon Smith" wrote: > It is unacceptable to have to configure every debug config you create. > I create dozens per day when I work on Falcon. Agreed. After reading up on it, it appears that there is no way to set new defaults for every individual junit t

RE: New Falcon feature tests

2012-12-07 Thread Gordon Smith
> The tag isn't in good shape... even simple examples create a SWF that > throws a TypeError at runtime. I've fixed the bugs revealed by the tag tests and we now have 5 feature tests for it, all of which pass. - Gordon -Original Message----- From: Gordon Smith [mailto:g

New Falcon feature tests

2012-12-07 Thread Gordon Smith
Today I added feature tests for the and tags. (Each MXML feature test compiles a tiny MXML app that tests one particular feature, runs it in the standalone player, and checks that it ran correctly.) Most cases of work, but I discovered something I never knew: The tag doesn't just allow code

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
playing with the settings in one of these tabs: * Arguments * Environment HTH Thanks, Om On Fri, Dec 7, 2012 at 4:00 PM, Gordon Smith wrote: > > Can this really be possible that there is no place to configure > > Junit's > runtime environment from within Eclipse? > > I l

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
> > So I guess I can now ditch the compiler arg crap and just copy the sdk over. > > Mike > > Quoting Gordon Smith : > >> I'm fine with just having 'ant eclipse' do 'ant copy.sdk'. Alex >> shouldn't care because he doesn't

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
all this got changed and I didn't know about it. I spent way to >> much time on something I could have just run a build target on! :) >> >> Ow that hurts. I was seriously about ready to give up. >> >> So I guess I can now ditch the compiler arg crap and jus

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
So I've checked in that change. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Friday, December 07, 2012 4:08 PM To: flex-dev@incubator.apache.org Subject: RE: [Falcon] Unit tests failing I'm fine with just having 'ant eclipse' do

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
this is scarce at the best... 2012/12/8 Gordon Smith > > Can this really be possible that there is no place to configure > > Junit's > runtime environment from within Eclipse? > > I looked in the workspace preferences dialog under Run/Debug > > Launching bu

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
-- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, December 07, 2012 3:52 PM To: flex-dev@incubator.apache.org Subject: Re: [Falcon] Unit tests failing On 12/7/12 3:48 PM, "Gordon Smith" wrote: > And it should NOT require any voodoo to launch Eclipse, such as a > launch scr

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
ember 07, 2012 3:49 PM To: flex-dev@incubator.apache.org Subject: Re: [Falcon] Unit tests failing Sounds good to me. But where does the default debug configuration get established? Where in Eclipse do I go to set it up? Or what file can I change elsewhere? On 12/7/12 3:45 PM, "Gordon Smith&

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
And it should NOT require any voodoo to launch Eclipse, such as a launch script. I would be able to tolerate it requiring a one-time setup in the Eclipse workspace, but I can't find any place to configure environment variables there. - Gordon -Original Message- From: Gordon

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
ome sort? If you set a FLEX_HOME in the config's environment does that work? Once I understand how you use Eclipse I will try to get it to work. On 12/7/12 3:27 PM, "Gordon Smith" wrote: > After trying and failing to do any Falcon work today, I'll keep > complaining

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
; without having to customize a run-config or debug-config for it? If not, I will restore some ant targets to do the SDK copying. Alex may not want to use them, but I need to. - Gordon -Original Message- From: Gordon Smith Sent: Thursday, December 06, 2012 2:58 PM To: flex-dev@in

RE: Falcon tests

2012-12-07 Thread Gordon Smith
by running ant main from the compiler folder. I've been digging, and it seems a call to the 'dist-dev' target is missing from the main target in the falcon folder. Adding a call to the compiler.dist-dev target inside the sdk target in the main build file seems to do the trick

Falcon tests

2012-12-07 Thread Gordon Smith
When I run 'ant tests' for Falcon, the four JAR tests fail due to Java NoClassDefFoundError exceptions. Does anybody else have this problem? - Gordon jar.tests: [java] java.lang.NoClassDefFoundError: com/google/common/base/Function [java] Caused by: java.lang.ClassNotFoundException: c

[jira] [Issue Comment Deleted] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gordon Smith updated FLEX-33288: Comment: was deleted (was: What is the point of setting the value of a NumericStepper to NaN

[jira] [Issue Comment Deleted] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gordon Smith updated FLEX-33288: Comment: was deleted (was: This is correct behavior because NaN + step -> NaN according to

[jira] [Commented] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526641#comment-13526641 ] Gordon Smith commented on FLEX-33288: - What is the point of setting the value

[jira] [Commented] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526640#comment-13526640 ] Gordon Smith commented on FLEX-33288: - This is correct behavior because NaN +

RE: [Falcon] Unit tests failing

2012-12-06 Thread Gordon Smith
_HOME environment variable. On 12/6/12 1:56 PM, "Gordon Smith" wrote: > I should have said Falcon's 'mxmlc' and 'compc' shell scripts. > > - Gordon > > -Original Message- > From: Gordon Smith > Sent: Thursday, December 06, 2

RE: [Falcon] Unit tests failing

2012-12-06 Thread Gordon Smith
I should have said Falcon's 'mxmlc' and 'compc' shell scripts. - Gordon -Original Message- From: Gordon Smith Sent: Thursday, December 06, 2012 1:55 PM To: flex-dev@incubator.apache.org Subject: RE: [Falcon] Unit tests failing So, how does Falcon's 

RE: [Falcon] Unit tests failing

2012-12-06 Thread Gordon Smith
: [Falcon] Unit tests failing On 12/6/12 12:57 PM, "Gordon Smith" wrote: > But doesn't it make it impossible to use Falcon's shell scripts, which > expect to find other things in the SDK using relative paths from those > shell scripts??? You mean like the mxm

RE: [Falcon] Unit tests failing

2012-12-06 Thread Gordon Smith
s a goal of mine. On 12/5/12 4:41 PM, "Gordon Smith" wrote: >> The above folder doesn't exist anymore since we are not copying the >> full sdk to the compiler folder. > > What was the reason for changing this? > > - Gordon > > > -Original

RE: [Falcon] Unit tests failing

2012-12-05 Thread Gordon Smith
> The above folder doesn't exist anymore since we are not copying the full sdk > to the compiler folder. What was the reason for changing this? - Gordon -Original Message- From: Cyrill Zadra [mailto:cyrill.za...@gmail.com] Sent: Wednesday, December 05, 2012 4:37 PM To: flex-dev@incuba

RE: Welcome Chema Balsas as Apache Flex Committer!

2012-12-05 Thread Gordon Smith
Congratulations! - Gordon -Original Message- From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of Om Sent: Wednesday, December 05, 2012 3:08 PM To: flex-dev@incubator.apache.org Subject: Welcome Chema Balsas as Apache Flex Committer! Team, Please join me in welcoming Chema B

RE: ABC -> JS

2012-12-05 Thread Gordon Smith
we create a model interface that could be used for more than one implementation. I guess I will think about this some more. Mike Quoting Gordon Smith : > I didn't understand why JSEmitter uses lots of ABC classes. I got the > answer from Bernd P. > > Falcon's BURM handle

RE: ABC -> JS

2012-12-05 Thread Gordon Smith
ng to newcomers. I'd recommend making new structures to represent the higher-level JS constructs. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Tuesday, December 04, 2012 3:31 PM To: flex-dev@incubator.apache.org Subject: RE: ABC -> JS I&

RE: Falcon SDKSWCTests

2012-12-04 Thread Gordon Smith
If Apache doesn't care about that we should just drop it. It seems strange to have it in some SWCs and not others. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Tuesday, December 04, 2012 6:21 PM To: flex-dev@incubator.apache.org Subject: RE: F

RE: Falcon SDKSWCTests

2012-12-04 Thread Gordon Smith
t;. I've even compiled without including the file and everything seems to be working. Could we just remove those references completely or there may be some other side effects? Chema 2012/12/5 Gordon Smith > In that case, let's move -include-file option for version.properties > bac

RE: Falcon SDKSWCTests

2012-12-04 Thread Gordon Smith
I'm really happy to see all this movement > > around Falcon/FalconJS lately :) > > > > > > 2012/12/1 Gordon Smith > > > >> Oops! Thank you @Chema! > >> > >> Sent from my iPad > >> > >> On Nov 30, 2012, at 7:09 PM, "Cyr

RE: ABC -> JS

2012-12-04 Thread Gordon Smith
at this again, Alex put it well, it may be generating Strings but the WHOLE API of the class is abc.semantics. If you don't know abc semantics, there is nothing you can do other than learn it all. Mike Quoting Gordon Smith : > Interesting. I don't understand why it is doing

RE: ABC -> JS

2012-12-04 Thread Gordon Smith
: ABC -> JS Quoting Alex Harui : > > On 12/4/12 12:37 PM, "Gordon Smith" wrote: > >>> SO I will say to anybody, in the current state of the FalconJS >>> compiler, you NEED to know opcdes to be able to fix anything. >> >> I don't know much ab

RE: Hi all

2012-12-04 Thread Gordon Smith
or.apache.org Subject: Re: Hi all Can you give me the bug base link if any. On Wed, Dec 5, 2012 at 2:25 AM, vineet sood wrote: > Ok, makes sense > > > On Wed, Dec 5, 2012 at 2:19 AM, Gordon Smith wrote: > >> I work on Falcon, so I'll address that area. >>

RE: Hi all

2012-12-04 Thread Gordon Smith
them. On Tue, Dec 4, 2012 at 4:58 AM, Gordon Smith wrote: > Welcome! Do you want to write Flex components in ActionScript? Help > with finishing the Falcon compiler? Work on JS cross-compilation? > > - Gordon > > -Original Message- > From: vineet sood [mailto:vineet

RE: ABC -> JS

2012-12-04 Thread Gordon Smith
ember 04, 2012 2:24 AM To: flex-dev@incubator.apache.org Subject: Re: ABC -> JS Quoting Gordon Smith : > The possibility of transcoding ABC -> JS (rather than AS -> JS, MXML > -> JS, CSS -> JS, and .properties -> JS) has come up on another > thread. I should men

Falcon feature tests for and .

2012-12-03 Thread Gordon Smith
I've added some feature tests for the and tags in MXML. Two of the tests are marked @Ignore because they uncovered bugs which I will fix soon. - Gordon

RE: ABC -> JS

2012-12-03 Thread Gordon Smith
To: flex-dev@incubator.apache.org Subject: Re: ABC -> JS On Monday, December 3, 2012, Gordon Smith wrote: > The possibility of transcoding ABC -> JS (rather than AS -> JS, MXML > -> JS, CSS -> JS, and .properties -> JS) has come up on another > thread. I should mention

RE: Hi all

2012-12-03 Thread Gordon Smith
Welcome! Do you want to write Flex components in ActionScript? Help with finishing the Falcon compiler? Work on JS cross-compilation? - Gordon -Original Message- From: vineet sood [mailto:vineette...@gmail.com] Sent: Monday, December 03, 2012 3:16 PM To: flex-dev@incubator.apache.org Su

ABC -> JS

2012-12-03 Thread Gordon Smith
The possibility of transcoding ABC -> JS (rather than AS -> JS, MXML -> JS, CSS -> JS, and .properties -> JS) has come up on another thread. I should mention that this approach is the one that the architect of the Falcon compiler (Chris Brichford, who recently left Adobe) recommended for getting

RE: Falcon test failure

2012-12-03 Thread Gordon Smith
:05 PM, Cyrill Zadra wrote: > Yes the old compiler allows both examples... so I'll commit my change > for CSSFunctionCallPropertyValue and then this last failing test will > also will turn to "Ok" :). > > On Fri, Nov 30, 2012 at 5:37 PM, Gordon Smith wrote: >&g

Re: [FlaconJS] pseudo emitter algorithm

2012-12-02 Thread Gordon Smith
to the parent IE Bottom Up >> >> Mike >> >> >> Quoting Daniel Wasilewski : >> >>> huh? >>> >>> In computer science both conventions are adopted afik. Not reserved, >>> that someone can say, there is only 1 correct. >>> Polis

Re: [FlaconJS] pseudo emitter algorithm

2012-12-02 Thread Gordon Smith
That's right. Sent from my iPad On Dec 2, 2012, at 12:12 PM, "Michael Schmalle" wrote: > Does this mean like expression statements first, statements second, > blocks next etc? > > Mike > > Quoting Gordon Smith : > >> The bottom-upness of the B

Re: [FlaconJS] pseudo emitter algorithm

2012-12-02 Thread Gordon Smith
omeday I will figure out what is bottom up about it. > > Anyway, thanks, and bottoms up! > > -Alex > > > On 11/30/12 9:48 PM, "Gordon Smith" wrote: > >> The BURM is the Bottom-Up Rewrite Machine that the BURG or Bottom-Up Rewrite >> Generator ge

Re: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
ot; wrote: > BURM? What does that stand for anyway? It might as well have been Burmese. > It will take a while to understand :-) > > > On 11/30/12 5:36 PM, "Gordon Smith" wrote: > >>> I don't know SWF format and JBurg >> >> The SWF an

Re: Falcon SDKSWCTests

2012-11-30 Thread Gordon Smith
WC. > > That wasn't me .. I think that work was done by Chema Balsas (see [1]). > > [1] https://issues.apache.org/jira/browse/FLEX-33226 > > On Fri, Nov 30, 2012 at 1:09 PM, Gordon Smith wrote: >> @Cyril: Thanks for your help with introducing the compile-config.xml fil

RE: Falcon test failure

2012-11-30 Thread Gordon Smith
I.e., Button { fontFamily: 'Times Roman' } instead of Button { fontFamily: "Times Roman" } ? If the old compiler allowed this, Falcon should probably allow it. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Friday, No

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
30, 2012 4:11 PM To: flex-dev@incubator.apache.org Subject: RE: [FlaconJS] pseudo emitter algorithm Quoting Gordon Smith : > I didn't follow the whole discussion. Is the issue that you were > planning to work on MXML->JS but Alex and I think > MXML->datastructure is a better

RE: Falcon test failure

2012-11-30 Thread Gordon Smith
autious in commiting ;-) So single quotes should they also be removed if they exists at the beginning and end of a rawArgument? Cyrill Am 30.11.2012 um 13:03 schrieb Gordon Smith : > @Cyril: Thanks for adding some unit tests for CSS no

Falcon feature tests for , , etc.

2012-11-30 Thread Gordon Smith
yer specified by the environment variable FLASHPLAYER_DEBUGGER to the compiler.tests/temp folder so that JUnit tests running in Eclipse can find it. I updated the README to explain that you need to set FLASHPLAYER_DEBUGGER. - -Original Message- From: Gordon Smith [mailto:gosm...@adob

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
f I'm wrong in places. And, I will try to really understand Alex's prototype and see if I can get my brain wrapped around that to help with some simple test components. Mike Quoting Gordon Smith : > That sounds fine. We'll work in parallel: > > Me: MXML->ABC > You:

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
Subject: Re: [FlaconJS] pseudo emitter algorithm On 11/30/12 3:22 PM, "Gordon Smith" wrote: > MXML->JS doesn't exist and is not the way to go. > MXML->datastructure is a good idea. Alex will do it first for > MXML->interpretation > by JS and later for inte

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
t >> as >> -> js. Maybe I'm crazy and just want to create more work for myself. >> >> Maybe the way it stands ABC -> js is good enough for now? >> >> Mike >> >> >> Quoting Alex Harui : >> >>> >>> >>>

RE: Falcon SDKSWCTests

2012-11-30 Thread Gordon Smith
MXMLLiteralNodes with int values codegen integer values in the VM. --- -Original Message- From: Michael Schmalle [mailto:apa...@teotigraphix.com] Sent: Friday, November 30, 2012 1:36 PM To: flex-dev@incubator.apache.org Subject: RE: Falcon SDKSWCTests Ok we'll meet again next we

RE: Falcon SDKSWCTests

2012-11-30 Thread Gordon Smith
:) I could go head and start looking at the other SWCs to I am sure Cyril will give them a go as well. Mike Quoting Gordon Smith : > Whoops, the frameworkSWC() compilation test doesn't pass. There are > still four warnings: > > D:\Apache\incubator\flex\sdk\branches\develop

RE: Falcon SDKSWCTests

2012-11-30 Thread Gordon Smith
ier (and more correct) than the old compiler. Any volunteers to fix the source code so that this test passes? - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Friday, November 30, 2012 1:10 PM To: flex-dev@incubator.apache.org Subject: Falcon SDKSWCTests

Falcon SDKSWCTests

2012-11-30 Thread Gordon Smith
@Cyril: Thanks for your help with introducing the compile-config.xml files so that we can more easily make Falcon JUnit tests that compile each SDK SWC. Now that we have one such test - for compiling framework.swc - passing, would anybody like to work on investigating the status of other tests t

Falcon test failure

2012-11-30 Thread Gordon Smith
@Cyril: Thanks for adding some unit tests for CSS nodes. One test, CSSFunctionCallPropertyValue_static_getSingleArgumentFromRaw(), is failing for me. It's expecting "Test" but getting "'Test'". Does it pass for you? - Gordon

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
For FalconJS, I'm fine with Alex pioneering the MXML->datastructure approach, since there is no MXML->JS at all yet. - Gordon -Original Message- From: Gordon Smith Sent: Friday, November 30, 2012 11:01 AM To: flex-dev@incubator.apache.org Subject: RE: [FlaconJS] pse

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
mitter algorithm Quoting Gordon Smith : > Before I do much more work on Falcon's MXML, we need to decide whether > we're completing MXML->ABC or discarding that work. > > - Gordon What are the implications of this? How then do you suggest getting MXML to compile, or

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
I don't object to generating a data structure for V11, but I think that it makes more sense to do that as a second phase after ABC generation is working. Otherwise there are a lot of moving parts and progress will be slower. - Gordon -Original Message- From: Gordon Smith [mailto

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
Before I do much more work on Falcon's MXML, we need to decide whether we're completing MXML->ABC or discarding that work. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, November 30, 2012 10:46 AM To: flex-dev@incubator.apache.org Subject: Re: [Fla

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
class directives be overriden for other output type? Is this something that could be applied to the as -> js generation? Mike Quoting Gordon Smith : > MXML codegen uses a "class directive processor" but not a BURM. > > - Gordon > > > -Original Message- > Fro

RE: [FlaconJS] pseudo emitter algorithm

2012-11-30 Thread Gordon Smith
MXML codegen uses a "class directive processor" but not a BURM. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, November 30, 2012 10:08 AM To: flex-dev@incubator.apache.org Subject: Re: [FlaconJS] pseudo emitter algorithm On 11/30/12 9:45 AM, "Mi

RE: [FALCON] parser question - MXMLApplicationNode

2012-11-29 Thread Gordon Smith
n Mon, Nov 26, 2012 at 11:13 AM, Gordon Smith wrote: > I don't think MXMLApplicationNode is currently getting used in MXML > compilation. I think just creates an MXMLDocumentNode. > > - Gordon > > -Original Message- > From: Cyrill Zadra [mailto:cyrill.za...@gm

RE: [Falcon] build not finding playerglobal.swc

2012-11-28 Thread Gordon Smith
Sorry, I didn't make Falcon use an env.properties file. (I'm in the habit of running a setup script that sets my environment variables.) Making it do so would be a nice enhancement. - Gordon -Original Message- From: Carol Frampton [mailto:cfram...@adobe.com] Sent: Wednesday, November 2

RE: [FALCON] parser question - MXMLApplicationNode

2012-11-26 Thread Gordon Smith
I don't think MXMLApplicationNode is currently getting used in MXML compilation. I think just creates an MXMLDocumentNode. - Gordon -Original Message- From: Cyrill Zadra [mailto:cyrill.za...@gmail.com] Sent: Sunday, November 25, 2012 2:49 PM To: flex-dev@incubator.apache.org Subject: [

RE: Planning for Git

2012-11-26 Thread Gordon Smith
> several committers are "on loan" from Adobe for a very specific goal (Peter > and Gordon). > Are they comfortable working with Git, willing and able (in that they have > enough time available to do so) to learn Git, > or would moving to Git mean that they are no longer able to contribute? I do

RE: Falcon compiler(.tests) building

2012-11-20 Thread Gordon Smith
I think we can simply use forward slashes.. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Tuesday, November 20, 2012 1:02 PM To: flex-dev@incubator.apache.org Subject: Re: Falcon compiler(.tests) building Gordon uses a Windows machine and the tests have so

RE: Falcon compiler(.tests) building

2012-11-20 Thread Gordon Smith
I do all my work on Windows 7 and have never tried building Falcon or running its tests on a Mac. Is there anyone who has successfully done it yet on a Mac? - Gordon -Original Message- From: Erik de Bruin [mailto:e...@ixsoftware.nl] Sent: Tuesday, November 20, 2012 8:35 AM To: flex-dev@

RE: RichSelectableText-Component missing?

2012-11-20 Thread Gordon Smith
Correct. - Gordon -Original Message- From: Marcus Fritze [mailto:marcus.fri...@googlemail.com] Sent: Tuesday, November 20, 2012 5:11 AM To: flex-dev@incubator.apache.org; Marcus Fritze Subject: Re: RichSelectableText-Component missing? As far as I know, RichText is not selectable. Marc

RE: Who's a flex compiler-configuration pro on this list?

2012-11-20 Thread Gordon Smith
Although I'm knowledgeable about the new Falcon compiler, I'm not particularly knowledgable about the OEM API for the old compiler. (Falcon discontinued this API.) But my first googling brought up this link: http://livedocs.adobe.com/flex/3/compilerAPI_flex3.pdf Are you aware of this document?

Re: [VOTE] Graduate Apache Flex

2012-11-18 Thread Gordon Smith
below be and > hereby are appointed to serve as the initial members of the > Apache Flex Project: > > * Alex Harui > * Carol Frampton > * Christophe Herreman > * Chuck Mastrandrea >

Re: What to expect from FalconJS

2012-11-18 Thread Gordon Smith
We're not using LLVM in Adobe's AS4 compiler. The new compiler works just like Falcon's AS3 except it has a somewhat different lexer/parser due to the syntactic changes, a somewhat different semantic analyzer due to the semantic changes, and a quite different code generator due to the new byte c

RE: Public API for new AVM in Flashplayer 12 (was: Re: Anybody on this list that signed the NDA for the new Flashplayer 12?)

2012-11-18 Thread Gordon Smith
> I was asking them to make the Adobe Flashplayer team aware of this missing > API that could be worth for us having a look into. Would you agree on this? Thibault Imbert from Adobe has already revealed the most important change between V11 and V12... there is no DisplayObject. - Gordon -

RE: What to expect from FalconJS

2012-11-18 Thread Gordon Smith
> I don't think LLVM is involved in Falcon or FalconJS. That's correct. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Saturday, November 17, 2012 9:47 PM To: flex-dev@incubator.apache.org Subject: Re: What to expect from FalconJS On 11/17/12 9:17 PM,

RE: Flex 5 in haxe

2012-11-18 Thread Gordon Smith
My guess is that once V12 makes its debut, V11 feature addition will drop off dramatically. - Gordon -Original Message- From: sébastien Paturel [mailto:sebpatu.f...@gmail.com] Sent: Saturday, November 17, 2012 8:58 AM To: flex-dev@incubator.apache.org Subject: Re: Flex 5 in haxe ok sor

  1   2   3   4   >