comparison src/luan/impl/LuanParser.java @ 1645:0af6a9d6d12f

minor - keywords
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Mar 2022 22:41:07 -0700
parents 2975c932864d
children eb89db694225
comparison
equal deleted inserted replaced
1644:5c676385284b 1645:0af6a9d6d12f
1542 "end_while", 1542 "end_while",
1543 "false", 1543 "false",
1544 "finally", 1544 "finally",
1545 "for", 1545 "for",
1546 "function", 1546 "function",
1547 "goto", 1547 // "goto",
1548 "if", 1548 "if",
1549 "in", 1549 "in",
1550 "local", 1550 "local",
1551 "nil", 1551 "nil",
1552 "not", 1552 "not",
1553 "or", 1553 "or",
1554 "repeat", 1554 "repeat",
1555 "return", 1555 "return",
1556 "then", 1556 "then",
1557 "true", 1557 "true",
1558 "try",
1558 "until", 1559 "until",
1559 "while" 1560 "while"
1560 )); 1561 ));
1561 1562
1562 private Expr Literal() throws ParseException { 1563 private Expr Literal() throws ParseException {