@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class BitwiseOr extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '|'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '|'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_BitwiseOr'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_BitwiseOr'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class LogicalXor extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return 'xor'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return 'xor'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_LogicalXor'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_LogicalXor'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Identical extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '==='; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '==='; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_Identical'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_Identical'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Mod extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '%'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '%'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_Mod'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_Mod'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class BitwiseAnd extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '&'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '&'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_BitwiseAnd'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_BitwiseAnd'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Equal extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '=='; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '=='; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_Equal'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_Equal'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Plus extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '+'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '+'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_Plus'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_Plus'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Mul extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '*'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '*'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_Mul'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_Mul'; |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class BooleanAnd extends BinaryOp |
| 8 | 8 | { |
| 9 | - public function getOperatorSigil() : string { |
|
| 10 | - return '&&'; |
|
| 11 | - } |
|
| 9 | + public function getOperatorSigil() : string { |
|
| 10 | + return '&&'; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getType() : string { |
|
| 14 | - return 'Expr_BinaryOp_BooleanAnd'; |
|
| 15 | - } |
|
| 13 | + public function getType() : string { |
|
| 14 | + return 'Expr_BinaryOp_BooleanAnd'; |
|
| 15 | + } |
|
| 16 | 16 | } |