RE: [FALCON] don't warn on assignment in while (condition) body

2015-01-01 Thread Gordon Smith
is is far from being certain as of now. Which brings > > me to a completely unrelated question: if I wanted to convince someone > > to try Falcon, what would be the good argument to do so? > > > > Best, > > > > Oleg > > > > I would also like there to be a more e

RE: [FALCON] internal error related to identifier resolution (?)

2015-01-01 Thread Gordon Smith
I'll try to find time to look at this later in the month. - Gordon > Date: Thu, 1 Jan 2015 16:07:04 -0500 > Subject: Re: [FALCON] internal error related to identifier resolution (?) > From: darrell.love...@gmail.com > To: dev@flex.apache.org > > >>No problem. It was not obvious, and I don’t t

RE: [FALCON] don't warn on assignment in while (condition) body

2014-12-31 Thread Gordon Smith
> Could this be improved to have a better interface? Darrell, don't -error-problems, -warning-problems, and -ignore-problems allow the problems to be specified either by fully-qualified class name or by numeric problem code? And isn't the numeric problem code displayed along with the problem

RE: BlazeDS not compiling for clean copy of SDK source

2014-12-16 Thread Gordon Smith
adobe.com > To: dev@flex.apache.org > Subject: Re: BlazeDS not compiling for clean copy of SDK source > Date: Sun, 14 Dec 2014 07:14:30 + > > > > On 12/13/14, 1:45 PM, "Gordon Smith" wrote: > > >> I get the following error on a clean copy of the

What versions are used on the build machine?

2014-12-13 Thread Gordon Smith
Do we document anywhere the versions of Java, Ant, Maven, Flash Player, AIR, etc. that the build/test machines are currently using? I'd like to use the same versions. - Gordon

RE: BlazeDS not compiling for clean copy of SDK source

2014-12-13 Thread Gordon Smith
> I get the following error on a clean copy of the SDK, when I do an > 'ant release' ... But as soon as I did an 'ant' on 'flex-blazeds' and > then tried again, the problem went away ... > [javac] > /Users/erik/Documents/ApacheFlex/git/flexblazeds/modules/common/src/flex/messaging/config/ApacheXPa

RE: Determining which MXML elements are containers

2014-12-13 Thread Gordon Smith
I have a few points to belatedly make on this thread: 1. The 'specifications' folder of the 'flex-external' repository has a spec for MXML 2006 and 2009. It's incomplete, but it's the best one that exists. If you find that it doesn't answer your questions about which elements are allowed insid

Re: [FALCON] MXML Parsing Issue

2014-10-09 Thread Gordon Smith
I don't see anything but whitespace between these. - Gordon > On Oct 6, 2014, at 11:29 AM, "Alex Harui" wrote: > > >

Re: AW: Another little problem with Falcon and Flexmojos

2014-10-05 Thread Gordon Smith
I'm not aware of this feature getting completed. There are some classes and interfaces for accessing ASDoc comments on APIs but I don't think they work. I think all comments are getting dropped by the lexer, so that no comments, or even their start/end positions, are present in the AST. Ideally

Re: AW: [Falcon] Constructor NS (was: [Falcon] starting up)

2014-10-05 Thread Gordon Smith
nstructor via Reflection, make this > accesslible at runtime and instantiate it, no matter what the source-code > says. Same with the type of generics. > > So I guess it would be a great addition to Flex to at least have features > checked by the compiler, even if the runtime doesn't

Re: [Falcon] Constructor NS (was: [Falcon] starting up)

2014-10-04 Thread Gordon Smith
In general the ActionScript Virtual Machine enforces access modifiers (so that, for example, something marked private is truly inaccessible by any means outside the class) but I don't think the AVM enforces non-public constructors. I'm guessing that a constructor in the ABC is public regardless

Re: Is there a strict link between framework and compiler?

2014-10-03 Thread Gordon Smith
Both the old compiler and Falcon autogenerate plenty of code (for data binding, child creation, etc.) involving specific classes and interfaces from the SDK. I don't known whether these classes and interfaces have actually changed across versions of the SDK, but it's possible that they have. So

Re: Probjem with incompatable Guava versions in Falcon

2014-10-03 Thread Gordon Smith
I don't know Maven. It seems like it should have a way to build its targets using a classpath that is different from the classpath for running Maven itself. - Gordon > On Oct 3, 2014, at 8:01 AM, "Frédéric THOMAS" wrote: > > Not only this method is used in Falcon but also the CacheLoader to cr

Re: [Falcon] starting up

2014-10-01 Thread Gordon Smith
That comment is out of date. Code Model was the part of pre-Falcon Flash Builder that built an abstract syntax tree to support intelligent editing. We used it as the beginning of Falcon's lexer and parser. The code is just looking at the AST to see if the constructor has a non-public namespace.

Away Aug 3 - Sep 4

2014-08-01 Thread Gordon Smith
I won't be able to respond to any Falcon questions on the Apache Flex lists during this time. - Gordon

Re: AW: AW: AW: AW: AW: AW: Falcon and Antlr4

2014-07-25 Thread Gordon Smith
willing to update JBurg > to update JBurg to Antlr4 and Stringtemplate (The external stringtemplate, > not the Antlr internal version). After that I agreed to make JBurg build with > Maven ... so I guess we are having some progress on this :-) > > Chris > > -Ursprüngliche Na

RE: AW: AW: AW: AW: AW: Falcon and Antlr4

2014-07-24 Thread Gordon Smith
tlr and uses Antlr to parse and generate output. The > output however no longer has a reference to Antlr. Do we even need a > dependency to JBurg itself to execute the code generated by JBurg? If not I > would whip up a jburg-maven-plugin which wraps JBurgs execution. Then I think > we s

RE: AW: AW: AW: AW: Falcon and Antlr4

2014-07-23 Thread Gordon Smith
: AW: AW: Falcon and Antlr4 > Date: Wed, 23 Jul 2014 18:00:40 + > > What are some of these optimizations? How often do they occur in the wild and > how much performance hit is there? > Sent via the PANTECH Discover, an AT&T 4G LTE smartphone. > > Gordon Smith wro

Re: AW: AW: AW: AW: Falcon and Antlr4

2014-07-23 Thread Gordon Smith
> This is a parser which takes a sequence of ASToken objects as output and > creates an AST consisting of NodeBase objects. Sorry for the typo... I meant "input" rather than "output". - Gordon Sent from my iPad > On Jul 23, 2014, at 9:06 AM, "Gordon S

RE: AW: AW: AW: AW: Falcon and Antlr4

2014-07-23 Thread Gordon Smith
Regarding the proposed directory structure... I'm not familiar with Maven conventions. What is the purpose of the 'main' subdirectory in src/main/java? - Gordon > From: gsmit...@hotmail.com > To: dev@flex.apache.org > Subject: RE: AW: AW: AW: AW: Falcon and Antlr4 > Date: Wed, 23 Jul 2014 09:0

RE: AW: AW: AW: AW: Falcon and Antlr4

2014-07-23 Thread Gordon Smith
CSSTree.g isn't involved in compiling AS files. It's involved only in compiling CSS files. For AS compilation: We use JFlex to create RawASTokenizer.java from RawASTokenizer.lex. This is a lexer which takes an AS file as input and creates a sequence of ASToken objects as output. We use Antlr 3

Re: AW: Falcon and Antlr4

2014-07-17 Thread Gordon Smith
PS: Will be offline for a few days ... > > -Ursprüngliche Nachricht- > Von: Gordon Smith [mailto:gsmit...@hotmail.com] > Gesendet: Mittwoch, 16. Juli 2014 17:19 > An: dev@flex.apache.org > Betreff: Re: Falcon and Antlr4 > > You might also want to look into eliminating JFl

Re: Falcon and Antlr4

2014-07-16 Thread Gordon Smith
You might also want to look into eliminating JFlex and have Antlr handle tokenization as well. - Gordon Sent from my iPad > On Jul 16, 2014, at 8:06 AM, "Alex Harui" wrote: > > Good luck. I'm interested in anything that would speed up Falcon. > Please work in a branch. > >> On 7/16/14 2:44

Re: New Flex to JS project

2014-07-04 Thread Gordon Smith
I think this syntax is just sugar for more verbose function calls like trace(foo.children("is")) but the terse syntax is much nicer. - Gordon Sent from my iPad > On Jul 4, 2014, at 12:22 AM, "Alex Harui" wrote: > > There are functions, but I've seen significant use of XML as an "Object". > I

RE: [Off-Topic] Help With Bouncing Mail

2014-06-02 Thread Gordon Smith
I've gotten maybe 8-10 such emails over the last 2-3 months for various Apache Flex lists. I've been ignoring them because I don't know what else to do. - Gordon > Date: Mon, 2 Jun 2014 19:13:12 -0400 > From: jef...@dot-com-it.com > To: dev@flex.apache.org > Subject: Re: [Off-Topic] Help With

RE: How do I update my Apache Flex profile?

2014-05-22 Thread Gordon Smith
Nevermind, I found the instructions: https://cwiki.apache.org/confluence/display/FLEX/Updating+your+profile+on+Team+page. - Gordon > From: gsmit...@hotmail.com > To: dev@flex.apache.org > Subject: How do I update my Apache Flex profile? > Date: Thu, 22 May 2014 20:08:04 -0700 > > Now that I'v

How do I update my Apache Flex profile?

2014-05-22 Thread Gordon Smith
Now that I've retired from Adobe I want to update my profile on http://flex.apache.org/about-people.html but I've totally forgotten how to do that. Can somebody please remind me? - Gordon

Problem cloning flex-examples repository

2014-05-16 Thread Gordon Smith
Does anybody else see the following problem when you try to clone the flex-examples repo? $git clone https://git-wip-us.apache.org/repos/asf/flex-examples.git Cloning into 'flex-examples'... remote: Counting objects: 123, done. remote: Compressing objects: 100% (112/112), done. remote: Total

RE: Add CONTRIBUTING file to projects

2014-03-18 Thread Gordon Smith
I also have a problem with the statement that "Apache Flex is an application framework...". You could say "The Apache Flex SDK is an application framework...". But Apache Flex is more than an SDK. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe

RE: Add CONTRIBUTING file to projects

2014-03-18 Thread Gordon Smith
The "Getting the code" section only mentions the SDK and TLF repos. We have several others. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Tuesday, March 18, 2014 5:28 AM To: dev@flex.apache.org Subject: Re: Add CONTRIBUTING file to projects Hi

RE: Draft email to committers

2014-03-18 Thread Gordon Smith
I think most committers who haven't totally disengaged probably subscribe to dev@flex.apache.org and have seen this discussion, so it seems like the points you wanted to make have already been communicated. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.co

RE: ActionScript 4? What the hell?

2014-01-22 Thread Gordon Smith
. But none of them have to be dropped. You could cherry-pick the additions (as long as they are implementable on the existing runtime) rather than the removals. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Wednesday, January 22, 2014 11:20 AM To: dev

RE: ActionScript 4? What the hell?

2014-01-22 Thread Gordon Smith
Script 4? What the hell? On 1/22/14 10:55 AM, "Gordon Smith" wrote: >Adobe designed AS4 to be the language for a new Flash runtime ("V12") >that it was working on but dropped. (I was working on the AS4 compiler >then.) Not all features of AS4 can be implemented -- at

RE: ActionScript 4? What the hell?

2014-01-22 Thread Gordon Smith
defined as machine-like 32-bit integers that wrap around from 2147483647 to -2147483648 rather than converting to Number when they get large. You need new (faster and simpler!) opcodes for that. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Wednesday, J

RE: ActionScript 4? What the hell?

2014-01-22 Thread Gordon Smith
Adobe designed AS4 to be the language for a new Flash runtime ("V12") that it was working on but dropped. (I was working on the AS4 compiler then.) Not all features of AS4 can be implemented -- at least not easily and efficiently -- on the existing Flash runtime. However, some features can be.

RE: Java 1.6

2014-01-21 Thread Gordon Smith
s in Java 6 that can't be upgraded right now. I suppose that many people are in the same situation. So I think compatibility with Java 6 is a must. 2014/1/21 Gordon Smith > We should definitely fix the problems that make us incompatible with > Java 7, and then make that our

RE: Java 1.6

2014-01-21 Thread Gordon Smith
We should definitely fix the problems that make us incompatible with Java 7, and then make that our recommended version (and switch out build systems). But staying compatible with Java 6, if that's possible, would also be a good thing. - Gordon -Original Message- From: aYo [mailto:a...

