* Return Parsers folder with standard parsers and move SyntaxTreeConverters back to Core * Rename PascalLanguage project to PascalABCLanguageInfo * Fix pascal dll loading
21 lines
848 B
C#
21 lines
848 B
C#
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
|
||
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||
|
||
namespace PascalABCCompiler.TreeRealization
|
||
{
|
||
public class compiler_directive
|
||
{
|
||
public string name;
|
||
public string directive;
|
||
public location location;
|
||
public string source_file; // Файл из которого загрузили директиву. В отличии от location - может указывать на .pcu
|
||
|
||
public compiler_directive(string name, string directive, location loc, string source_file)
|
||
{
|
||
this.name = name;
|
||
this.directive = directive;
|
||
this.location = loc;
|
||
this.source_file = source_file;
|
||
}
|
||
}
|
||
} |