Created
January 20, 2021 12:46
-
-
Save hacker1024/5f79f1c508a5ddcd09c4e1f5f8a02aee to your computer and use it in GitHub Desktop.
A Dart list of Dart keywords (as of 2.12.0)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const keywords = [ | |
'abstract', | |
'else', | |
'import', | |
'super', | |
'as', | |
'enum', | |
'in', | |
'switch', | |
'assert', | |
'export', | |
'interface', | |
'sync', | |
'async', | |
'extends', | |
'is', | |
'this', | |
'await', | |
'extension', | |
'library', | |
'throw', | |
'break', | |
'external', | |
'mixin', | |
'true', | |
'case', | |
'factory', | |
'new', | |
'try', | |
'catch', | |
'false', | |
'null', | |
'typedef', | |
'class', | |
'final', | |
'on', | |
'var', | |
'const', | |
'finally', | |
'operator', | |
'void', | |
'continue', | |
'for', | |
'part', | |
'while', | |
'covariant', | |
'Function', | |
'rethrow', | |
'with', | |
'default', | |
'get', | |
'return', | |
'yield', | |
'deferred', | |
'hide', | |
'set', | |
'do', | |
'if', | |
'show', | |
'dynamic', | |
'implements', | |
'static', | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment