示例#1
0
文件: ParsedItem.cs 项目: niandy/3P
 public ParsedIncludeFile(string name, Token token, Dictionary <string, string> scopedPreProcVariables, string fullFilePath, ParsedIncludeFile parent)
     : base(name, token)
 {
     ScopedPreProcVariables = scopedPreProcVariables;
     FullFilePath           = fullFilePath;
     Parent = parent;
 }
示例#2
0
文件: ParsedItem.cs 项目: zhitian/3P
 public ParsedIncludeFile(string name, Token token, Dictionary <string, string> parametersPreProcVariables, string includeFilePath, ParsedIncludeFile parent)
     : base(name, token)
 {
     ParametersPreProcVariables = parametersPreProcVariables;
     IncludeFilePath            = includeFilePath;
     Parent = parent;
 }