Searched refs:LiteralPos (Results 1 – 6 of 6) sorted by relevance
/build/blueprint/parser/ |
D | parser_test.go | 71 LiteralPos: mkpos(18, 3, 10), 100 LiteralPos: mkpos(20, 3, 12), 134 LiteralPos: mkpos(20, 3, 12), 138 LiteralPos: mkpos(28, 3, 20), 142 LiteralPos: mkpos(36, 3, 28), 146 LiteralPos: mkpos(49, 4, 5), 150 LiteralPos: mkpos(57, 4, 13), 192 LiteralPos: mkpos(33, 4, 13), 201 LiteralPos: mkpos(49, 5, 11), 235 LiteralPos: mkpos(60, 5, 12), [all …]
|
D | ast.go | 329 LiteralPos scanner.Position member 333 func (x *String) Pos() scanner.Position { return x.LiteralPos } 334 func (x *String) End() scanner.Position { return x.LiteralPos } 346 return fmt.Sprintf("%q@%s", x.Value, x.LiteralPos) 354 LiteralPos scanner.Position member 358 func (x *Bool) Pos() scanner.Position { return x.LiteralPos } 359 func (x *Bool) End() scanner.Position { return x.LiteralPos } 371 return fmt.Sprintf("%t@%s", x.Value, x.LiteralPos)
|
D | modify.go | 32 LiteralPos: list.RBracePos,
|
D | printer.go | 117 p.printToken(s, v.LiteralPos) 119 p.printToken(strconv.Quote(v.Value), v.LiteralPos)
|
D | sort.go | 124 values[i].(*String).LiteralPos = curPos
|
D | parser.go | 463 LiteralPos: p.scanner.Position, 496 LiteralPos: p.scanner.Position,
|