예제 #1
0
        private static void ReturnPointer(Token[] functionArguments)
        {
            if (functionArguments.Length > 0)
            {
                throw new ILSException("Return does not take arguments");
            }

            LinePointer.ReturnMostRecent();
        }
예제 #2
0
 public void Return(Token[] args)
 {
     LinePointer.ReturnMostRecent();
 }