My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 5: hscript parsing problem for function calls
1 person starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  ----
Closed:  Jul 2010


 
Reported by aboutwh...@googlemail.com, Jan 19, 2010
What steps will reproduce the problem?
package;
class Main {
	
	public static function main ():Void 
	{
		var script = 'trace("5")';
		var p = new hscript.Parser();
		var expr = p.parseString(script);
		trace(expr);
	}
}

What is the expected output? What do you see instead?

Valid Expression, while neko version traces
ECall(EIdent(trace),[EConst(CString(5))])
the cpp version traces
Error : EUnexpected


What version of the product are you using? On what operating system?
hxcpp 2.05.1,  hscript latest svn

Please provide any additional information below.
There is always an Error if there is a function call in the script.

Jul 21, 2010
Project Member #1 gameh...@gmail.com
This should be fixed with hxcpp/haxe svn changes.
Status: Fixed

Powered by Google Project Hosting