Skip to content

Instantly share code, notes, and snippets.

@jruby
Created May 28, 2009 04:21
Show Gist options
  • Save jruby/119087 to your computer and use it in GitHub Desktop.
Save jruby/119087 to your computer and use it in GitHub Desktop.
public class WhileNode extends Node {
private final Node conditionNode;
private final Node bodyNode;
private final boolean evaluateAtStart;
public boolean containsNonlocalFlow = false;
public WhileNode(ISourcePosition position, Node conditionNode, Node bodyNode) {
this(position, conditionNode, bodyNode, true);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment