Skip to content

Commit

Permalink
Fixed some member access rights.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 4, 2001
1 parent 302265d commit f01f808
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions last/toby/interpreter/BinaryExpressionLogicContext.java
Expand Up @@ -34,7 +34,7 @@ public BinaryExpressionLogicContext(int sourceLine)

protected Intrinsic simplify() throws ParseException
{
return(null);
return(null); // !!! FIXME!
/*
Intrinsic retVal = null;
Expand Down Expand Up @@ -87,9 +87,9 @@ private LogicContext simplifyAChild(LogicContext lc) throws ParseException
return(retVal);
} // simplifyAChild

public void freeResourcesImpl() {}
protected void freeResourcesImpl() {}

public void linkImpl(GlobalLogicContext glob) throws ParseException
protected void linkImpl(GlobalLogicContext glob) throws ParseException
{
if (children.length != 2)
ParseException._throw(TobyLanguage.INTERNAL_ERROR);
Expand All @@ -101,7 +101,7 @@ public void linkImpl(GlobalLogicContext glob) throws ParseException
} // link


public final Intrinsic executeImpl() throws FlowException
protected final Intrinsic executeImpl() throws FlowException
{
Intrinsic operand1 = ((LogicContext) children[0]).execute();
Intrinsic operand2 = ((LogicContext) children[1]).execute();
Expand Down

0 comments on commit f01f808

Please sign in to comment.