RE: MXML spec (was: RE: Donation News)

2013-12-02 Thread Gordon Smith
On Mon, Dec 2, 2013 at 6:15 PM, Gordon Smith wrote: > The MXML spec is a Microsoft Word document. Can we put such documents > in an Apache repo? If not, do we want the spec to live in the repo in > some other format? Or in our wiki? Or on a non-wiki web page? > > - Gordon &g

MXML spec (was: RE: Donation News)

2013-12-02 Thread Gordon Smith
Behalf Of OmPrakash Muppirala Sent: Monday, December 02, 2013 11:39 AM To: dev@flex.apache.org Subject: Re: Donation News On Mon, Dec 2, 2013 at 10:51 AM, Gordon Smith wrote: > The spec I wrote is for MXML 2006 and MXML 2009 (with various sections > remaining incomplete) and it also co

FXG spec (was: RE: Donation News)

2013-12-02 Thread Gordon Smith
nt: Monday, December 02, 2013 11:39 AM To: dev@flex.apache.org Subject: Re: Donation News On Mon, Dec 2, 2013 at 10:51 AM, Gordon Smith wrote: > The spec I wrote is for MXML 2006 and MXML 2009 (with various sections > remaining incomplete) and it also contains proposals for a new dialect

RE: Donation News

2013-12-02 Thread Gordon Smith
The spec I wrote is for MXML 2006 and MXML 2009 (with various sections remaining incomplete) and it also contains proposals for a new dialect to fix various inconsistencies. It doesn't cover MXMLG/FXG, but I think Adobe had a spec for that and maybe Alex could arrange for it to be donated as wel

RE: [FALCONJX] [FLEXJS] AS to JS compilation issues

2013-11-20 Thread Gordon Smith
Falcon got updated to require Java 1.7? Why was that? - Gordon -Original Message- From: Erik de Bruin [mailto:e...@ixsoftware.nl] Sent: Wednesday, November 20, 2013 8:51 AM To: dev@flex.apache.org Subject: Re: [FALCONJX] [FLEXJS] AS to JS compilation issues Yes, the latest thing: since

RE: [VOTE] Apache Flex guidelines RC3

2013-11-11 Thread Gordon Smith
+1 (binding) Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Monday, November 11, 2013 3:24 AM To: dev@flex.apache.org Subject: [VOTE] Apache Flex guidelines RC3 Hi, To vote in the guideline on voting as contained in this document (version 34) and

RE: Project voting guidelines

2013-11-06 Thread Gordon Smith
If it's going to take a Lazy 2/3 Majority to change the rules, then I think it should take a Lazy 2/3 Majority to approve them in the first place. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Tuesday, November 05, 2013 7:29 PM To: dev@flex.apac

RE: Project voting guidelines

2013-11-06 Thread Gordon Smith
I don't understand this part: --- Code changes A change made to a codebase of the project and committed by a committer. This includes source code, documentation, website content, etc Lazy Consensus approval of committers. --- Are you talking about when there is a controversy over a code change

RE: ActionScript coding conventions

2013-11-05 Thread Gordon Smith
BTW, the section separators under "Class metadata" also got shortened. - Gordon -Original Message----- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Tuesday, November 05, 2013 5:20 PM To: dev@flex.apache.org Subject: RE: ActionScript coding conventions Hmm... somewhere alon

RE: ActionScript coding conventions

2013-11-05 Thread Gordon Smith
Hmm... somewhere along the line extra blank lines are getting inserted by somebody's email system. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Tuesday, November 05, 2013 5:11 PM To: dev@flex.apache.org Subject: RE: ActionScript coding convention

RE: ActionScript coding conventions

2013-11-05 Thread Gordon Smith
g> Objet : Re: ActionScript coding conventions On 11/5/13 1:05 PM, "Gordon Smith" mailto:gosm...@adobe.com>> wrote: >> it might be smart to link to the adobe wiki and give some sort of >>attribution. > >If we simply link to >http://sourceforge

RE: ActionScript coding conventions

2013-11-05 Thread Gordon Smith
t;http://sourceforge.net/adobe/flexsdk/wiki/Coding%20Conventions/ > >EdB > > > >On Tue, Nov 5, 2013 at 7:16 PM, Gordon Smith wrote: >> Didn't we used to have a coding conventions document for committers >>to follow? I can't find it anywhere on

