Issue 5: hscript parsing problem for function calls
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