remove Cast prefix from node names

This commit is contained in:
z7zmey
2018-04-05 11:59:29 +03:00
parent 37ebee14a6
commit d19b16e161
17 changed files with 172 additions and 172 deletions

View File

@@ -76,7 +76,7 @@ func (p *Printer) printNode(n node.Node) {
case *node.Argument:
p.printNodeArgument(n)
// name
// name
case *name.NamePart:
p.printNameNamePart(n)
@@ -87,7 +87,7 @@ func (p *Printer) printNode(n node.Node) {
case *name.Relative:
p.printNameRelative(n)
// scalar
// scalar
case *scalar.Lnumber:
p.printScalarLNumber(n)
@@ -102,7 +102,7 @@ func (p *Printer) printNode(n node.Node) {
case *scalar.MagicConstant:
p.printScalarMagicConstant(n)
// assign
// assign
case *assign.Assign:
p.printAssign(n)
@@ -133,7 +133,7 @@ func (p *Printer) printNode(n node.Node) {
case *assign.ShiftRight:
p.printAssignShiftRight(n)
// binary
// binary
case *binary.BitwiseAnd:
p.printBinaryBitwiseAnd(n)
@@ -190,24 +190,24 @@ func (p *Printer) printNode(n node.Node) {
case *binary.Spaceship:
p.printBinarySpaceship(n)
// cast
// cast
case *cast.CastArray:
p.printCastArray(n)
case *cast.CastBool:
p.printCastBool(n)
case *cast.CastDouble:
p.printCastDouble(n)
case *cast.CastInt:
p.printCastInt(n)
case *cast.CastObject:
p.printCastObject(n)
case *cast.CastString:
p.printCastString(n)
case *cast.CastUnset:
p.printCastUnset(n)
case *cast.Array:
p.printArray(n)
case *cast.Bool:
p.printBool(n)
case *cast.Double:
p.printDouble(n)
case *cast.Int:
p.printInt(n)
case *cast.Object:
p.printObject(n)
case *cast.String:
p.printString(n)
case *cast.Unset:
p.printUnset(n)
// expr
// expr
case *expr.ArrayDimFetch:
p.printExprArrayDimFetch(n)
@@ -294,7 +294,7 @@ func (p *Printer) printNode(n node.Node) {
case *expr.Yield:
p.printExprYield(n)
// stmt
// stmt
case *stmt.AltElseIf:
p.printStmtAltElseIf(n)
@@ -855,50 +855,50 @@ func (p *Printer) printBinarySpaceship(n node.Node) {
// cast
func (p *Printer) printCastArray(n node.Node) {
nn := n.(*cast.CastArray)
func (p *Printer) printArray(n node.Node) {
nn := n.(*cast.Array)
io.WriteString(p.w, "(array)")
p.Print(nn.Expr)
}
func (p *Printer) printCastBool(n node.Node) {
nn := n.(*cast.CastBool)
func (p *Printer) printBool(n node.Node) {
nn := n.(*cast.Bool)
io.WriteString(p.w, "(bool)")
p.Print(nn.Expr)
}
func (p *Printer) printCastDouble(n node.Node) {
nn := n.(*cast.CastDouble)
func (p *Printer) printDouble(n node.Node) {
nn := n.(*cast.Double)
io.WriteString(p.w, "(float)")
p.Print(nn.Expr)
}
func (p *Printer) printCastInt(n node.Node) {
nn := n.(*cast.CastInt)
func (p *Printer) printInt(n node.Node) {
nn := n.(*cast.Int)
io.WriteString(p.w, "(int)")
p.Print(nn.Expr)
}
func (p *Printer) printCastObject(n node.Node) {
nn := n.(*cast.CastObject)
func (p *Printer) printObject(n node.Node) {
nn := n.(*cast.Object)
io.WriteString(p.w, "(object)")
p.Print(nn.Expr)
}
func (p *Printer) printCastString(n node.Node) {
nn := n.(*cast.CastString)
func (p *Printer) printString(n node.Node) {
nn := n.(*cast.String)
io.WriteString(p.w, "(string)")
p.Print(nn.Expr)
}
func (p *Printer) printCastUnset(n node.Node) {
nn := n.(*cast.CastUnset)
func (p *Printer) printUnset(n node.Node) {
nn := n.(*cast.Unset)
io.WriteString(p.w, "(unset)")
p.Print(nn.Expr)

View File

@@ -972,11 +972,11 @@ func TestPrintBinarySpaceship(t *testing.T) {
// cast
func TestPrintCastArray(t *testing.T) {
func TestPrintArray(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastArray{
p.Print(&cast.Array{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -988,11 +988,11 @@ func TestPrintCastArray(t *testing.T) {
}
}
func TestPrintCastBool(t *testing.T) {
func TestPrintBool(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastBool{
p.Print(&cast.Bool{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -1004,11 +1004,11 @@ func TestPrintCastBool(t *testing.T) {
}
}
func TestPrintCastDouble(t *testing.T) {
func TestPrintDouble(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastDouble{
p.Print(&cast.Double{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -1020,11 +1020,11 @@ func TestPrintCastDouble(t *testing.T) {
}
}
func TestPrintCastInt(t *testing.T) {
func TestPrintInt(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastInt{
p.Print(&cast.Int{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -1036,11 +1036,11 @@ func TestPrintCastInt(t *testing.T) {
}
}
func TestPrintCastObject(t *testing.T) {
func TestPrintObject(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastObject{
p.Print(&cast.Object{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -1052,11 +1052,11 @@ func TestPrintCastObject(t *testing.T) {
}
}
func TestPrintCastString(t *testing.T) {
func TestPrintString(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastString{
p.Print(&cast.String{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})
@@ -1068,11 +1068,11 @@ func TestPrintCastString(t *testing.T) {
}
}
func TestPrintCastUnset(t *testing.T) {
func TestPrintUnset(t *testing.T) {
o := bytes.NewBufferString("")
p := printer.NewPrinter(o, " ")
p.Print(&cast.CastUnset{
p.Print(&cast.Unset{
Expr: &expr.Variable{VarName: &node.Identifier{Value: "var"}},
})