ActionScript coding conventions

2013-11-05 Thread Gordon Smith
Didn't we used to have a coding conventions document for committers to follow? I can't find it anywhere on the site. - Gordon

RE: [FALCON/JX] guava dependencies in compiler AND closure

2013-11-05 Thread Gordon Smith
#x27;example' projects - where 'cleanly' means no weird exceptions from the compiler code itself ;-) EdB On Tue, Nov 5, 2013 at 6:10 AM, Alex Harui wrote: > Thanks Gordon! > > On 11/4/13 4:59 PM, "Gordon Smith" wrote: > >>OK, the 'develop' br

RE: [FALCON/JX] guava dependencies in compiler AND closure

2013-11-04 Thread Gordon Smith
03, 2013 9:00 PM To: dev@flex.apache.org Subject: Re: [FALCON/JX] guava dependencies in compiler AND closure Thank you, Gordon. Yes, I think it's best to go to the latest version and keep updating. EdB On Monday, November 4, 2013, Gordon Smith wrote: > I can take a look at upgrading

Re: [FALCON/JX] guava dependencies in compiler AND closure

2013-11-03 Thread Gordon Smith
I can take a look at upgrading the version of Guava that Falcon uses. Do you want it to use the latest version, 15.0? - Gordon Sent from my iPad On Nov 1, 2013, at 3:24 PM, "Erik de Bruin" wrote: > I've been away from Falcon(Jx) for a long time, coding wise. I had to > basically set up my dev

RE: [FALCON] Large App Compiles and Starts

2013-10-09 Thread Gordon Smith
Congratulatlons on reaching a huge milestone! - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Tuesday, October 08, 2013 11:07 PM To: dev@flex.apache.org Subject: [FALCON] Large App Compiles and Starts I checked in a bunch of fixes to Falcon to get a large 20

RE: [FALCON] using coerce_a

2013-10-02 Thread Gordon Smith
d calls coerce if it doesn't match. So your example won't have a coerce_a in the ABC. -Alex On 10/2/13 11:19 AM, "Gordon Smith" wrote: >Does that work for ternary expressions and left-hand-sides with other >types, such as > >var i:int = true ? 1 : 2; > >

Re: [FALCON] using coerce_a

2013-10-02 Thread Gordon Smith
that Vector access doesn't come through this code? I think >>>I'll start by testing only for ANY_TYPE and adding a coerce_a instead of >>>calling coerce() which would also coerce to any destination type. >>> >>>Thanks for the advice, >>>-Alex >

RE: [FALCON] using coerce_a

2013-09-30 Thread Gordon Smith
s Stack ..., value => ..., value Description Indicates to the verifier that the value on the stack is of the any type (*). Does nothing to value. On Mon, Sep 30, 2013 at 6:03 PM, Gordon Smith wrote: > Can you remind me what the "a" in coerce_a means? > > - Gordon > &g

RE: [FALCON] using coerce_a

2013-09-30 Thread Gordon Smith
Can you remind me what the "a" in coerce_a means? - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Monday, September 30, 2013 2:43 PM To: dev@flex.apache.org Subject: [FALCON] using coerce_a Gordon, Darrell (mostly) My latest problem appears to be in assigni

RE: Falcon progress

2013-09-30 Thread Gordon Smith
#x27;sparkSWC' as I agree all committed tests should either pass or be ignored. What failures are you seeing on the 5 other tests that fail on your end? EdB On Tue, Sep 24, 2013 at 11:37 PM, Gordon Smith wrote: > Congratulations on getting more SWCs to compile with Falcon! It looks li

