Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
scan
Method · 0.95
Calls
3
scanUntil
Method · 0.95
isIdentifierPart
Function · 0.90
get
Method · 0.45
Tested by
no test coverage detected