I'm browsing the .NET source code reference (https://referencesource.microsoft.com/) in an effort to find the codefiles in which keywords are defined. Specifically, I'm interested in how await in the TPL is defined/implemented, but I'd also like to browse the internal implementation of other keywords at some time.
Doing a search for the string "await" on their reference site above only returns class, property, and field names that contain the string "await" (e.g., class AwaitTaskContinuation).
I realize this seems like a basic question, but I can't find any information elsewhere on this.