RE: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-27 Thread Gordon Smith
Did you make any progress on this? - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Thursday, September 26, 2013 2:28 PM To: dev@flex.apache.org Subject: Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding OK, I understand now that in the SWC case

Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-26 Thread Gordon Smith
ons that matched the name and it didn't return >anything other than the backing variable which was also puzzling. > >Thanks, >-Alex > >On 9/26/13 2:09 PM, "Gordon Smith" wrote: > >>I didn't work on Falcon's data bindingŠ Bruce Frazer implemented

Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-26 Thread Gordon Smith
namespace. > >Any thoughts on that? > >Thanks, >-Alex > >On 9/26/13 12:13 PM, "Gordon Smith" wrote: > >>I was able to browse the Apache repo. getMName() is on DefinitionBase, >>but >>not on IDefinition. So try >>((DefinitionBase)propertyNode

Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-26 Thread Gordon Smith
I was able to browse the Apache repo. getMName() is on DefinitionBase, but not on IDefinition. So try ((DefinitionBase)propertyNode.getDefinition()).getMName() and see whether it returns the right kind of Name when the property is private or protected. - Gordon On 9/26/13 12:05 PM, "Gordon

Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-26 Thread Gordon Smith
ame? > >Thanks, >-Alex > >On 9/26/13 11:28 AM, "Gordon Smith" wrote: > >>I don't think using a Binding should be necessary. I think the bug is the >>getName() of MXMLPropertySpecifierNode isn't returning the right kind of >>Name when

Re: [FALCON] Convert MXMLPropertySpecifierNode to Binding

2013-09-26 Thread Gordon Smith
I don't think using a Binding should be necessary. I think the bug is the getName() of MXMLPropertySpecifierNode isn't returning the right kind of Name when the property is protected or private. - Gordon On 9/26/13 11:13 AM, "Alex Harui" wrote: >Darrell, Gordon (mostly), > >I'm having trouble

RE: User bug fix requests for next version of Apache Flex

2013-09-25 Thread Gordon Smith
https://issues.apache.org/jira/browse/FLEX-33779 sounds like an FTE (Flash Text Engine) bug in Flash Player. It may not be a bug that Apache Flex can fix. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Wednesday, September 25, 2013 2:59 PM To: de

RE: [FALCON] MXML protected vars as attributes

2013-09-25 Thread Gordon Smith
---Actual.mxml--- protected var foo:int; is supposed to be equivalent to public class Actual extends Group { public function Actual() { super(); foo = 1; } protected var foo:int; } and ActionScript allows a constructor to access a

RE: Falcon progress

2013-09-24 Thread Gordon Smith
I see now that the workaround I mentioned was marked with FIXME in the source code, so that makes it trackable. - Gordon From: Gordon Smith Sent: Tuesday, September 24, 2013 2:38 PM To: dev@flex.apache.org Subject: Falcon progress Congratulations on getting more SWCs to compile with Falcon! It

Falcon progress

2013-09-24 Thread Gordon Smith
Congratulations on getting more SWCs to compile with Falcon! It looks like only the following 6 tests in SDKSWCTests still have problems: authoringsupportSWC() automation_flashflexkitSWC() chartsSWC() mxSWC() sparkSWC() textLayoutSWC() Is there a reason why the @Ignore was removed from these fai

RE: [DRAFT] Apache Flex September 2013 Report

2013-09-24 Thread Gordon Smith
Are you saying that the instructions on how to set up a build environment for Flex are incomplete or inaccurate? If so, we need to fix them. - Gordon -Original Message- From: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Tuesday, September 10, 2013 2:46 AM To: dev@flex.apa

RE: [Falcon] BasicTests compiles and runs

2013-09-04 Thread Gordon Smith
't get Falcon-based code hinting. FB uses Falcon for code hinting today. Not planning to change that. On 9/4/13 1:20 PM, "Gordon Smith" wrote: >> The current FB can't use Falcon > >By making a new flex-compiler-oem.jar based on Falcon, you could make >FB use Falc

RE: [Falcon] BasicTests compiles and runs

2013-09-04 Thread Gordon Smith
was to have the code hinting and the compilation share data structures that are resident in memory. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Wednesday, September 04, 2013 10:14 AM To: dev@flex.apache.org; Erik de Bruin Subject: RE: [Falcon]

RE: [Falcon] BasicTests compiles and runs

2013-09-04 Thread Gordon Smith
d part sets the configuration and then compiles. We can probably keep the first part mostly in place. We modify the second part to get the configuration options as a command line string and use that to kick off the falcon build. -Darrell On 9/3/13 7:02 PM, "Gordon Smith" wrote: >

RE: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Gordon Smith
gt;>o >>>>r >>>>.java:895) >>>> at >>>>java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecuto >>>>r.j >>>>a >>>>v >>>>a:918) >>>> at java.lang.Thread.run(Thread.java:680) >>&

