Playtesting - Fixed bugs and some rebalancing with foreign servers

This commit is contained in:
Daniel Xie
2017-04-20 03:29:07 -05:00
parent fd70bf259b
commit c1c37f008e
10 changed files with 41 additions and 33 deletions
-3
View File
@@ -156,7 +156,6 @@ function Parser(input) {
checkKeywordAndSkip("for");
splitExpressions = delimited("(", ")", ";", parse_expression);
console.log("Parsing code in for loop");
code = parse_expression();
if (splitExpressions.length != 3) {
@@ -180,7 +179,6 @@ function Parser(input) {
* code: prog node
*/
function parse_while() {
console.log("Parsing while token");
checkKeywordAndSkip("while");
var cond = parse_expression();
@@ -238,7 +236,6 @@ function Parser(input) {
}
function parse_prog() {
console.log("Parsing prog token");
var prog = delimited("{", "}", ";", parse_expression);
if (prog.length == 0) return FALSE;
if (prog.length == 1) return prog[0];