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