Ejemplo n.º 1
0
 private static void ParseDirectlyBlock(ParseState state, QuipCompiler Compiler)
 {
     var token = "";
     ParseToken(out token, state); //Skip the word 'follows'.
     var TokenList = new List<String>();
     ParseList(TokenList, state);
     Compiler.BeginDirectlyBlock(TokenList);
     DevourWhitespace(state);
     if (state.Next() != '{') throw new InvalidOperationException("Expected {");
     state.Advance(1);
     ParseLines(state, Compiler);
 }