Ian Cottrell | c961305 | 2014-10-20 13:40:08 +0100 | [diff] [blame] | 1 | // Copyright (C) 2014 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package parse |
| 16 | |
| 17 | import "io" |
| 18 | |
| 19 | // Fragment is a component of a cst that is backed by a token. |
| 20 | // This includes Nodes and all forms of space and comment. |
| 21 | type Fragment interface { |
| 22 | // Token returns the underlying token of this node. |
| 23 | Token() Token |
| 24 | // Write is used to write the underlying token out to the writer. |
| 25 | WriteTo(io.Writer) error |
| 26 | } |
| 27 | |
| 28 | // Separator is a list type to manage fragments that were skipped. |
| 29 | type Separator []Fragment |
| 30 | |
| 31 | type fragment struct { |
| 32 | token Token |
| 33 | } |
| 34 | |
| 35 | func (s Separator) WriteTo(w io.Writer) error { |
| 36 | for _, n := range s { |
| 37 | if err := n.WriteTo(w); err != nil { |
| 38 | return err |
| 39 | } |
| 40 | } |
| 41 | return nil |
| 42 | } |
| 43 | |
| 44 | func (n *fragment) Token() Token { |
| 45 | return n.token |
| 46 | } |
| 47 | |
| 48 | func (n *fragment) SetToken(token Token) { |
| 49 | n.token = token |
| 50 | } |
| 51 | |
| 52 | func (n *fragment) WriteTo(w io.Writer) error { |
| 53 | _, err := io.WriteString(w, n.Token().String()) |
| 54 | return err |
| 55 | } |
Pavel Labath | 82b208c | 2014-11-11 16:06:58 +0000 | [diff] [blame] | 56 | |
| 57 | func NewFragment(token Token) Fragment { |
| 58 | return &fragment{token} |
| 59 | } |