public LiteralAttributeChunkGenerator(LocationTagged <string> prefix, LocationTagged <string> value)
 {
     Prefix = prefix;
     Value  = value;
 }
 protected void WriteLocationTaggedString(LocationTagged <string> item)
 {
     Write(item.ToString("F", null));
 }
 public DynamicAttributeBlockChunkGenerator(LocationTagged <string> prefix, int offset, int line, int col)
     : this(prefix, new SourceLocation(offset, line, col))
 {
 }
 public DynamicAttributeBlockChunkGenerator(LocationTagged <string> prefix, SourceLocation valueStart)
 {
     Prefix     = prefix;
     ValueStart = valueStart;
 }
Ejemplo n.º 5
0
 public AttributeBlockChunkGenerator(string name, LocationTagged <string> prefix, LocationTagged <string> suffix)
 {
     Name   = name;
     Prefix = prefix;
     Suffix = suffix;
 }