blob: 3aac7ec87358e57ae1afa04be3f082edcc0b85df [file] [log] [blame]
Ian Cottrellc9613052014-10-20 13:40:08 +01001// 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
15package parse
16
17import "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.
21type 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.
29type Separator []Fragment
30
31type fragment struct {
32 token Token
33}
34
35func (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
44func (n *fragment) Token() Token {
45 return n.token
46}
47
48func (n *fragment) SetToken(token Token) {
49 n.token = token
50}
51
52func (n *fragment) WriteTo(w io.Writer) error {
53 _, err := io.WriteString(w, n.Token().String())
54 return err
55}
Pavel Labath82b208c2014-11-11 16:06:58 +000056
57func NewFragment(token Token) Fragment {
58 return &fragment{token}
59}