public Import Import(Quoted path, Value features, ImportOptions option, NodeLocation location)
 {
   return new Import(path, features, option) { Location = location };
 }
Esempio n. 2
0
 public Import(Quoted path, IImporter importer)
     : this(path.Value, importer)
 {
     OriginalPath = path;
 }
Esempio n. 3
0
 public Import(Quoted path, Importer importer)
     : this(path.Value, importer)
 {
     OriginalPath = path;
 }
Esempio n. 4
0
 public Import(Quoted path, Importer importer)
     : this(path.Contents, importer)
 {
     OriginalPath = path;
 }
Esempio n. 5
0
 public Import(Quoted path, Value features, ImportOptions option)
     : this((Node)path, features, option)
 {
     OriginalPath = path;
 }
Esempio n. 6
0
 public Import(Quoted path, IImporter importer, Value features, bool isOnce)
     : this(path.Value, importer, features, isOnce)
 {
     OriginalPath = path;
 }
Esempio n. 7
0
 public Import(Quoted path, Value features, ImportOptions option)
     : this((Node)path, features, option)
 {
     OriginalPath = path;
 }
Esempio n. 8
0
 public Import(Quoted path, IImporter importer, Value features)
     : this(path.Value, importer, features)
 {
     OriginalPath = path;
 }
Esempio n. 9
0
 public Import(Quoted path, IImporter importer, Value features)
     : this(path.Value, importer, features)
 {
     OriginalPath = path;
 }
Esempio n. 10
0
 public Import(Quoted path, IImporter importer, Value features, bool isOnce)
     : this(path.Value, importer, features, isOnce)
 {
     OriginalPath = path;
 }
Esempio n. 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)
 { }