Add two missing blank lines
This commit is contained in:
parent
5ce5f7a612
commit
5a2ca2abc7
|
@ -50,6 +50,7 @@ describe("compiler pass |generateBytecode|", function() {
|
||||||
|
|
||||||
describe("for named", function() {
|
describe("for named", function() {
|
||||||
var grammar = 'start "start" = "a"';
|
var grammar = 'start "start" = "a"';
|
||||||
|
|
||||||
it("generates correct bytecode", function() {
|
it("generates correct bytecode", function() {
|
||||||
expect(pass).toChangeAST(grammar, bytecodeDetails([
|
expect(pass).toChangeAST(grammar, bytecodeDetails([
|
||||||
24, // SILENT_FAILS_ON
|
24, // SILENT_FAILS_ON
|
||||||
|
@ -132,6 +133,7 @@ describe("compiler pass |generateBytecode|", function() {
|
||||||
|
|
||||||
describe("with multiple labels", function() {
|
describe("with multiple labels", function() {
|
||||||
var grammar = 'start = a:"a" b:"b" c:"c" { code }';
|
var grammar = 'start = a:"a" b:"b" c:"c" { code }';
|
||||||
|
|
||||||
it("generates correct bytecode", function() {
|
it("generates correct bytecode", function() {
|
||||||
expect(pass).toChangeAST(grammar, bytecodeDetails([
|
expect(pass).toChangeAST(grammar, bytecodeDetails([
|
||||||
1, // PUSH_CURR_POS
|
1, // PUSH_CURR_POS
|
||||||
|
|
Loading…
Reference in a new issue