| @@ 91-106 (lines=16) @@ | ||
| 88 | } |
|
| 89 | break; |
|
| 90 | ||
| 91 | case "'": |
|
| 92 | switch ($this->status()) { |
|
| 93 | case 'simple-quote': |
|
| 94 | $this->upStatus(); |
|
| 95 | break; |
|
| 96 | ||
| 97 | case 'line-comment': |
|
| 98 | case 'block-comment': |
|
| 99 | case 'double-quote': |
|
| 100 | break; |
|
| 101 | ||
| 102 | default: |
|
| 103 | $this->downStatus('simple-quote'); |
|
| 104 | break; |
|
| 105 | } |
|
| 106 | break; |
|
| 107 | ||
| 108 | case '"': |
|
| 109 | switch ($this->status()) { |
|
| @@ 108-123 (lines=16) @@ | ||
| 105 | } |
|
| 106 | break; |
|
| 107 | ||
| 108 | case '"': |
|
| 109 | switch ($this->status()) { |
|
| 110 | case 'double-quote': |
|
| 111 | $this->upStatus(); |
|
| 112 | break; |
|
| 113 | ||
| 114 | case 'line-comment': |
|
| 115 | case 'block-comment': |
|
| 116 | case 'simple-quote': |
|
| 117 | break; |
|
| 118 | ||
| 119 | default: |
|
| 120 | $this->downStatus('double-quote'); |
|
| 121 | break; |
|
| 122 | } |
|
| 123 | break; |
|
| 124 | ||
| 125 | case '(': |
|
| 126 | switch ($this->status()) { |
|