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
파일: Import.cs 프로젝트: wayneduke/dotless
 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
파일: Import.cs 프로젝트: helephant/dotless
 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)
 { }