summaryrefslogtreecommitdiff
path: root/vendor/github.com/Nvveen/Gotty/types.go
blob: 9bcc65e9b889d33c93b73574777b5344c9d29cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2012 Neal van Veen. All rights reserved.
// Usage of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package gotty

type TermInfo struct {
	boolAttributes map[string]bool
	numAttributes  map[string]int16
	strAttributes  map[string]string
	// The various names of the TermInfo file.
	Names []string
}

type stacker interface {
}
type stack []stacker

type parser struct {
	st         stack
	parameters []stacker
	dynamicVar map[byte]stacker
}