@@ -59,12 +59,11 @@ public static function factory()
59
59
* Returns source text.
60
60
*
61
61
* @return string
62
- * @throws Scanner\RuntimeException
63
62
*/
64
63
public function getText ()
65
64
{
66
65
if (null === $ this ->text ) {
67
- throw new Scanner \ RuntimeException ("Text is not set " );
66
+ throw new RuntimeException ("Text is not set " );
68
67
}
69
68
return $ this ->text ;
70
69
}
@@ -75,13 +74,12 @@ public function getText()
75
74
*
76
75
* @param string $text
77
76
* @return $this
78
- * @throws Scanner\RegExpException
79
77
*/
80
78
public function setText ($ text )
81
79
{
82
80
PregHelper::assertValidUTF8 (
83
81
$ text ,
84
- Scanner \ RegExpException::class,
82
+ RegExpException::class,
85
83
"Regular expression error on checking source text "
86
84
);
87
85
$ this ->text = (string ) $ text ;
@@ -106,7 +104,6 @@ public function isEnd()
106
104
* Reads next token from text.
107
105
*
108
106
* @return Token
109
- * @throws Scanner/UnknownSyntaxException
110
107
*/
111
108
public function readToken ()
112
109
{
@@ -125,7 +122,7 @@ public function readToken()
125
122
$ token = $ this ->matchNextToken ($ errorTypeList );
126
123
}
127
124
if (null === $ token ) {
128
- throw new Scanner \ UnknownSyntaxException ("Unknown syntax error in source text " );
125
+ throw new UnknownSyntaxException ("Unknown syntax error in source text " );
129
126
}
130
127
return $ token ;
131
128
}
@@ -164,20 +161,18 @@ protected function matchNextToken(array $typeList)
164
161
*
165
162
* @param int $byteCount
166
163
* @return $this
167
- * @throws Scanner\LogicException
168
- * @throws Scanner\DomainException
169
164
*/
170
165
protected function advanceCursor ($ byteCount )
171
166
{
172
167
if (0 >= $ byteCount ) {
173
- throw new Scanner \ DomainException ("Byte count to advance cursor must be positive " );
168
+ throw new DomainException ("Byte count to advance cursor must be positive " );
174
169
}
175
170
if ($ this ->isEnd ()) {
176
- throw new Scanner \ LogicException ("Cursor is at the end of text and cannot be advanced " );
171
+ throw new LogicException ("Cursor is at the end of text and cannot be advanced " );
177
172
}
178
173
$ maxByteCount = strlen ($ this ->getText ()) - $ this ->cursor ;
179
174
if ($ byteCount > $ maxByteCount ) {
180
- throw new Scanner \ LogicException ("Cursor cannot be advanced beyond the end of text " );
175
+ throw new LogicException ("Cursor cannot be advanced beyond the end of text " );
181
176
}
182
177
$ this ->cursor += $ byteCount ;
183
178
$ this ->textAtCursor = null ;
@@ -190,7 +185,7 @@ protected function getTextLength($text)
190
185
$ length = preg_match_all ('#.#us ' , $ text );
191
186
PregHelper::assertMatchResult (
192
187
$ length ,
193
- Scanner \ RegExpException::class,
188
+ RegExpException::class,
194
189
"Regular expression error on getting token length "
195
190
);
196
191
return $ length ;
@@ -202,7 +197,6 @@ protected function getTextLength($text)
202
197
*
203
198
* @param int $type
204
199
* @return string
205
- * @throws Scanner\DomainException
206
200
*/
207
201
protected function getTokenPattern ($ type )
208
202
{
@@ -213,7 +207,7 @@ protected function getTokenPattern($type)
213
207
Token::TYPE_ERROR_INVALID_ESCAPE => '~ ' ,
214
208
];
215
209
if (!isset ($ patternMap [$ type ])) {
216
- throw new Scanner \ DomainException ("Unknown token type: {$ type }" );
210
+ throw new DomainException ("Unknown token type: {$ type }" );
217
211
}
218
212
$ pattern = $ patternMap [$ type ];
219
213
return "# {$ pattern }#uA " ;
@@ -224,15 +218,14 @@ protected function getTokenPattern($type)
224
218
* Returns part of source string that starts at current cursor position.
225
219
*
226
220
* @return string
227
- * @throws Scanner\LengthException
228
221
* @todo Limit substring size with maximal token length (without breaking UTF-8).
229
222
*/
230
223
protected function getTextAtCursor ()
231
224
{
232
225
if (null === $ this ->textAtCursor ) {
233
226
$ textAtCursor = substr ($ this ->getText (), $ this ->cursor );
234
227
if (strlen ($ textAtCursor ) == 0 ) {
235
- throw new Scanner \ LengthException ("No more text to match tokens " );
228
+ throw new LengthException ("No more text to match tokens " );
236
229
}
237
230
$ this ->textAtCursor = $ textAtCursor ;
238
231
}
@@ -245,21 +238,19 @@ protected function getTextAtCursor()
245
238
*
246
239
* @param int $type
247
240
* @return string|null Token text or NULL.
248
- * @throws Scanner\LengthException
249
- * @throws Scanner\RegExpException
250
241
*/
251
242
protected function matchTokenTextAtCursor ($ type )
252
243
{
253
244
$ result = preg_match ($ this ->getTokenPattern ($ type ), $ this ->getTextAtCursor (), $ matches );
254
245
PregHelper::assertMatchResult (
255
246
$ result ,
256
- Scanner \ RegExpException::class,
247
+ RegExpException::class,
257
248
"Failed to match token text due to regular expression error "
258
249
);
259
250
if (1 === $ result ) {
260
251
$ text = $ matches [0 ];
261
252
if (strlen ($ text ) == 0 ) {
262
- throw new Scanner \ LengthException ("Matched token text is empty " );
253
+ throw new LengthException ("Matched token text is empty " );
263
254
}
264
255
} else {
265
256
$ text = null ;
@@ -275,7 +266,7 @@ protected function unescape($escapedText)
275
266
'~1 ' => '/ ' ,
276
267
];
277
268
if (!isset ($ unescapeMap [$ escapedText ])) {
278
- throw new Scanner \ DomainException ("Unknown escape sequence: {$ escapedText }" );
269
+ throw new DomainException ("Unknown escape sequence: {$ escapedText }" );
279
270
}
280
271
return $ unescapeMap [$ escapedText ];
281
272
}
0 commit comments