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