mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 13:37:00 -04:00
minor script parser things
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1243 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -79,6 +79,7 @@ class TokenIterator {
|
|||||||
void putBack();
|
void putBack();
|
||||||
|
|
||||||
/// Get a section of source code
|
/// Get a section of source code
|
||||||
|
/** Known problems: does not work correctly when crossing an include-file border */
|
||||||
String getSourceCode(size_t start, size_t end);
|
String getSourceCode(size_t start, size_t end);
|
||||||
/// Get the current line number
|
/// Get the current line number
|
||||||
int getLineNumber();
|
int getLineNumber();
|
||||||
@@ -661,7 +662,7 @@ void parseOper(TokenIterator& input, Script& script, Precedence minPrec, Instruc
|
|||||||
Token t = input.peek();
|
Token t = input.peek();
|
||||||
if (t == _("else")) {// or else
|
if (t == _("else")) {// or else
|
||||||
input.read(); // skip else
|
input.read(); // skip else
|
||||||
parseOper(input, script, PREC_CMP, I_BINARY, I_OR_ELSE);
|
parseOper(input, script, PREC_ADD, I_BINARY, I_OR_ELSE);
|
||||||
} else {
|
} else {
|
||||||
parseOper(input, script, PREC_CMP, I_BINARY, I_OR);
|
parseOper(input, script, PREC_CMP, I_BINARY, I_OR);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user