RE: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Gordon Smith
find down to a simple test case and post the code that doesn't work with the bug. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Tuesday, September 03, 2013 4:02 PM To: dev@flex.apache.org; Erik de Bruin Subject: Re: [Falcon] BasicTests compiles and

RE: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Gordon Smith
Being able to compile the MXML for BasicTests is a great milestone, so congratulations to Alex and Darrell for getting this working. But I don't think it means that Falcon is ready to compile arbitrary MXML applications. - Gordon -Original Message- From: Gordon Smith [mailto

RE: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Gordon Smith
9/3/13 3:52 PM, "Gordon Smith" wrote: >The simplest thing is just to have dual launch scripts: fmxmlc (Falcon) >vs. mxmlc (old compiler), fcompc vs. compc, etc. > >- Gordon > >-Original Message- >From: Alex Harui [mailto:aha...@adobe.com] >Sent: Tuesd

RE: File modes

2013-06-21 Thread Gordon Smith
Cleaning it up isn't a priority, and I can do it eventually. I'm more interested in determining why it's happening so it doesn't happen indefinitely. - Gordon -Original Message- From: Gordon Smith Sent: Friday, June 21, 2013 11:10 AM To: dev@flex.apache.org Sub

RE: File modes

2013-06-21 Thread Gordon Smith
: Re: File modes I've been fixing up baselines from three different computers, two on Windows and a Mac. I'm not quite sure what computers these came from. What do we want the file mode to be? On 6/21/13 10:33 AM, "Gordon Smith" wrote: >Alex, you're the only person

RE: File modes

2013-06-21 Thread Gordon Smith
013 8:57 PM To: dev@flex.apache.org Subject: Re: File modes That's accidental. I wonder why that's happening and how to prevent it. On 6/20/13 8:48 PM, "Gordon Smith" wrote: >I pulled the sdk 'develop' branch for the first time in several weeks >and got

File modes

2013-06-20 Thread Gordon Smith
I pulled the sdk 'develop' branch for the first time in several weeks and got lots of lines like mode change 100644 => 100755 mustella/tests/components/Charts/Bubble/Properties/Baselines/BubbleSeries_filterData_filterDataValues.png mode change 100644 => 100755 mustella/tests/components/Charts/B

Vacation time again

2013-05-08 Thread Gordon Smith
I won't be committing, or responding on this list, for the next four weeks because I'll be on vacation until June 5. When I come back I plan to work on reducing the errors and warnings that Falcon produces when compiling various SDK SWCs. At the moment 20 of the tests in SDKSWCTests are passing

RE: [2/7] git commit: [flex-sdk] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop

2013-05-07 Thread Gordon Smith
> I agree. We seem to be getting tripped up with this kind of merge commits. I don't agree. Merge commits are a normal feature of Git and should not cause any confusion. They can simply be ignored. There's even an option for ignoring them: git log --no-merges. - Gordon -Original Message--

RE: [2/7] git commit: [flex-sdk] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop

2013-05-07 Thread Gordon Smith
However, I see some merge commits that Justin has done. So maybe they're not forbidden? - Gordon -Original Message- From: Gordon Smith Sent: Tuesday, May 07, 2013 5:59 PM To: dev@flex.apache.org Subject: RE: [2/7] git commit: [flex-sdk] [refs/heads/develop] - Merge branch 'd

RE: [2/7] git commit: [flex-sdk] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop

