File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -58,16 +58,6 @@ protected function isVarOperator()
5858 return in_array ($ this ->type , array ('delete ' , 'void ' , 'typeof ' ));
5959 }
6060
61- protected function isOpener ()
62- {
63- return in_array ($ this ->type , array ('{ ' , '( ' , '[ ' ));
64- }
65-
66- protected function isCloser ()
67- {
68- return in_array ($ this ->type , array ('} ' , ') ' , '] ' ));
69- }
70-
7161 public function isAssignation ()
7262 {
7363 return substr ($ this ->type , -1 ) === '= ' && !$ this ->isComparison ();
@@ -88,11 +78,6 @@ public function expectNoLeftMember()
8878 return in_array ($ this ->type , array ('! ' , '~ ' )) || $ this ->isVarOperator ();
8979 }
9080
91- protected function expectRightMember ()
92- {
93- return $ this ->isOperator () || $ this ->isOpener ();
94- }
95-
9681 public function __get ($ key )
9782 {
9883 return isset ($ this ->data [$ key ]) ? $ this ->data [$ key ] : null ;
You can’t perform that action at this time.
0 commit comments