MCPcopy Create free account
hub / github.com/microsoft/vscode-cpptools / scanIdentifier

Method scanIdentifier

Extension/src/Utility/Text/scanner.ts:955–958  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

953 }
954
955 scanIdentifier() {
956 this.text = this.scanUntil((ch) => !isIdentifierPart(ch));
957 return this.kind = keywords.get(this.text) ?? Kind.Identifier;
958 }
959
960 scanVariable() {
961 this.text = '$';

Callers 1

scanMethod · 0.95

Calls 3

scanUntilMethod · 0.95
isIdentifierPartFunction · 0.90
getMethod · 0.45

Tested by

no test coverage detected