(FRONT) FRONT (2016)

Return Javascript keywords.

   1:   
   2:  export const JavascriptKeyword = {
   3:    DataTypes: ["number", "string", "boolean", "null", "undefined", "bigint", "symbol", "object"],
   4:    ControlFlow: ["if", "else", "switch", "case", "default", "for", "while", "do", "break", "continue", "return"],
   5:    FunctionKeywords: ["function", "return", "arguments", "async", "await"],
   6:    ClassAndObjectManagement: ["class", "extends", "super", "new", "this", "constructor", "static", "prototype"],
   7:    VariableDeclarations: ["var", "let", "const"],
   8:    ErrorHandling: ["try", "catch", "finally", "throw"],
   9:    OtherKeywords: ["export", "import", "default", "yield", "typeof", "instanceof", "void", "delete", "in", "with"],
  10:    DOMManipulation: ["document", "window", "Element", "Node", "Event", "EventListener", "querySelector", "getElementById", "appendChild", "removeChild"],
  11:    AsynchronousOperations: ["Promise", "setTimeout", "setInterval", "fetch", "async", "await", "then", "catch", "finally"],
  12:    JSONHandling: ["JSON", "parse", "stringify"],
  13:    ES6Features: ["let", "const", "arrow functions", "template literals", "destructuring", "spread operator", "rest parameters", "modules", "promises", "classes"],
  14:    WebAPIs: ["localStorage", "sessionStorage", "indexedDB", "fetch", "XMLHttpRequest", "FormData", "URL", "Blob", "FileReader"],
  15:    FrameworksAndLibraries: ["React", "Vue", "Angular", "jQuery", "Express", "Node.js", "Redux", "Svelte", "Next.js", "Nuxt.js"],
  16:    Testing: ["Jest", "Mocha", "Chai", "Cypress", "Enzyme", "Jasmine"],
  17:    BuildTools: ["Webpack", "Babel", "Parcel", "Rollup", "Gulp", "Grunt"],
  18:    NodeJS: ["require", "module", "exports", "process", "Buffer", "Stream", "EventEmitter", "fs", "path", "http", "https"],
  19:    ReactKeywords: ["useState", "useEffect", "useContext", "useReducer", "useRef", "useMemo", "useCallback", "Component", "Props", "State", "Context", "Hooks"],
  20:    VueKeywords: ["ref", "reactive", "computed", "watch", "watchEffect", "v-if", "v-for", "v-bind", "v-on", "v-model", "component", "mixin", "directive"],
  21:    AngularKeywords: ["NgModule", "Component", "Directive", "Pipe", "Service", "Injectable", "Input", "Output", "ViewChild", "ViewChildren", "ngOnInit", "ngOnDestroy", "ngOnChanges"],
  22:    TypeScriptKeywords: ["interface", "type", "enum", "namespace", "decorator", "generic", "readonly", "keyof", "typeof", "as", "any", "unknown", "never", "void"],
  23:    UtilityLibraries: ["Lodash", "Underscore", "Moment", "Day.js", "Axios", "Ramda"],
  24:    WellknownRefTypes: [
  25:      // Collections
  26:      'Array', 'Map', 'Set', 'WeakMap', 'WeakSet',
  27:      // Regular Expressions
  28:      'RegExp',
  29:      // Date and Time
  30:      'Date',
  31:      // Math & Number Handling
  32:      'Math', 'Number', 'BigInt',
  33:      // I/O Streams
  34:      'Blob', 'File', 'FileReader', 'FileList',
  35:      // Networking
  36:      'URL', 'URLSearchParams', 'Headers', 'Request', 'Response', 'Fetch',
  37:      // Reflection
  38:      'Proxy', 'Reflect',
  39:      // Logging
  40:      'console'
  41:    ]
  42:  }
  43:   
  44:  export const TypescriptKeyword = {
  45:          DataTypes: ["number", "string", "boolean", "null", "undefined", "bigint", "symbol", "object", "any", "unknown", "never", "void"],
  46:          ControlFlow: ["if", "else", "switch", "case", "default", "for", "while", "do", "break", "continue", "return"],
  47:          FunctionKeywords: ["function", "return", "arguments", "async", "await"],
  48:          ClassAndObjectManagement: ["class", "extends", "super", "new", "this", "constructor", "static", "prototype", "abstract", "implements", "interface"],
  49:          VariableDeclarations: ["var", "let", "const"],
  50:          ErrorHandling: ["try", "catch", "finally", "throw"],
  51:          OtherKeywords: ["export", "import", "default", "yield", "typeof", "instanceof", "void", "delete", "in", "with", "as", "is", "keyof", "readonly", "namespace", "module"],
  52:          DOMManipulation: ["document", "window", "Element", "Node", "Event", "EventListener", "querySelector", "getElementById", "appendChild", "removeChild"],
  53:          AsynchronousOperations: ["Promise", "setTimeout", "setInterval", "fetch", "async", "await", "then", "catch", "finally"],
  54:          JSONHandling: ["JSON", "parse", "stringify"],
  55:          ES6Features: ["let", "const", "arrow functions", "template literals", "destructuring", "spread operator", "rest parameters", "modules", "promises", "classes"],
  56:          WebAPIs: ["localStorage", "sessionStorage", "indexedDB", "fetch", "XMLHttpRequest", "FormData", "URL", "Blob", "FileReader"],
  57:          FrameworksAndLibraries: ["React", "Vue", "Angular", "jQuery", "Express", "Node.js", "Redux", "Svelte", "Next.js", "Nuxt.js"],
  58:          Testing: ["Jest", "Mocha", "Chai", "Cypress", "Enzyme", "Jasmine"],
  59:          BuildTools: ["Webpack", "Babel", "Parcel", "Rollup", "Gulp", "Grunt"],
  60:          NodeJS: ["require", "module", "exports", "process", "Buffer", "Stream", "EventEmitter", "fs", "path", "http", "https"],
  61:          ReactKeywords: ["useState", "useEffect", "useContext", "useReducer", "useRef", "useMemo", "useCallback", "Component", "Props", "State", "Context", "Hooks"],
  62:          VueKeywords: ["ref", "reactive", "computed", "watch", "watchEffect", "v-if", "v-for", "v-bind", "v-on", "v-model", "component", "mixin", "directive"],
  63:          AngularKeywords: ["NgModule", "Component", "Directive", "Pipe", "Service", "Injectable", "Input", "Output", "ViewChild", "ViewChildren", "ngOnInit", "ngOnDestroy", "ngOnChanges"],
  64:          TypeScriptKeywords: ["interface", "type", "enum", "namespace", "decorator", "generic", "readonly", "keyof", "typeof", "as", "any", "unknown", "never", "void", "union", "intersection", "tuple", "literal", "type guard", "type assertion", "conditional types", "mapped types", "utility types"],
  65:          UtilityLibraries: ["Lodash", "Underscore", "Moment", "Day.js", "Axios", "Ramda"],
  66:          WellknownRefTypes: [
  67:            // Collections
  68:            'Array', 'Map', 'Set', 'WeakMap', 'WeakSet',
  69:            // Regular Expressions
  70:            'RegExp',
  71:            // Date and Time
  72:            'Date',
  73:            // Math & Number Handling
  74:            'Math', 'Number', 'BigInt',
  75:            // I/O Streams
  76:            'Blob', 'File', 'FileReader', 'FileList',
  77:            // Networking
  78:            'URL', 'URLSearchParams', 'Headers', 'Request', 'Response', 'Fetch',
  79:            // Reflection
  80:            'Proxy', 'Reflect',
  81:            // Logging
  82:            'console',
  83:            // TypeScript Specific
  84:            'Partial', 'Required', 'Readonly', 'Record', 'Pick', 'Omit', 'Exclude', 'Extract', 'NonNullable', 'ReturnType', 'InstanceType'
  85:          ]
  86:        
  87:  }
  88:   
  89:  export const AngularKeywords = {
  90:          DataTypes: ["number", "string", "boolean", "null", "undefined", "bigint", "symbol", "object", "any", "unknown", "never", "void"],
  91:          ControlFlow: ["if", "else", "switch", "case", "default", "for", "while", "do", "break", "continue", "return"],
  92:          FunctionKeywords: ["function", "return", "arguments", "async", "await"],
  93:          ClassAndObjectManagement: ["class", "extends", "super", "new", "this", "constructor", "static", "prototype", "abstract", "implements", "interface"],
  94:          VariableDeclarations: ["var", "let", "const"],
  95:          ErrorHandling: ["try", "catch", "finally", "throw"],
  96:          OtherKeywords: ["export", "import", "default", "yield", "typeof", "instanceof", "void", "delete", "in", "with", "as", "is", "keyof", "readonly", "namespace", "module"],
  97:          AngularCore: [
  98:            // Angular Core Decorators
  99:            "NgModule", "Component", "Directive", "Pipe", "Injectable", "Input", "Output", "ViewChild", "ViewChildren", "ContentChild", "ContentChildren", "HostBinding", "HostListener",
 100:            // Angular Core Classes
 101:            "ElementRef", "Renderer2", "TemplateRef", "ViewContainerRef", "ChangeDetectorRef", "ApplicationRef", "Injector", "NgModuleRef", "ComponentFactoryResolver", "ComponentRef", "ViewRef"
 102:          ],
 103:          AngularLifecycleHooks: [
 104:            "ngOnInit", "ngOnChanges", "ngDoCheck", "ngAfterContentInit", "ngAfterContentChecked", "ngAfterViewInit", "ngAfterViewChecked", "ngOnDestroy"
 105:          ],
 106:          AngularForms: [
 107:            "FormControl", "FormGroup", "FormArray", "AbstractControl", "Validators", "FormBuilder", "ReactiveFormsModule", "FormsModule", "FormControlDirective", "FormGroupDirective", "NgForm", "NgModel"
 108:          ],
 109:          AngularRouting: [
 110:            "RouterModule", "Routes", "Router", "ActivatedRoute", "RouterOutlet", "RouterLink", "RouterLinkActive", "CanActivate", "CanDeactivate", "Resolve", "CanLoad", "NavigationExtras", "UrlSegment", "ParamMap", "QueryParamsHandling"
 111:          ],
 112:          AngularHttpClient: [
 113:            "HttpClient", "HttpClientModule", "HttpHeaders", "HttpParams", "HttpErrorResponse", "HttpInterceptor", "HttpRequest", "HttpEvent", "HttpHandler", "HttpBackend"
 114:          ],
 115:          AngularDependencyInjection: [
 116:            "Injectable", "Inject", "InjectionToken", "Provider", "useClass", "useValue", "useFactory", "useExisting", "forwardRef"
 117:          ],
 118:          AngularChangeDetection: [
 119:            "ChangeDetectionStrategy", "ChangeDetectorRef", "markForCheck", "detectChanges", "detach", "reattach"
 120:          ],
 121:          AngularAnimations: [
 122:            "trigger", "state", "style", "animate", "transition", "keyframes", "query", "stagger", "group", "sequence", "AnimationBuilder", "AnimationPlayer"
 123:          ],
 124:          AngularTesting: [
 125:            "TestBed", "ComponentFixture", "async", "fakeAsync", "tick", "inject", "ComponentFixtureAutoDetect", "ComponentFixtureNoNgZone", "By", "DebugElement", "DebugNode", "MockBuilder", "MockRender"
 126:          ],
 127:          AngularPipes: [
 128:            "DatePipe", "UpperCasePipe", "LowerCasePipe", "CurrencyPipe", "DecimalPipe", "PercentPipe", "JsonPipe", "SlicePipe", "AsyncPipe", "I18nPluralPipe", "I18nSelectPipe", "KeyValuePipe"
 129:          ],
 130:          AngularDirectives: [
 131:            "NgIf", "NgFor", "NgSwitch", "NgSwitchCase", "NgSwitchDefault", "NgClass", "NgStyle", "NgModel", "NgTemplateOutlet", "NgComponentOutlet", "NgPlural", "NgPluralCase"
 132:          ],
 133:          AngularMaterial: [
 134:            "MatButtonModule", "MatInputModule", "MatCardModule", "MatToolbarModule", "MatIconModule", "MatMenuModule", "MatTableModule", "MatPaginatorModule", "MatSortModule", "MatDialogModule", "MatSnackBarModule", "MatProgressSpinnerModule", "MatSelectModule", "MatCheckboxModule", "MatRadioModule", "MatDatepickerModule", "MatNativeDateModule", "MatTabsModule", "MatStepperModule", "MatExpansionModule", "MatListModule", "MatSidenavModule", "MatTooltipModule", "MatAutocompleteModule", "MatChipsModule", "MatProgressBarModule", "MatSliderModule", "MatSlideToggleModule", "MatButtonToggleModule", "MatBadgeModule", "MatBottomSheetModule", "MatDividerModule", "MatGridListModule", "MatRippleModule", "MatTreeModule"
 135:          ],
 136:          AngularRxJS: [
 137:            "Observable", "Subject", "BehaviorSubject", "ReplaySubject", "AsyncSubject", "of", "from", "map", "filter", "switchMap", "mergeMap", "concatMap", "exhaustMap", "take", "takeUntil", "debounceTime", "distinctUntilChanged", "catchError", "retry", "tap", "combineLatest", "forkJoin", "withLatestFrom", "startWith", "delay", "throttleTime", "auditTime", "interval", "timer"
 138:          ],
 139:          AngularCLI: [
 140:            "ng generate", "ng serve", "ng build", "ng test", "ng lint", "ng e2e", "ng add", "ng update", "ng deploy", "ng config", "ng new", "ng run", "ng doc", "ng xi18n"
 141:          ],
 142:          AngularUniversal: [
 143:            "renderModule", "renderModuleFactory", "TransferState", "PlatformState", "ServerModule", "ServerTransferStateModule", "ngExpressEngine", "provideModuleMap"
 144:          ],
 145:          AngularSchematics: [
 146:            "Schematic", "Rule", "Tree", "chain", "externalSchematic", "mergeWith", "apply", "url", "template", "move", "filter", "noop", "branchAndMerge", "mergeStrategy"
 147:          ],
 148:          AngularSecurity: [
 149:            "DomSanitizer", "SafeHtml", "SafeResourceUrl", "SafeScript", "SafeStyle", "SafeUrl", "SecurityContext"
 150:          ],
 151:          AngularInternationalization: [
 152:            "TranslateModule", "TranslateService", "TranslateLoader", "TranslatePipe", "TranslateCompiler", "TranslateParser", "MissingTranslationHandler", "TranslateStore", "TranslateDirective", "TranslateFakeLoader", "TranslateHttpLoader"
 153:          ],
 154:          AngularStateManagement: [
 155:            "NgRx", "Store", "Action", "Reducer", "Selector", "Effect", "State", "createAction", "createReducer", "createEffect", "createSelector", "StoreModule", "EffectsModule", "Entity", "Data", "RouterStoreModule", "StoreDevtoolsModule"
 156:          ],
 157:          AngularPerformance: [
 158:            "OnPush", "trackBy", "pure pipes", "lazy loading", "preloadingStrategy", "enableProdMode", "ngZone", "runOutsideAngular", "unidirectional data flow", "AOT compilation", "tree shaking", "code splitting"
 159:          ],
 160:          AngularMiscellaneous: [
 161:            "APP_INITIALIZER", "APP_BOOTSTRAP_LISTENER", "PLATFORM_INITIALIZER", "ENVIRONMENT_INITIALIZER", "LOCALE_ID", "DEFAULT_CURRENCY_CODE", "DOCUMENT", "EVENT_MANAGER_PLUGINS", "HASH_LOCATION_STRATEGY", "PATH_LOCATION_STRATEGY", "APP_ID", "PLATFORM_ID", "VERSION", "isDevMode", "createPlatform", "createPlatformFactory", "destroyPlatform"
 162:          ]
 163:   }
 164:   
 165:   export const cSharpKeywords = {
 166:          DataTypes: ["bool", "byte", "sbyte", "char", "decimal", "double", "float", "int", "uint", "long", "ulong", "short", "ushort", "object", "string", "dynamic"],
 167:          ControlFlow: ["if", "else", "switch", "case", "default", "for", "foreach", "while", "do", "break", "continue", "return", "goto"],
 168:          ClassAndObjectManagement: ["class", "struct", "interface", "enum", "new", "this", "base", "abstract", "sealed", "static", "virtual", "override", "partial", "namespace", "using"],
 169:          AccessModifiers: ["public", "private", "protected", "internal", "protected internal", "private protected"],
 170:          ExceptionHandling: ["try", "catch", "finally", "throw"],
 171:          OtherKeywords: ["void", "async", "await", "yield", "typeof", "nameof", "sizeof", "checked", "unchecked", "fixed", "lock", "stackalloc", "params", "ref", "out", "in", "is", "as", "operator", "event", "delegate", "unsafe", "volatile", "extern", "const", "readonly", "implicit", "explicit", "global"],
 172:          Collections: ["List", "Dictionary", "HashSet", "Queue", "Stack", "LinkedList", "SortedList", "SortedDictionary", "SortedSet", "Array", "ArrayList", "Hashtable", "BitArray", "Collection", "ReadOnlyCollection", "ObservableCollection", "ConcurrentBag", "ConcurrentQueue", "ConcurrentStack", "ConcurrentDictionary", "BlockingCollection"],
 173:          LINQ: ["from", "where", "select", "group", "orderby", "join", "let", "into", "ascending", "descending", "Any", "All", "First", "FirstOrDefault", "Single", "SingleOrDefault", "Last", "LastOrDefault", "Count", "Sum", "Min", "Max", "Average", "Aggregate", "Distinct", "Skip", "Take", "TakeWhile", "SkipWhile", "SelectMany", "GroupBy", "OrderBy", "OrderByDescending", "ThenBy", "ThenByDescending", "Join", "GroupJoin", "ToArray", "ToList", "ToDictionary", "ToLookup", "AsEnumerable", "AsQueryable", "Cast", "OfType"],
 174:          FileIO: ["File", "FileInfo", "Directory", "DirectoryInfo", "Path", "Stream", "FileStream", "StreamReader", "StreamWriter", "BinaryReader", "BinaryWriter", "MemoryStream", "BufferedStream", "FileMode", "FileAccess", "FileShare", "FileAttributes", "DriveInfo", "FileSystemWatcher"],
 175:          Networking: ["HttpClient", "WebRequest", "WebResponse", "HttpWebRequest", "HttpWebResponse", "TcpClient", "TcpListener", "UdpClient", "Socket", "NetworkStream", "IPAddress", "IPEndPoint", "Dns", "WebSocket", "HttpListener", "HttpContent", "HttpMethod", "HttpStatusCode"],
 176:          Threading: ["Thread", "ThreadPool", "Task", "Task<TResult>", "Parallel", "CancellationToken", "CancellationTokenSource", "Semaphore", "SemaphoreSlim", "Mutex", "Monitor", "AutoResetEvent", "ManualResetEvent", "ReaderWriterLock", "ReaderWriterLockSlim", "Interlocked", "Volatile", "Barrier", "CountdownEvent", "SpinLock", "SpinWait", "AsyncLocal", "ExecutionContext", "SynchronizationContext"],
 177:          Reflection: ["Type", "Assembly", "MethodInfo", "PropertyInfo", "FieldInfo", "ConstructorInfo", "ParameterInfo", "EventInfo", "MemberInfo", "Activator", "CustomAttribute", "CustomAttributeData", "CustomAttributeNamedArgument", "CustomAttributeTypedArgument", "Binder", "BindingFlags", "Module", "AppDomain"],
 178:          Serialization: ["JsonSerializer", "XmlSerializer", "DataContractSerializer", "DataContractJsonSerializer", "BinaryFormatter", "SoapFormatter", "JsonConvert", "JsonReader", "JsonWriter", "JsonTextReader", "JsonTextWriter", "XmlReader", "XmlWriter", "XmlTextReader", "XmlTextWriter", "XmlDocument", "XDocument", "XElement", "XAttribute", "XPathNavigator", "XPathExpression"],
 179:          EntityFramework: ["DbContext", "DbSet", "EntityState", "Migration", "DbMigration", "DbModelBuilder", "DbConfiguration", "DbFunctions", "DbSqlQuery", "DbRawSqlQuery", "DbQuery", "DbContextOptions", "DbConnection", "DbCommand", "DbDataReader", "DbParameter", "DbTransaction", "DbProviderFactory", "DbProviderServices", "DbProviderManifest", "DbProviderManifestToken"],
 180:          ASPNETCore: ["Startup", "ConfigureServices", "Configure", "IApplicationBuilder", "IServiceCollection", "IHostBuilder", "IHost", "IWebHostBuilder", "IWebHost", "Middleware", "Controller", "ApiController", "Route", "HttpGet", "HttpPost", "HttpPut", "HttpDelete", "HttpPatch", "FromQuery", "FromRoute", "FromBody", "FromForm", "FromHeader", "FromServices", "ActionResult", "IActionResult", "ViewResult", "JsonResult", "ContentResult", "FileResult", "RedirectResult", "StatusCodeResult", "BadRequestResult", "NotFoundResult", "OkResult", "CreatedResult", "AcceptedResult", "NoContentResult", "UnauthorizedResult", "ForbidResult", "ChallengeResult", "SignInResult", "SignOutResult", "LocalRedirectResult", "PhysicalFileResult", "VirtualFileResult", "ViewComponent", "TagHelper", "RazorPage", "RazorView", "RazorViewEngine", "RazorRuntimeCompilation", "RazorCompiledItem", "RazorCompiledItemMetadata", "RazorCompiledItemMetadataAttribute", "RazorCompiledItemMetadataAttributeExtensions", "RazorCompiledItemMetadataExtensions", "RazorCompiledItemExtensions"],
 181:          StateManagement: ["NgRx", "Store", "Action", "Reducer", "Selector", "Effect", "State", "createAction", "createReducer", "createEffect", "createSelector", "StoreModule", "EffectsModule", "Entity", "Data", "RouterStoreModule", "StoreDevtoolsModule"],
 182:          Performance: ["OnPush", "trackBy", "pure pipes", "lazy loading", "preloadingStrategy", "enableProdMode", "ngZone", "runOutsideAngular", "unidirectional data flow", "AOT compilation", "tree shaking", "code splitting"],
 183:          Miscellaneous: ["APP_INITIALIZER", "APP_BOOTSTRAP_LISTENER", "PLATFORM_INITIALIZER", "ENVIRONMENT_INITIALIZER", "LOCALE_ID", "DEFAULT_CURRENCY_CODE", "DOCUMENT", "EVENT_MANAGER_PLUGINS", "HASH_LOCATION_STRATEGY", "PATH_LOCATION_STRATEGY", "APP_ID", "PLATFORM_ID", "VERSION", "isDevMode", "createPlatform", "createPlatformFactory", "destroyPlatform"],
 184:          WPF : [ "Window", "Application", "Page", "Frame", "UserControl", "DataTemplate", "ControlTemplate", "Style", "Trigger", "EventTrigger", "DataTrigger", "Binding", "RelativeSource", "TemplateBinding", "StaticResource", "DynamicResource", "ResourceDictionary", "DependencyObject", "DependencyProperty", "RoutedEvent", "RoutedEventArgs", "RoutedEventHandler", "Command", "ICommand", "DelegateCommand", "RelayCommand", "INotifyPropertyChanged", "ObservableCollection", "CollectionView", "CollectionViewSource", "DataContext", "ItemsControl", "ContentControl", "HeaderedContentControl", "ItemsPresenter", "ContentPresenter", "Panel", "StackPanel", "Grid", "Canvas", "DockPanel", "WrapPanel", "UniformGrid", "Border", "Button", "Label", "TextBox", "ComboBox", "ListBox", "ListView", "TreeView", "DataGrid", "Menu", "ToolBar", "StatusBar", "Slider", "ProgressBar", "CheckBox", "RadioButton", "Image", "MediaElement", "WebBrowser", "Expander", "GroupBox", "TabControl", "TabItem", "ScrollViewer", "Separator", "ToolTip", "ContextMenu", "Popup", "Adorner", "AdornerLayer", "Visual", "VisualBrush", "DrawingBrush", "DrawingGroup", "DrawingImage", "DrawingVisual", "Geometry", "Path", "Ellipse", "Rectangle", "Line", "Polygon", "Polyline", "PathFigure", "PathSegment", "ArcSegment", "BezierSegment", "LineSegment", "PolyBezierSegment", "PolyLineSegment", "PolyQuadraticBezierSegment", "QuadraticBezierSegment", "Transform", "TranslateTransform", "RotateTransform", "ScaleTransform", "SkewTransform", "TransformGroup", "MatrixTransform", "Brush", "SolidColorBrush", "LinearGradientBrush", "RadialGradientBrush", "ImageBrush", "VisualBrush", "DrawingBrush", "TileBrush", "GradientStop", "Color", "Colors", "Point", "Rect", "Size", "Thickness", "CornerRadius", "Duration", "KeyTime", "RepeatBehavior", "Timeline", "DoubleAnimation", "ColorAnimation", "PointAnimation", "ThicknessAnimation", "Storyboard", "EventTrigger", "BeginStoryboard", "StopStoryboard", "PauseStoryboard", "ResumeStoryboard", "RemoveStoryboard", "SeekStoryboard", "SetStoryboardSpeedRatio", "SkipStoryboardToFill", "ParallelTimeline", "TimelineGroup", "AnimationClock", "Clock", "ClockController", "ClockGroup", "ClockState", "TimeManager"],
 185:          WinForms: ["Form", "Button", "Label", "TextBox", "ComboBox", "ListBox", "CheckBox", "RadioButton", "PictureBox", "Panel", "GroupBox", "TabControl", "TabPage", "MenuStrip", "ToolStrip", "StatusStrip", "ContextMenuStrip", "DataGridView", "ListView", "TreeView", "Timer", "OpenFileDialog", "SaveFileDialog", "FolderBrowserDialog", "ColorDialog", "FontDialog", "MessageBox", "Application", "Control", "EventHandler", "PaintEventArgs", "Graphics", "Bitmap", "Icon", "Cursor", "Point", "Size", "Rectangle", "Color", "Font", "DialogResult", "Anchor", "Dock", "Padding", "Margin", "AutoSize", "Visible", "Enabled", "Text", "BackColor", "ForeColor", "Font", "Location", "Size", "StartPosition", "WindowState", "FormBorderStyle", "Show", "ShowDialog", "Close", "Dispose", "Invalidate", "Refresh", "Update", "BringToFront", "SendToBack", "Focus", "Select", "PerformClick", "OnClick", "OnPaint", "OnResize", "OnLoad", "OnClosed", "OnFormClosing", "OnFormClosed"],
 186:   }



ES6 context:

Comments ( )
Link to this page: http://www.vb-net.com/JavascriptES6/JavascriptKeyword.htm
< THANKS ME>