2013-05-07 Thread Gordon Smith
I think we're back to arguing about how to use Git "properly". If merge commits are forbidden in flex-sdk, then I'll try to avoid causing them in the future. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Tuesday, May 07, 2013 5:33 PM To: dev@fle

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
is a third [get] line that says " moved to " Try changing the URL to https://java.net/downloads/javacc/javacc-5.0.tar.gz I'm wondering if your cygwin or ant setup prevents redirects. On 4/30/13 2:33 PM, "Gordon Smith" wrote: >> And then an error? > >

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
Try fixing the URL so there is no redirect. On 4/30/13 2:25 PM, "Gordon Smith" wrote: > [get] Getting: http://java.net/downloads/javacc/javacc-5.0.tar.gz > > - Gordon > > -Original Message- > From: Alex Harui [mailto:aha...@adobe.com] > Sent: Tuesday, A

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
, what is it reporting now in your console? On 4/30/13 2:06 PM, "Gordon Smith" wrote: > Windows with Command Prompt or Windows with Cygwin? > > - Gordon > > -Original Message- > From: Alex Harui [mailto:aha...@adobe.com] > Sent: Tuesday, April 30, 2013 1:

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
correctly. On 4/30/13 12:54 PM, "Alex Harui" wrote: > No, I'm on mac. > > > On 4/30/13 12:49 PM, "Gordon Smith" wrote: > >> I had the same problem after pulling your change. Do you use Cygwin? >> >> - Gordon >> >> >

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
updated the build script to use the latest URL and it seemed to work for me. I think ant doesn't follow redirects all of the time. Hopefully the new URL is a more permanent home and not temporary. On 4/30/13 11:46 AM, "Gordon Smith" wrote: > I've been doing 'ant c

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
ch attempt to build? I've had bad downloads create a bad fail that doesn't have delete permissions. What is the console output around that download now? Is it the same as before? On 4/30/13 10:55 AM, "Gordon Smith" wrote: > That doesn't seem to be the problem. I can

RE: flex-sdk build failure

2013-04-30 Thread Gordon Smith
PM To: dev@flex.apache.org Subject: Re: flex-sdk build failure I think every once in a while, that download fails for a while. Maybe that server goes off-line or something. On 4/29/13 9:17 PM, "Gordon Smith" wrote: > I get the following build failure doing 'an

flex-sdk build failure

2013-04-29 Thread Gordon Smith
I get the following build failure doing 'ant clean main' in Cygwin: ... commons-jars: javacc-jar-check: javacc-jar: download-zip: get-zip: [get] Getting: http://java.net/projects/javacc/downloads/download/javacc-5.0.tar.gz [get] To: D:\asf\flex-sdk\in\javacc-5.0.tar.gz check-sum

RE: [FalconJX][FlexJS] committing?

2013-04-24 Thread Gordon Smith
I think 'git branch -r' may list the remote branches even if you don't have corresponding local branches. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Wednesday, April 24, 2013 12:53 PM To: dev@flex.apache.org Subject: Re: [FalconJX][FlexJS] committing?

RE: What's the easiest way to tell if a character is a letter or not?

2013-04-22 Thread Gordon Smith
An good utility would be a getUnicodeCategory() API. - Gordon -Original Message- From: Gordon Smith Sent: Monday, April 22, 2013 10:24 AM To: dev@flex.apache.org; 'paul.hasti...@gmail.com' Subject: RE: What's the easiest way to tell if a character is a letter or not? T

RE: What's the easiest way to tell if a character is a letter or not?

2013-04-22 Thread Gordon Smith
There is no easy way to tell. You need a large lookup table containing all the characters in the LC, Ll, Lm, Lo, Lt, and Lu categories http://www.fileformat.info/info/unicode/category/index.htm - Gordon -Original Message- From: Paul Hastings [mailto:paul.hasti...@gmail.com] Sent: Monda

RE: Release target seems to be fixed

2013-04-17 Thread Gordon Smith
Alex, did this work on your system? It apparently doesn't on Justin's. I haven't tried it yet. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Wednesday, April 17, 2013 4:36 PM To: dev@flex.apache.org Subject: Re: Release target seems to be fixed

RE: Release target seems to be fixed

2013-04-17 Thread Gordon Smith
What do you mean by a "common" named directory? Can't it look for a sibling directory named flex-tlf? - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Wednesday, April 17, 2013 3:43 PM To: dev@flex.apache.org Subject: Re: Release target seems to be

RE: Release target seems to be fixed

2013-04-17 Thread Gordon Smith
DidAlex's change require TLF_HOME to be set? I thought we agreed it shouldn't be necessary. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Wednesday, April 17, 2013 3:22 PM To: dev@flex.apache.org Subject: Re: Release target seems to be fixed Hi

RE: Git and build.properties

2013-04-16 Thread Gordon Smith
The default location for TLF should be a flex-tlf directory that is a sibling of the flex-sdk directory. You should not have to set TLF_HOME unless you rename your local repositories to have different names than they have remotely, or don't put them side-by-side in the same local directory. - G

  1   2   3   >