public Import Import(Quoted path, Value features, ImportOptions option, NodeLocation location)
 {
   return new Import(path, features, option) { Location = location };
 }
示例#2
0
 public Import(Quoted path, IImporter importer)
     : this(path.Value, importer)
 {
     OriginalPath = path;
 }
示例#3
0
 public Import(Quoted path, Importer importer)
     : this(path.Value, importer)
 {
     OriginalPath = path;
 }
示例#4
0
文件: Import.cs 项目: ayoung/dotless
 public Import(Quoted path, Importer importer)
     : this(path.Contents, importer)
 {
     OriginalPath = path;
 }
示例#5
0
 public Import(Quoted path, Value features, ImportOptions option)
     : this((Node)path, features, option)
 {
     OriginalPath = path;
 }
示例#6
0
 public Import(Quoted path, IImporter importer, Value features, bool isOnce)
     : this(path.Value, importer, features, isOnce)
 {
     OriginalPath = path;
 }
示例#7
0
 public Import(Quoted path, Value features, ImportOptions option)
     : this((Node)path, features, option)
 {
     OriginalPath = path;
 }
示例#8
0
 public Import(Quoted path, IImporter importer, Value features)
     : this(path.Value, importer, features)
 {
     OriginalPath = path;
 }
示例#9
0
 public Import(Quoted path, IImporter importer, Value features)
     : this(path.Value, importer, features)
 {
     OriginalPath = path;
 }
示例#10
0
 public Import(Quoted path, IImporter importer, Value features, bool isOnce)
     : this(path.Value, importer, features, isOnce)
 {
     OriginalPath = path;
 }
示例#11
0
 public Import(string currentPath, Quoted path, IImporter importer, Value features, bool isOnce)
     : this(currentPath, path.Value, importer, features, isOnce)
 {
     OriginalPath = path;
 }
 public CartoQuotedNode(Quoted quoted) : base(quoted.Value, quoted.Quote, quoted.Escaped)
 { }