Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i get all the libs needed,but the parser only make a ast with out class code block #5

Open
onewaymyway opened this issue Aug 27, 2015 · 3 comments

Comments

@onewaymyway
Copy link

it's ok now,eventhough i don't know why,this project is amazing!thank you for your great work!!!

@onewaymyway
Copy link
Author

i find another bug.
it can't work with the for expression like this
var i:int;
var len:int;
len=2;
for(i=0 ; i<len ; i++ )
{
trace("forTrace:"+1);
}

but work with this
var i:int;
var len:int;
len=2;
for(i=0 ;( i<len) ; i++ )
{
trace("forTrace:"+1);
}

will you fix this?or wil you tell me where shall i hack so i can fix this

@onewaymyway
Copy link
Author

it works well with this too. i was confused
var i:int;
var len:int;
len=2;
for(i=0 ; i<=len ; i++ )
{
trace("forTrace:"+1);
}

@teotigraphix
Copy link
Owner

Yeah I don't really offer support on this, I kept the frameworks up more for old portfolio stuff. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants