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