We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee11af commit aeb0dafCopy full SHA for aeb0daf
1 file changed
lcidlc/src/Scanner.cpp
@@ -299,6 +299,12 @@ static bool ScannerConsume(ScannerRef self)
299
{
300
t_type = kTokenTypeNumber;
301
302
+ // MW-2013-06-17: [[ ExternalsApiV5 ]] Since number-prefix is not a subset of
303
+ // number-suffix (due to '-'), make sure we advance past the prefix before
304
+ // continuing the scan.
305
+ self -> input_frontier += 1;
306
+ self -> input_column += 1;
307
+
308
while(!ScannerIsEndPrefix(self) &&
309
ScannerIsIntegerSuffix(self))
310
0 commit comments