parse, output the let statement

This commit is contained in:
Fábio Santos
2015-09-06 21:33:17 +01:00
committed by Richard van Velzen
parent 34685a6f55
commit dde9e293df
4 changed files with 33 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
let_statement: {
input: {
let x = 6;
}
expect_exact: "let x=6;"
}