Skip to content

Commit 7d622c4

Browse files
BryanBryan
authored andcommitted
Logic for getIsConcrete changed to be inverse of getIsReference
1 parent ca369e4 commit 7d622c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utilities/parsers/SymbolParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ module.exports = (() => {
429429
* @returns {Boolean}
430430
*/
431431
static getIsConcrete(symbol) {
432-
return is.string(symbol) && !types.futures.alias.test(symbol);
432+
return is.string(symbol) && !this.getIsReference(symbol);
433433
}
434434

435435
/**

0 commit comments

Comments
 (0)