@@ -300,20 +300,21 @@ function initSearch(rawSearchIndex) {
300
300
* @return {integer }
301
301
*/
302
302
function getIdentEndPosition ( parserState ) {
303
+ const start = parserState . pos ;
303
304
let end = parserState . pos ;
304
- let foundExclamation = false ;
305
+ let foundExclamation = - 1 ;
305
306
while ( parserState . pos < parserState . length ) {
306
307
const c = parserState . userQuery [ parserState . pos ] ;
307
308
if ( ! isIdentCharacter ( c ) ) {
308
309
if ( c === "!" ) {
309
- if ( foundExclamation ) {
310
+ if ( foundExclamation !== - 1 ) {
310
311
throw new Error ( "Cannot have more than one `!` in an ident" ) ;
311
312
} else if ( parserState . pos + 1 < parserState . length &&
312
313
isIdentCharacter ( parserState . userQuery [ parserState . pos + 1 ] )
313
314
) {
314
315
throw new Error ( "`!` can only be at the end of an ident" ) ;
315
316
}
316
- foundExclamation = true ;
317
+ foundExclamation = parserState . pos ;
317
318
} else if ( isErrorCharacter ( c ) ) {
318
319
throw new Error ( `Unexpected \`${ c } \`` ) ;
319
320
} else if (
@@ -326,16 +327,35 @@ function initSearch(rawSearchIndex) {
326
327
if ( ! isPathStart ( parserState ) ) {
327
328
break ;
328
329
}
330
+ if ( foundExclamation !== - 1 ) {
331
+ if ( start <= ( end - 2 ) ) {
332
+ throw new Error ( "Cannot have associated items in macros" ) ;
333
+ } else {
334
+ // if start == end - 1, we got the never type
335
+ // while the never type has no associated macros, we still
336
+ // can parse a path like that
337
+ foundExclamation = - 1 ;
338
+ }
339
+ }
329
340
// Skip current ":".
330
341
parserState . pos += 1 ;
331
- foundExclamation = false ;
332
342
} else {
333
343
throw new Error ( `Unexpected \`${ c } \`` ) ;
334
344
}
335
345
}
336
346
parserState . pos += 1 ;
337
347
end = parserState . pos ;
338
348
}
349
+ // if start == end - 1, we got the never type
350
+ if ( foundExclamation !== - 1 && start <= ( end - 2 ) ) {
351
+ if ( parserState . typeFilter === null ) {
352
+ parserState . typeFilter = "macro" ;
353
+ } else if ( parserState . typeFilter !== "macro" ) {
354
+ throw new Error ( "Invalid search type: macro `!` and " +
355
+ `\`${ parserState . typeFilter } \` both specified` ) ;
356
+ }
357
+ end = foundExclamation ;
358
+ }
339
359
return end ;
340
360
}
341
361
@@ -589,8 +609,8 @@ function initSearch(rawSearchIndex) {
589
609
*
590
610
* The supported syntax by this parser is as follow:
591
611
*
592
- * ident = *(ALPHA / DIGIT / "_") [!]
593
- * path = ident *(DOUBLE-COLON ident)
612
+ * ident = *(ALPHA / DIGIT / "_")
613
+ * path = ident *(DOUBLE-COLON ident) [!]
594
614
* arg = path [generics]
595
615
* arg-without-generic = path
596
616
* type-sep = COMMA/WS *(COMMA/WS)
0 commit comments