Updated mapping for EmptyStackException

This commit is contained in:
Sam Harwell 2013-02-16 16:40:20 -06:00
parent 9f329cb290
commit 9c3ec592b6
2 changed files with 2 additions and 1 deletions

View File

@ -268,7 +268,7 @@ outer_break: ;
{
if (_modeStack.IsEmpty())
{
throw new EmptyStackException();
throw new InvalidOperationException();
}
Mode(_modeStack.Pop());
return _mode;

View File

@ -186,6 +186,7 @@
-typeMapping org.antlr.v4.runtime.misc.ParseCancellationException ParseCanceledException
-typeMapping java.util.concurrent.CancellationException System.OperationCanceledException
-typeMapping java.lang.IndexOutOfBoundsException ArgumentOutOfRangeException
-typeMapping java.util.EmptyStackException InvalidOperationException
-typeMapping org.antlr.v4.runtime.misc.Tuple System.Tuple
-typeMapping org.antlr.v4.runtime.misc.Tuple2<,> System.Tuple