| @@ 76-91 (lines=16) @@ | ||
| 73 | } |
|
| 74 | break; |
|
| 75 | ||
| 76 | case "'": |
|
| 77 | switch ($this->status()) { |
|
| 78 | case 'simple-quote': |
|
| 79 | $this->upStatus(); |
|
| 80 | break; |
|
| 81 | ||
| 82 | case 'line-comment': |
|
| 83 | case 'block-comment': |
|
| 84 | case 'double-quote': |
|
| 85 | break; |
|
| 86 | ||
| 87 | default: |
|
| 88 | $this->downStatus('simple-quote'); |
|
| 89 | break; |
|
| 90 | } |
|
| 91 | break; |
|
| 92 | ||
| 93 | case '"': |
|
| 94 | switch ($this->status()) { |
|
| @@ 93-108 (lines=16) @@ | ||
| 90 | } |
|
| 91 | break; |
|
| 92 | ||
| 93 | case '"': |
|
| 94 | switch ($this->status()) { |
|
| 95 | case 'double-quote': |
|
| 96 | $this->upStatus(); |
|
| 97 | break; |
|
| 98 | ||
| 99 | case 'line-comment': |
|
| 100 | case 'block-comment': |
|
| 101 | case 'simple-quote': |
|
| 102 | break; |
|
| 103 | ||
| 104 | default: |
|
| 105 | $this->downStatus('double-quote'); |
|
| 106 | break; |
|
| 107 | } |
|
| 108 | break; |
|
| 109 | ||
| 110 | case '(': |
|
| 111 | switch ($this->status()) { |
|