| Issue 35: | hScript - More Problems | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I just discovered the Testbed from hscript and tested it with cpp, there are a couple of Errors. I added a few traces on the testbed to get a better overview what's going wrong.
This is the new Testfile:
package;
import hscript.Expr;
class Main {
static function test(x, v:Dynamic, ?vars : Dynamic) {
trace("Test [" + x + "] start");
var p = new hscript.Parser();
var program:Expr;
try {
program = p.parseString(x);
} catch (e:Dynamic) {
trace("Parser Error: " + e);
return;
}
var bytes = hscript.Bytes.encode(program);
program = hscript.Bytes.decode(bytes);
var interp = new hscript.Interp();
if( vars != null )
for( v in Reflect.fields(vars) )
interp.variables.set(v, Reflect.field(vars, v));
var ret:Dynamic;
try {
ret = interp.execute(program);
} catch (e:Dynamic) {
trace("Interpreter Error: " + e);
return;
}
if ( v != ret ) {
trace("ERROR: " + ret + " returned while " + v + " expected on [" + x + "]");
return;
}
trace("done");
}
static function main() {
test("0",0);
test("0xFF", 255);
test("-123",-123);
test("- 123",-123);
test("1.546",1.546);
test(".545",.545);
test("'bla'","bla");
test("null",null);
test("true",true);
test("false",false);
test("1 == 2",false);
test("1.3 == 1.3",true);
test("5 > 3",true);
test("0 < 0",false);
test("-1 <= -1",true);
test("1 + 2",3);
test("~545",-546);
test("'abc' + 55","abc55");
test("'abc' + 'de'","abcde");
test("-1 + 2",1);
test("1 / 5",0.2);
test("3 * 2 + 5",11);
test("3 * (2 + 5)",21);
test("3 * 2 // + 5 \n + 6",12);
test("3 /* 2\n */ + 5",8);
test("[55,66,77][1]",66);
test("var a = [55]; a[0] *= 2; a[0]",110);
test("x",55,{ x : 55 });
test("var y = 33; y",33);
test("{ 1; 2; 3; }",3);
test("{ var x = 0; } x",55,{ x : 55 });
test("o.val",55,{ o : { val : 55 } });
test("o.val",null,{ o : {} });
test("var a = 1; a++",1);
test("var a = 1; a++; a",2);
test("var a = 1; ++a",2);
test("var a = 1; a *= 3",3);
test("a = b = 3; a + b",6);
test("add(1,2)",3,{ add : function(x,y) return x + y });
test("a.push(5); a.pop() + a.pop()",8,{ a : [3] });
test("if( true ) 1 else 2",1);
test("if( false ) 1 else 2",2);
test("var t = 0; for( x in [1,2,3] ) t += x; t",6);
test("var a = new Array(); for( x in 0...5 ) a[x] = x; a.join('-')","0-1-2-3-4");
test("(function(a,b) return a + b)(4,5)",9);
test("var y = 0; var add = function(a) y += a; add(5); add(3); y", 8);
test("var a = [1,[2,[3,[4,null]]]]; var t = 0; while( a != null ) { t += a[0]; a = a[1]; }; t",10);
test("var t = 0; for( x in 1...10 ) t += x; t",45);
test("var t = 0; for( x in new IntIter(1,10) ) t +=x; t",45,{ IntIter : IntIter });
test("var x = 1; try { var x = 66; throw 789; } catch( e : Dynamic ) e + x",790);
test("var x = 1; var f = function(x) throw x; try f(55) catch( e : Dynamic ) e + x",56);
test("var i=2; if( true ) --i; i",1);
test("var i=0; if( i++ > 0 ) i=3; i",1);
test("var a = 5/2; a",2.5);
test("{ x = 3; x; }", 3);
test("{ x : 3, y : {} }.x",3);
trace("Done");
}
}
Jul 26, 2010
Project Member
#1
gameh...@gmail.com
Status:
Fixed
Jul 26, 2010
thx, that's awesome :) |