using System;
using System.IO;
namespace tlang
{
public abstract class Node
public abstract TObject Execute(IScopeEnvironment nodeEnv);
}