Ejemplo n.º 1
0
 public ParsedIncludeFile(string name, Token token, Dictionary <string, string> scopedPreProcVariables, string fullFilePath, ParsedIncludeFile parent)
     : base(name, token)
 {
     ScopedPreProcVariables = scopedPreProcVariables;
     FullFilePath           = fullFilePath;
     Parent = parent;
 }
Ejemplo n.º 2
0
 public ParsedIncludeFile(string name, Token token, Dictionary <string, string> parametersPreProcVariables, string includeFilePath, ParsedIncludeFile parent)
     : base(name, token)
 {
     ParametersPreProcVariables = parametersPreProcVariables;
     IncludeFilePath            = includeFilePath;
     Parent = parent;
 }