| Issue 5: | hscript parsing problem for function calls | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Fixed
|