Searched refs:AppType (Results 1 – 4 of 4) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | arrayLiteralInference.types | 4 export enum AppType { 5 >AppType : AppType 8 >HeaderDetail : AppType.HeaderDetail 12 >HeaderMultiDetail : AppType.HeaderMultiDetail 16 >AdvancedList : AppType.AdvancedList 20 >Standard : AppType.Standard 24 >Relationship : AppType.Relationship 28 >Report : AppType.Report 32 >Composite : AppType.Composite 36 >ListOnly : AppType.ListOnly [all …]
|
D | arrayLiteralInference.js | 4 export enum AppType { 24 const appTypeStylesWithError: Map<AppType, Array<AppStyle>> = new Map([ 25 [AppType.Standard, [AppStyle.Standard, AppStyle.MiniApp]], 26 [AppType.Relationship, [AppStyle.Standard, AppStyle.Tree, AppStyle.TreeEntity]], 27 [AppType.AdvancedList, [AppStyle.Standard, AppStyle.MiniApp]] 39 export var AppType; variable 40 (function (AppType) { argument 41 AppType["HeaderDetail"] = "HeaderDetail"; 42 AppType["HeaderMultiDetail"] = "HeaderMultiDetail"; 43 AppType["AdvancedList"] = "AdvancedList"; [all …]
|
D | arrayLiteralInference.symbols | 4 export enum AppType { 5 >AppType : Symbol(AppType, Decl(arrayLiteralInference.ts, 0, 0)) 8 >HeaderDetail : Symbol(AppType.HeaderDetail, Decl(arrayLiteralInference.ts, 2, 21)) 11 >HeaderMultiDetail : Symbol(AppType.HeaderMultiDetail, Decl(arrayLiteralInference.ts, 3, 34)) 14 >AdvancedList : Symbol(AppType.AdvancedList, Decl(arrayLiteralInference.ts, 4, 44)) 17 >Standard : Symbol(AppType.Standard, Decl(arrayLiteralInference.ts, 5, 34)) 20 >Relationship : Symbol(AppType.Relationship, Decl(arrayLiteralInference.ts, 6, 26)) 23 >Report : Symbol(AppType.Report, Decl(arrayLiteralInference.ts, 7, 34)) 26 >Composite : Symbol(AppType.Composite, Decl(arrayLiteralInference.ts, 8, 22)) 29 >ListOnly : Symbol(AppType.ListOnly, Decl(arrayLiteralInference.ts, 9, 28)) [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/arrayLiterals/ |
D | arrayLiteralInference.ts | 6 export enum AppType { enum 26 const appTypeStylesWithError: Map<AppType, Array<AppStyle>> = new Map([ 27 [AppType.Standard, [AppStyle.Standard, AppStyle.MiniApp]], 28 [AppType.Relationship, [AppStyle.Standard, AppStyle.Tree, AppStyle.TreeEntity]], 29 [AppType.AdvancedList, [AppStyle.Standard, AppStyle.MiniApp]]
|