summaryrefslogtreecommitdiff
path: root/BCT/BytecodeTranslator
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2012-01-24 13:32:38 -0800
committerGravatar qadeer <qadeer@microsoft.com>2012-01-24 13:32:38 -0800
commit9696f365462dc430a8b1cd35825e6326c8f14d12 (patch)
tree6c4d4397dfa56dbbac81bc90a3a80339aece8388 /BCT/BytecodeTranslator
parenta571ceef4b51ee58c8982fa8d395214f580b36a3 (diff)
added another method that just throws an exception
Diffstat (limited to 'BCT/BytecodeTranslator')
-rw-r--r--BCT/BytecodeTranslator/StatementTraverser.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/BCT/BytecodeTranslator/StatementTraverser.cs b/BCT/BytecodeTranslator/StatementTraverser.cs
index c36608b6..aed72ccd 100644
--- a/BCT/BytecodeTranslator/StatementTraverser.cs
+++ b/BCT/BytecodeTranslator/StatementTraverser.cs
@@ -453,6 +453,9 @@ namespace BytecodeTranslator
throw new TranslationException("For statements are not handled");
}
+ public override void TraverseChildren(IDoUntilStatement doUntilStatement) {
+ throw new TranslationException("DoUntil statements are not handled");
+ }
#endregion
public void GenerateDispatchContinuation(ITryCatchFinallyStatement tryCatchFinallyStatement) {