(t *scanner.Token)
| 127 | } |
| 128 | |
| 129 | func (l *Parser) GetFreeFloatingToken(t *scanner.Token) []freefloating.String { |
| 130 | if l.Lexer.GetWithFreeFloating() == false { |
| 131 | return []freefloating.String{} |
| 132 | } |
| 133 | |
| 134 | return t.GetFreeFloatingToken() |
| 135 | } |
| 136 | |
| 137 | func (l *Parser) addDollarToken(v node.Node) { |
| 138 | if l.Lexer.GetWithFreeFloating() == false { |
no test coverage detected