Remove unused autogenerated code

This commit is contained in:
Stanisław Barzowski 2017-09-11 10:33:01 -04:00 committed by Dave Cunningham
parent a94b877d4b
commit 999ff267f1
4 changed files with 0 additions and 63 deletions

View File

@ -377,7 +377,6 @@ type LiteralNumber struct {
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// +gen stringer
type LiteralStringKind int type LiteralStringKind int
const ( const (
@ -398,7 +397,6 @@ type LiteralString struct {
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// +gen stringer
type ObjectFieldKind int type ObjectFieldKind int
const ( const (
@ -409,7 +407,6 @@ const (
ObjectLocal // local id = expr2 ObjectLocal // local id = expr2
) )
// +gen stringer
type ObjectFieldHide int type ObjectFieldHide int
const ( const (

View File

@ -1,20 +0,0 @@
// Generated by: main
// TypeWriter: stringer
// Directive: +gen on astLiteralStringKind
package ast
import (
"fmt"
)
const _astLiteralStringKind_name = "astStringSingleastStringDoubleastStringBlock"
var _astLiteralStringKind_index = [...]uint8{0, 15, 30, 44}
func (i LiteralStringKind) String() string {
if i < 0 || i+1 >= LiteralStringKind(len(_astLiteralStringKind_index)) {
return fmt.Sprintf("astLiteralStringKind(%d)", i)
}
return _astLiteralStringKind_name[_astLiteralStringKind_index[i]:_astLiteralStringKind_index[i+1]]
}

View File

@ -1,20 +0,0 @@
// Generated by: main
// TypeWriter: stringer
// Directive: +gen on astObjectFieldHide
package ast
import (
"fmt"
)
const _astObjectFieldHide_name = "astObjectFieldHiddenastObjectFieldInheritastObjectFieldVisible"
var _astObjectFieldHide_index = [...]uint8{0, 20, 41, 62}
func (i ObjectFieldHide) String() string {
if i < 0 || i+1 >= ObjectFieldHide(len(_astObjectFieldHide_index)) {
return fmt.Sprintf("astObjectFieldHide(%d)", i)
}
return _astObjectFieldHide_name[_astObjectFieldHide_index[i]:_astObjectFieldHide_index[i+1]]
}

View File

@ -1,20 +0,0 @@
// Generated by: main
// TypeWriter: stringer
// Directive: +gen on astObjectFieldKind
package ast
import (
"fmt"
)
const _astObjectFieldKind_name = "astObjectAssertastObjectFieldIDastObjectFieldExprastObjectFieldStrastObjectLocal"
var _astObjectFieldKind_index = [...]uint8{0, 15, 31, 49, 66, 80}
func (i ObjectFieldKind) String() string {
if i < 0 || i+1 >= ObjectFieldKind(len(_astObjectFieldKind_index)) {
return fmt.Sprintf("astObjectFieldKind(%d)", i)
}
return _astObjectFieldKind_name[_astObjectFieldKind_index[i]:_astObjectFieldKind_index[i+1]]
}