Searched defs:Comment (Results 1 – 10 of 10) sorted by relevance
51 type Comment struct { struct52 CommentPos Pos53 Comment string member56 func (x *Comment) Dump() string {60 func (x *Comment) Pos() Pos { return x.CommentPos }61 func (x *Comment) End() Pos { return Pos(int(x.CommentPos) + len(x.Comment)) }
53 Comment string // The comment that will appear above the definition. member74 Comment string // The comment that will appear above the definition. member82 Comment string // The comment that will appear above the definition. member101 Comment string member137 Comment string member255 Comment string member
48 func (n *ninjaWriter) Comment(comment string) error { func
740 type Comment struct { struct741 Comment []string member742 Slash scanner.Position745 func (c Comment) Pos() scanner.Position {749 func (c Comment) End() scanner.Position {759 func (c Comment) String() string {774 func (c Comment) Text() string {
24 Comment string member
27 Comment string member
90 Comment string member
209 def Comment(self, comment): member in MockScriptWriter
246 def Comment(self, comment): member in EdifyGenerator
283 def Comment(prefix, suffix=""): function