First strides towards parsing Output expressions
This commit is contained in:
@@ -22,7 +22,7 @@ class ParserTest extends utest.Test {
|
||||
var parser = new Parser();
|
||||
ast = parser.parseFile('examples/parsing/output.hank');
|
||||
assertNextExpr(EOutput(new Output([Text("This file contains test cases for output expression parsing.")])));
|
||||
assertNextExpr(EOutput(new Output([Text("A line won't be interrupted or anything.")])));
|
||||
assertNextExpr(EOutput(new Output([Text("A line won't be interrupted or anything.")])));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -3,6 +3,6 @@ import utest.Test;
|
||||
|
||||
class TestMain extends Test {
|
||||
public static function main() {
|
||||
utest.UTest.run([new HInterfaceTest(), new HankBufferTest()/*, new ParserTest()*/]);
|
||||
utest.UTest.run([new HInterfaceTest(), new HankBufferTest(), new ParserTest()]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user