fix typo
This commit is contained in:
@@ -11,7 +11,7 @@ type Assign struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewAssign node constuctor
|
||||
// NewAssign node constructor
|
||||
func NewAssign(Variable node.Node, Expression node.Node) *Assign {
|
||||
return &Assign{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Reference struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewReference node constuctor
|
||||
// NewReference node constructor
|
||||
func NewReference(Variable node.Node, Expression node.Node) *Reference {
|
||||
return &Reference{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type BitwiseAnd struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewBitwiseAnd node constuctor
|
||||
// NewBitwiseAnd node constructor
|
||||
func NewBitwiseAnd(Variable node.Node, Expression node.Node) *BitwiseAnd {
|
||||
return &BitwiseAnd{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type BitwiseOr struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewBitwiseOr node constuctor
|
||||
// NewBitwiseOr node constructor
|
||||
func NewBitwiseOr(Variable node.Node, Expression node.Node) *BitwiseOr {
|
||||
return &BitwiseOr{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type BitwiseXor struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewBitwiseXor node constuctor
|
||||
// NewBitwiseXor node constructor
|
||||
func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor {
|
||||
return &BitwiseXor{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Concat struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewConcat node constuctor
|
||||
// NewConcat node constructor
|
||||
func NewConcat(Variable node.Node, Expression node.Node) *Concat {
|
||||
return &Concat{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Div struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewDiv node constuctor
|
||||
// NewDiv node constructor
|
||||
func NewDiv(Variable node.Node, Expression node.Node) *Div {
|
||||
return &Div{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Minus struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewMinus node constuctor
|
||||
// NewMinus node constructor
|
||||
func NewMinus(Variable node.Node, Expression node.Node) *Minus {
|
||||
return &Minus{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Mod struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewMod node constuctor
|
||||
// NewMod node constructor
|
||||
func NewMod(Variable node.Node, Expression node.Node) *Mod {
|
||||
return &Mod{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Mul struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewMul node constuctor
|
||||
// NewMul node constructor
|
||||
func NewMul(Variable node.Node, Expression node.Node) *Mul {
|
||||
return &Mul{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Plus struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewPlus node constuctor
|
||||
// NewPlus node constructor
|
||||
func NewPlus(Variable node.Node, Expression node.Node) *Plus {
|
||||
return &Plus{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type Pow struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewPow node constuctor
|
||||
// NewPow node constructor
|
||||
func NewPow(Variable node.Node, Expression node.Node) *Pow {
|
||||
return &Pow{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type ShiftLeft struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewShiftLeft node constuctor
|
||||
// NewShiftLeft node constructor
|
||||
func NewShiftLeft(Variable node.Node, Expression node.Node) *ShiftLeft {
|
||||
return &ShiftLeft{
|
||||
Variable,
|
||||
|
||||
@@ -11,7 +11,7 @@ type ShiftRight struct {
|
||||
Expression node.Node
|
||||
}
|
||||
|
||||
// NewShiftRight node constuctor
|
||||
// NewShiftRight node constructor
|
||||
func NewShiftRight(Variable node.Node, Expression node.Node) *ShiftRight {
|
||||
return &ShiftRight{
|
||||
Variable,
|
||||
|
||||
Reference in New Issue
Block a user