pascalabcnet/TreeConverter/TreeRealization/CompilerDirective.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

19 lines
443 B
C#

using System;
using PascalABCCompiler.Collections;
namespace PascalABCCompiler.TreeRealization
{
public class compiler_directive
{
public string name;
public string directive;
public location location;
public compiler_directive(string name,string directive,location loc)
{
this.name = name;
this.directive = directive;
this.location = loc;
}
}
}