From a93298665c42d8a796495694fbfb7396979b659e Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Fri, 6 Sep 2019 11:32:22 -0700 Subject: [PATCH 1/3] Add heuristic for extracting irreducible `null` and `undefined` types from intersections of unions (#33150) --- src/compiler/checker.ts | 16 ++ .../partialOfLargeAPIIsAbleToBeWorkedWith.js | 85 ++++++ ...tialOfLargeAPIIsAbleToBeWorkedWith.symbols | 253 ++++++++++++++++++ ...artialOfLargeAPIIsAbleToBeWorkedWith.types | 252 +++++++++++++++++ .../partialOfLargeAPIIsAbleToBeWorkedWith.ts | 71 +++++ 5 files changed, 677 insertions(+) create mode 100644 tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.js create mode 100644 tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.symbols create mode 100644 tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.types create mode 100644 tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 758b6252ea9..2328b7e3d68 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -9996,6 +9996,16 @@ namespace ts { return true; } + function extractIrreducible(types: Type[], flag: TypeFlags) { + if (every(types, t => !!(t.flags & TypeFlags.Union) && some((t as UnionType).types, tt => !!(tt.flags & flag)))) { + for (let i = 0; i < types.length; i++) { + types[i] = filterType(types[i], t => !(t.flags & flag)); + } + return true; + } + return false; + } + // If the given list of types contains more than one union of primitive types, replace the // first with a union containing an intersection of those primitive types, then remove the // other unions and return true. Otherwise, do nothing and return false. @@ -10114,6 +10124,12 @@ namespace ts { // reduced we'll never reduce again, so this occurs at most once. result = getIntersectionType(typeSet, aliasSymbol, aliasTypeArguments); } + else if (extractIrreducible(typeSet, TypeFlags.Undefined)) { + result = getUnionType([getIntersectionType(typeSet), undefinedType], UnionReduction.Literal, aliasSymbol, aliasTypeArguments); + } + else if (extractIrreducible(typeSet, TypeFlags.Null)) { + result = getUnionType([getIntersectionType(typeSet), nullType], UnionReduction.Literal, aliasSymbol, aliasTypeArguments); + } else { // We are attempting to construct a type of the form X & (A | B) & Y. Transform this into a type of // the form X & A & Y | X & B & Y and recursively reduce until no union type constituents remain. diff --git a/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.js b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.js new file mode 100644 index 00000000000..1984e3c9d4f --- /dev/null +++ b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.js @@ -0,0 +1,85 @@ +//// [partialOfLargeAPIIsAbleToBeWorkedWith.ts] +interface MyAPI { + 0: (x: 0) => string; + 1: (x: 1) => string; + 2: (x: 2) => string; + 3: (x: 3) => string; + 4: (x: 4) => string; + 5: (x: 5) => string; + 6: (x: 6) => string; + 7: (x: 7) => string; + 8: (x: 8) => string; + 9: (x: 9) => string; + 10: (x: 10) => string; + 11: (x: 11) => string; + 12: (x: 12) => string; + 13: (x: 13) => string; + 14: (x: 14) => string; + 15: (x: 15) => string; + 16: (x: 16) => string; + 17: (x: 17) => string; + 18: (x: 18) => string; + 19: (x: 19) => string; + 20: (x: 20) => string; + 21: (x: 21) => string; + 22: (x: 22) => string; + 23: (x: 23) => string; + 24: (x: 24) => string; + 25: (x: 25) => string; + 26: (x: 26) => string; + 27: (x: 27) => string; + 28: (x: 28) => string; + 29: (x: 29) => string; + 30: (x: 30) => string; + 31: (x: 31) => string; + 32: (x: 32) => string; + 33: (x: 33) => string; + 34: (x: 34) => string; + 35: (x: 35) => string; + 36: (x: 36) => string; + 37: (x: 37) => string; + 38: (x: 38) => string; + 39: (x: 39) => string; + 40: (x: 40) => string; + 41: (x: 41) => string; + 42: (x: 42) => string; + 43: (x: 43) => string; + 44: (x: 44) => string; + 45: (x: 45) => string; + 46: (x: 46) => string; + 47: (x: 47) => string; + 48: (x: 48) => string; + 49: (x: 49) => string; + 50: (x: 50) => string; + 51: (x: 51) => string; +} + +const obj: Partial = {}; + +declare var keys: (keyof MyAPI)[]; + +for (const k of keys) { + obj[k] = () => "12"; // shouldn't cause a complexity error +} + +type PartialNull = {[K in keyof T]?: T[K] | null}; + +const obj2: PartialNull = {}; + +for (const k of keys) { + obj2[k] = () => "12"; // shouldn't cause a complexity error +} + + +//// [partialOfLargeAPIIsAbleToBeWorkedWith.js] +"use strict"; +var obj = {}; +for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) { + var k = keys_1[_i]; + obj[k] = function () { return "12"; }; // shouldn't cause a complexity error +} +var obj2 = {}; +for (var _a = 0, keys_2 = keys; _a < keys_2.length; _a++) { + var k = keys_2[_a]; + obj2[k] = function () { return "12"; }; // shouldn't cause a complexity error +} diff --git a/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.symbols b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.symbols new file mode 100644 index 00000000000..1e8f83a1400 --- /dev/null +++ b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.symbols @@ -0,0 +1,253 @@ +=== tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts === +interface MyAPI { +>MyAPI : Symbol(MyAPI, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 0, 0)) + + 0: (x: 0) => string; +>0 : Symbol(MyAPI[0], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 0, 17)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 1, 8)) + + 1: (x: 1) => string; +>1 : Symbol(MyAPI[1], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 1, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 2, 8)) + + 2: (x: 2) => string; +>2 : Symbol(MyAPI[2], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 2, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 3, 8)) + + 3: (x: 3) => string; +>3 : Symbol(MyAPI[3], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 3, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 4, 8)) + + 4: (x: 4) => string; +>4 : Symbol(MyAPI[4], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 4, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 5, 8)) + + 5: (x: 5) => string; +>5 : Symbol(MyAPI[5], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 5, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 6, 8)) + + 6: (x: 6) => string; +>6 : Symbol(MyAPI[6], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 6, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 7, 8)) + + 7: (x: 7) => string; +>7 : Symbol(MyAPI[7], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 7, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 8, 8)) + + 8: (x: 8) => string; +>8 : Symbol(MyAPI[8], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 8, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 9, 8)) + + 9: (x: 9) => string; +>9 : Symbol(MyAPI[9], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 9, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 10, 8)) + + 10: (x: 10) => string; +>10 : Symbol(MyAPI[10], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 10, 24)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 11, 9)) + + 11: (x: 11) => string; +>11 : Symbol(MyAPI[11], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 11, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 12, 9)) + + 12: (x: 12) => string; +>12 : Symbol(MyAPI[12], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 12, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 13, 9)) + + 13: (x: 13) => string; +>13 : Symbol(MyAPI[13], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 13, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 14, 9)) + + 14: (x: 14) => string; +>14 : Symbol(MyAPI[14], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 14, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 15, 9)) + + 15: (x: 15) => string; +>15 : Symbol(MyAPI[15], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 15, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 16, 9)) + + 16: (x: 16) => string; +>16 : Symbol(MyAPI[16], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 16, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 17, 9)) + + 17: (x: 17) => string; +>17 : Symbol(MyAPI[17], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 17, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 18, 9)) + + 18: (x: 18) => string; +>18 : Symbol(MyAPI[18], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 18, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 19, 9)) + + 19: (x: 19) => string; +>19 : Symbol(MyAPI[19], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 19, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 20, 9)) + + 20: (x: 20) => string; +>20 : Symbol(MyAPI[20], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 20, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 21, 9)) + + 21: (x: 21) => string; +>21 : Symbol(MyAPI[21], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 21, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 22, 9)) + + 22: (x: 22) => string; +>22 : Symbol(MyAPI[22], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 22, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 23, 9)) + + 23: (x: 23) => string; +>23 : Symbol(MyAPI[23], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 23, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 24, 9)) + + 24: (x: 24) => string; +>24 : Symbol(MyAPI[24], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 24, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 25, 9)) + + 25: (x: 25) => string; +>25 : Symbol(MyAPI[25], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 25, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 26, 9)) + + 26: (x: 26) => string; +>26 : Symbol(MyAPI[26], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 26, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 27, 9)) + + 27: (x: 27) => string; +>27 : Symbol(MyAPI[27], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 27, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 28, 9)) + + 28: (x: 28) => string; +>28 : Symbol(MyAPI[28], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 28, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 29, 9)) + + 29: (x: 29) => string; +>29 : Symbol(MyAPI[29], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 29, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 30, 9)) + + 30: (x: 30) => string; +>30 : Symbol(MyAPI[30], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 30, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 31, 9)) + + 31: (x: 31) => string; +>31 : Symbol(MyAPI[31], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 31, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 32, 9)) + + 32: (x: 32) => string; +>32 : Symbol(MyAPI[32], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 32, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 33, 9)) + + 33: (x: 33) => string; +>33 : Symbol(MyAPI[33], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 33, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 34, 9)) + + 34: (x: 34) => string; +>34 : Symbol(MyAPI[34], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 34, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 35, 9)) + + 35: (x: 35) => string; +>35 : Symbol(MyAPI[35], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 35, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 36, 9)) + + 36: (x: 36) => string; +>36 : Symbol(MyAPI[36], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 36, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 37, 9)) + + 37: (x: 37) => string; +>37 : Symbol(MyAPI[37], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 37, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 38, 9)) + + 38: (x: 38) => string; +>38 : Symbol(MyAPI[38], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 38, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 39, 9)) + + 39: (x: 39) => string; +>39 : Symbol(MyAPI[39], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 39, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 40, 9)) + + 40: (x: 40) => string; +>40 : Symbol(MyAPI[40], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 40, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 41, 9)) + + 41: (x: 41) => string; +>41 : Symbol(MyAPI[41], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 41, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 42, 9)) + + 42: (x: 42) => string; +>42 : Symbol(MyAPI[42], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 42, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 43, 9)) + + 43: (x: 43) => string; +>43 : Symbol(MyAPI[43], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 43, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 44, 9)) + + 44: (x: 44) => string; +>44 : Symbol(MyAPI[44], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 44, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 45, 9)) + + 45: (x: 45) => string; +>45 : Symbol(MyAPI[45], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 45, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 46, 9)) + + 46: (x: 46) => string; +>46 : Symbol(MyAPI[46], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 46, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 47, 9)) + + 47: (x: 47) => string; +>47 : Symbol(MyAPI[47], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 47, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 48, 9)) + + 48: (x: 48) => string; +>48 : Symbol(MyAPI[48], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 48, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 49, 9)) + + 49: (x: 49) => string; +>49 : Symbol(MyAPI[49], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 49, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 50, 9)) + + 50: (x: 50) => string; +>50 : Symbol(MyAPI[50], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 50, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 51, 9)) + + 51: (x: 51) => string; +>51 : Symbol(MyAPI[51], Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 51, 26)) +>x : Symbol(x, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 52, 9)) +} + +const obj: Partial = {}; +>obj : Symbol(obj, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 55, 5)) +>Partial : Symbol(Partial, Decl(lib.es5.d.ts, --, --)) +>MyAPI : Symbol(MyAPI, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 0, 0)) + +declare var keys: (keyof MyAPI)[]; +>keys : Symbol(keys, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 57, 11)) +>MyAPI : Symbol(MyAPI, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 0, 0)) + +for (const k of keys) { +>k : Symbol(k, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 59, 10)) +>keys : Symbol(keys, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 57, 11)) + + obj[k] = () => "12"; // shouldn't cause a complexity error +>obj : Symbol(obj, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 55, 5)) +>k : Symbol(k, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 59, 10)) +} + +type PartialNull = {[K in keyof T]?: T[K] | null}; +>PartialNull : Symbol(PartialNull, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 61, 1)) +>T : Symbol(T, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 63, 17)) +>K : Symbol(K, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 63, 24)) +>T : Symbol(T, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 63, 17)) +>T : Symbol(T, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 63, 17)) +>K : Symbol(K, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 63, 24)) + +const obj2: PartialNull = {}; +>obj2 : Symbol(obj2, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 65, 5)) +>PartialNull : Symbol(PartialNull, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 61, 1)) +>MyAPI : Symbol(MyAPI, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 0, 0)) + +for (const k of keys) { +>k : Symbol(k, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 67, 10)) +>keys : Symbol(keys, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 57, 11)) + + obj2[k] = () => "12"; // shouldn't cause a complexity error +>obj2 : Symbol(obj2, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 65, 5)) +>k : Symbol(k, Decl(partialOfLargeAPIIsAbleToBeWorkedWith.ts, 67, 10)) +} + diff --git a/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.types b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.types new file mode 100644 index 00000000000..f3b7406a3dd --- /dev/null +++ b/tests/baselines/reference/partialOfLargeAPIIsAbleToBeWorkedWith.types @@ -0,0 +1,252 @@ +=== tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts === +interface MyAPI { + 0: (x: 0) => string; +>0 : (x: 0) => string +>x : 0 + + 1: (x: 1) => string; +>1 : (x: 1) => string +>x : 1 + + 2: (x: 2) => string; +>2 : (x: 2) => string +>x : 2 + + 3: (x: 3) => string; +>3 : (x: 3) => string +>x : 3 + + 4: (x: 4) => string; +>4 : (x: 4) => string +>x : 4 + + 5: (x: 5) => string; +>5 : (x: 5) => string +>x : 5 + + 6: (x: 6) => string; +>6 : (x: 6) => string +>x : 6 + + 7: (x: 7) => string; +>7 : (x: 7) => string +>x : 7 + + 8: (x: 8) => string; +>8 : (x: 8) => string +>x : 8 + + 9: (x: 9) => string; +>9 : (x: 9) => string +>x : 9 + + 10: (x: 10) => string; +>10 : (x: 10) => string +>x : 10 + + 11: (x: 11) => string; +>11 : (x: 11) => string +>x : 11 + + 12: (x: 12) => string; +>12 : (x: 12) => string +>x : 12 + + 13: (x: 13) => string; +>13 : (x: 13) => string +>x : 13 + + 14: (x: 14) => string; +>14 : (x: 14) => string +>x : 14 + + 15: (x: 15) => string; +>15 : (x: 15) => string +>x : 15 + + 16: (x: 16) => string; +>16 : (x: 16) => string +>x : 16 + + 17: (x: 17) => string; +>17 : (x: 17) => string +>x : 17 + + 18: (x: 18) => string; +>18 : (x: 18) => string +>x : 18 + + 19: (x: 19) => string; +>19 : (x: 19) => string +>x : 19 + + 20: (x: 20) => string; +>20 : (x: 20) => string +>x : 20 + + 21: (x: 21) => string; +>21 : (x: 21) => string +>x : 21 + + 22: (x: 22) => string; +>22 : (x: 22) => string +>x : 22 + + 23: (x: 23) => string; +>23 : (x: 23) => string +>x : 23 + + 24: (x: 24) => string; +>24 : (x: 24) => string +>x : 24 + + 25: (x: 25) => string; +>25 : (x: 25) => string +>x : 25 + + 26: (x: 26) => string; +>26 : (x: 26) => string +>x : 26 + + 27: (x: 27) => string; +>27 : (x: 27) => string +>x : 27 + + 28: (x: 28) => string; +>28 : (x: 28) => string +>x : 28 + + 29: (x: 29) => string; +>29 : (x: 29) => string +>x : 29 + + 30: (x: 30) => string; +>30 : (x: 30) => string +>x : 30 + + 31: (x: 31) => string; +>31 : (x: 31) => string +>x : 31 + + 32: (x: 32) => string; +>32 : (x: 32) => string +>x : 32 + + 33: (x: 33) => string; +>33 : (x: 33) => string +>x : 33 + + 34: (x: 34) => string; +>34 : (x: 34) => string +>x : 34 + + 35: (x: 35) => string; +>35 : (x: 35) => string +>x : 35 + + 36: (x: 36) => string; +>36 : (x: 36) => string +>x : 36 + + 37: (x: 37) => string; +>37 : (x: 37) => string +>x : 37 + + 38: (x: 38) => string; +>38 : (x: 38) => string +>x : 38 + + 39: (x: 39) => string; +>39 : (x: 39) => string +>x : 39 + + 40: (x: 40) => string; +>40 : (x: 40) => string +>x : 40 + + 41: (x: 41) => string; +>41 : (x: 41) => string +>x : 41 + + 42: (x: 42) => string; +>42 : (x: 42) => string +>x : 42 + + 43: (x: 43) => string; +>43 : (x: 43) => string +>x : 43 + + 44: (x: 44) => string; +>44 : (x: 44) => string +>x : 44 + + 45: (x: 45) => string; +>45 : (x: 45) => string +>x : 45 + + 46: (x: 46) => string; +>46 : (x: 46) => string +>x : 46 + + 47: (x: 47) => string; +>47 : (x: 47) => string +>x : 47 + + 48: (x: 48) => string; +>48 : (x: 48) => string +>x : 48 + + 49: (x: 49) => string; +>49 : (x: 49) => string +>x : 49 + + 50: (x: 50) => string; +>50 : (x: 50) => string +>x : 50 + + 51: (x: 51) => string; +>51 : (x: 51) => string +>x : 51 +} + +const obj: Partial = {}; +>obj : Partial +>{} : {} + +declare var keys: (keyof MyAPI)[]; +>keys : (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51)[] + +for (const k of keys) { +>k : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 +>keys : (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51)[] + + obj[k] = () => "12"; // shouldn't cause a complexity error +>obj[k] = () => "12" : () => string +>obj[k] : (((x: 0) => string) & ((x: 1) => string) & ((x: 2) => string) & ((x: 3) => string) & ((x: 4) => string) & ((x: 5) => string) & ((x: 6) => string) & ((x: 7) => string) & ((x: 8) => string) & ((x: 9) => string) & ((x: 10) => string) & ((x: 11) => string) & ((x: 12) => string) & ((x: 13) => string) & ((x: 14) => string) & ((x: 15) => string) & ((x: 16) => string) & ((x: 17) => string) & ((x: 18) => string) & ((x: 19) => string) & ((x: 20) => string) & ((x: 21) => string) & ((x: 22) => string) & ((x: 23) => string) & ((x: 24) => string) & ((x: 25) => string) & ((x: 26) => string) & ((x: 27) => string) & ((x: 28) => string) & ((x: 29) => string) & ((x: 30) => string) & ((x: 31) => string) & ((x: 32) => string) & ((x: 33) => string) & ((x: 34) => string) & ((x: 35) => string) & ((x: 36) => string) & ((x: 37) => string) & ((x: 38) => string) & ((x: 39) => string) & ((x: 40) => string) & ((x: 41) => string) & ((x: 42) => string) & ((x: 43) => string) & ((x: 44) => string) & ((x: 45) => string) & ((x: 46) => string) & ((x: 47) => string) & ((x: 48) => string) & ((x: 49) => string) & ((x: 50) => string) & ((x: 51) => string)) | undefined +>obj : Partial +>k : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 +>() => "12" : () => string +>"12" : "12" +} + +type PartialNull = {[K in keyof T]?: T[K] | null}; +>PartialNull : PartialNull +>null : null + +const obj2: PartialNull = {}; +>obj2 : PartialNull +>{} : {} + +for (const k of keys) { +>k : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 +>keys : (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51)[] + + obj2[k] = () => "12"; // shouldn't cause a complexity error +>obj2[k] = () => "12" : () => string +>obj2[k] : (((x: 0) => string) & ((x: 1) => string) & ((x: 2) => string) & ((x: 3) => string) & ((x: 4) => string) & ((x: 5) => string) & ((x: 6) => string) & ((x: 7) => string) & ((x: 8) => string) & ((x: 9) => string) & ((x: 10) => string) & ((x: 11) => string) & ((x: 12) => string) & ((x: 13) => string) & ((x: 14) => string) & ((x: 15) => string) & ((x: 16) => string) & ((x: 17) => string) & ((x: 18) => string) & ((x: 19) => string) & ((x: 20) => string) & ((x: 21) => string) & ((x: 22) => string) & ((x: 23) => string) & ((x: 24) => string) & ((x: 25) => string) & ((x: 26) => string) & ((x: 27) => string) & ((x: 28) => string) & ((x: 29) => string) & ((x: 30) => string) & ((x: 31) => string) & ((x: 32) => string) & ((x: 33) => string) & ((x: 34) => string) & ((x: 35) => string) & ((x: 36) => string) & ((x: 37) => string) & ((x: 38) => string) & ((x: 39) => string) & ((x: 40) => string) & ((x: 41) => string) & ((x: 42) => string) & ((x: 43) => string) & ((x: 44) => string) & ((x: 45) => string) & ((x: 46) => string) & ((x: 47) => string) & ((x: 48) => string) & ((x: 49) => string) & ((x: 50) => string) & ((x: 51) => string)) | null | undefined +>obj2 : PartialNull +>k : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 +>() => "12" : () => string +>"12" : "12" +} + diff --git a/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts b/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts new file mode 100644 index 00000000000..02fb3f8bee0 --- /dev/null +++ b/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts @@ -0,0 +1,71 @@ +// @strict: true +interface MyAPI { + 0: (x: 0) => string; + 1: (x: 1) => string; + 2: (x: 2) => string; + 3: (x: 3) => string; + 4: (x: 4) => string; + 5: (x: 5) => string; + 6: (x: 6) => string; + 7: (x: 7) => string; + 8: (x: 8) => string; + 9: (x: 9) => string; + 10: (x: 10) => string; + 11: (x: 11) => string; + 12: (x: 12) => string; + 13: (x: 13) => string; + 14: (x: 14) => string; + 15: (x: 15) => string; + 16: (x: 16) => string; + 17: (x: 17) => string; + 18: (x: 18) => string; + 19: (x: 19) => string; + 20: (x: 20) => string; + 21: (x: 21) => string; + 22: (x: 22) => string; + 23: (x: 23) => string; + 24: (x: 24) => string; + 25: (x: 25) => string; + 26: (x: 26) => string; + 27: (x: 27) => string; + 28: (x: 28) => string; + 29: (x: 29) => string; + 30: (x: 30) => string; + 31: (x: 31) => string; + 32: (x: 32) => string; + 33: (x: 33) => string; + 34: (x: 34) => string; + 35: (x: 35) => string; + 36: (x: 36) => string; + 37: (x: 37) => string; + 38: (x: 38) => string; + 39: (x: 39) => string; + 40: (x: 40) => string; + 41: (x: 41) => string; + 42: (x: 42) => string; + 43: (x: 43) => string; + 44: (x: 44) => string; + 45: (x: 45) => string; + 46: (x: 46) => string; + 47: (x: 47) => string; + 48: (x: 48) => string; + 49: (x: 49) => string; + 50: (x: 50) => string; + 51: (x: 51) => string; +} + +const obj: Partial = {}; + +declare var keys: (keyof MyAPI)[]; + +for (const k of keys) { + obj[k] = () => "12"; // shouldn't cause a complexity error +} + +type PartialNull = {[K in keyof T]?: T[K] | null}; + +const obj2: PartialNull = {}; + +for (const k of keys) { + obj2[k] = () => "12"; // shouldn't cause a complexity error +} From fb453f820848a0ce55f169778be3f65ea405ca9f Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Fri, 6 Sep 2019 11:38:30 -0700 Subject: [PATCH 2/3] Update user baselines (#33281) --- .../baselines/reference/docker/azure-sdk.log | 16 +++---- .../reference/docker/office-ui-fabric.log | 2 +- tests/baselines/reference/user/axios-src.log | 36 +++++++-------- tests/baselines/reference/user/prettier.log | 46 +++++++++---------- tests/cases/user/axios-src/axios-src | 2 +- tests/cases/user/prettier/prettier | 2 +- 6 files changed, 51 insertions(+), 53 deletions(-) diff --git a/tests/baselines/reference/docker/azure-sdk.log b/tests/baselines/reference/docker/azure-sdk.log index 4791b54045a..b770268f6a2 100644 --- a/tests/baselines/reference/docker/azure-sdk.log +++ b/tests/baselines/reference/docker/azure-sdk.log @@ -2,7 +2,7 @@ Exit Code: 1 Standard output: Rush Multi-Project Build Tool 5.X.X - https://rushjs.io -Node.js version is 12.9.1 (pre-LTS) +Node.js version is 12.10.0 (pre-LTS) Starting "rush rebuild" Executing a maximum of ?simultaneous processes... XX of XX: [@azure/abort-controller] completed successfully in ? seconds @@ -23,7 +23,7 @@ Warning: You have changed the public API signature for this project. Updating re dist-esm/index.js → dist/index.js... (!) Unresolved dependencies https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency -tslib (imported by dist-esm/auth.js, dist-esm/queryIterator.js, dist-esm/CosmosClient.js, dist-esm/plugins/Plugin.js, dist-esm/ClientContext.js, dist-esm/globalEndpointManager.js, dist-esm/client/Conflict/Conflict.js, dist-esm/client/Container/Container.js, dist-esm/client/Container/Containers.js, dist-esm/client/Database/Database.js, dist-esm/client/Database/Databases.js, dist-esm/client/Item/Item.js, dist-esm/client/Item/Items.js, dist-esm/client/Offer/Offer.js, dist-esm/client/Permission/Permission.js, dist-esm/client/Permission/Permissions.js, dist-esm/client/StoredProcedure/StoredProcedure.js, dist-esm/client/StoredProcedure/StoredProcedures.js, dist-esm/client/Trigger/Trigger.js, dist-esm/client/Trigger/Triggers.js, dist-esm/client/User/User.js, dist-esm/client/User/Users.js, dist-esm/client/UserDefinedFunction/UserDefinedFunction.js, dist-esm/client/UserDefinedFunction/UserDefinedFunctions.js, dist-esm/queryExecutionContext/defaultQueryExecutionContext.js, dist-esm/queryExecutionContext/documentProducer.js, dist-esm/queryExecutionContext/parallelQueryExecutionContextBase.js, dist-esm/queryExecutionContext/pipelinedQueryExecutionContext.js, dist-esm/request/request.js, dist-esm/request/RequestHandler.js, dist-esm/ChangeFeedIterator.js, dist-esm/routing/smartRoutingMapProvider.js, dist-esm/queryExecutionContext/EndpointComponent/AggregateEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OffsetLimitEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderByEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderedDistinctEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/UnorderedDistinctEndpointComponent.js, dist-esm/retry/retryUtility.js, dist-esm/routing/partitionKeyRangeCache.js, dist-esm/retry/defaultRetryPolicy.js, dist-esm/retry/endpointDiscoveryRetryPolicy.js, dist-esm/retry/resourceThrottleRetryPolicy.js, dist-esm/retry/sessionRetryPolicy.js) +tslib (imported by dist-esm/auth.js, dist-esm/queryIterator.js, dist-esm/CosmosClient.js, dist-esm/plugins/Plugin.js, dist-esm/ClientContext.js, dist-esm/globalEndpointManager.js, dist-esm/client/Conflict/Conflict.js, dist-esm/client/Container/Container.js, dist-esm/client/Container/Containers.js, dist-esm/client/Database/Database.js, dist-esm/client/Database/Databases.js, dist-esm/client/Item/Item.js, dist-esm/client/Item/Items.js, dist-esm/client/Offer/Offer.js, dist-esm/client/Permission/Permission.js, dist-esm/client/Permission/Permissions.js, dist-esm/client/StoredProcedure/StoredProcedures.js, dist-esm/client/StoredProcedure/StoredProcedure.js, dist-esm/client/Trigger/Trigger.js, dist-esm/client/Trigger/Triggers.js, dist-esm/client/User/User.js, dist-esm/client/User/Users.js, dist-esm/client/UserDefinedFunction/UserDefinedFunction.js, dist-esm/client/UserDefinedFunction/UserDefinedFunctions.js, dist-esm/queryExecutionContext/defaultQueryExecutionContext.js, dist-esm/queryExecutionContext/documentProducer.js, dist-esm/queryExecutionContext/parallelQueryExecutionContextBase.js, dist-esm/queryExecutionContext/pipelinedQueryExecutionContext.js, dist-esm/request/request.js, dist-esm/request/RequestHandler.js, dist-esm/ChangeFeedIterator.js, dist-esm/routing/smartRoutingMapProvider.js, dist-esm/queryExecutionContext/EndpointComponent/AggregateEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderByEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OffsetLimitEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderedDistinctEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/UnorderedDistinctEndpointComponent.js, dist-esm/retry/retryUtility.js, dist-esm/routing/partitionKeyRangeCache.js, dist-esm/retry/defaultRetryPolicy.js, dist-esm/retry/endpointDiscoveryRetryPolicy.js, dist-esm/retry/resourceThrottleRetryPolicy.js, dist-esm/retry/sessionRetryPolicy.js) @azure/cosmos-sign (imported by dist-esm/auth.js) universal-user-agent (imported by dist-esm/common/platform.js) uuid/v4 (imported by dist-esm/ClientContext.js, dist-esm/client/Item/Items.js) @@ -55,7 +55,7 @@ atob (guessing 'atob') (!) Circular dependency: dist-esm/index.js -> dist-esm/CosmosClient.js -> dist-esm/client/Database/index.js -> dist-esm/client/Database/Database.js -> dist-esm/client/Container/index.js -> dist-esm/client/Container/Container.js -> dist-esm/client/Script/Scripts.js -> dist-esm/index.js (!) Circular dependency: dist-esm/request/RequestHandler.js -> dist-esm/retry/retryUtility.js -> dist-esm/request/RequestHandler.js created dist/index.js in ?s -Warning: You have changed the public API signature for this project. Updating review/event-hubs.api.md +XX of XX: [@azure/event-hubs] completed successfully in ? seconds XX of XX: [@azure/keyvault-certificates] completed successfully in ? seconds Warning: You have changed the public API signature for this project. Updating review/service-bus.api.md XX of XX: [@azure/storage-blob] completed successfully in ? seconds @@ -63,7 +63,7 @@ XX of XX: [@azure/storage-file] completed successfully in ? seconds XX of XX: [@azure/storage-queue] completed successfully in ? seconds XX of XX: [@azure/template] completed successfully in ? seconds XX of XX: [testhub] completed successfully in ? seconds -SUCCESS (20) +SUCCESS (21) ================================ @azure/abort-controller (? seconds) @azure/core-auth (? seconds) @@ -79,6 +79,7 @@ SUCCESS (20) @azure/keyvault-secrets (? seconds) @azure/app-configuration (? seconds) @azure/core-asynciterator-polyfill (? seconds) +@azure/event-hubs (? seconds) @azure/keyvault-certificates (? seconds) @azure/storage-blob (? seconds) @azure/storage-file (? seconds) @@ -86,14 +87,14 @@ SUCCESS (20) @azure/template (? seconds) testhub (? seconds) ================================ -SUCCESS WITH WARNINGS (3) +SUCCESS WITH WARNINGS (2) ================================ @azure/cosmos (? seconds) Warning: You have changed the public API signature for this project. Updating review/cosmos.api.md dist-esm/index.js → dist/index.js... (!) Unresolved dependencies https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency -tslib (imported by dist-esm/auth.js, dist-esm/queryIterator.js, dist-esm/CosmosClient.js, dist-esm/plugins/Plugin.js, dist-esm/ClientContext.js, dist-esm/globalEndpointManager.js, dist-esm/client/Conflict/Conflict.js, dist-esm/client/Container/Container.js, dist-esm/client/Container/Containers.js, dist-esm/client/Database/Database.js, dist-esm/client/Database/Databases.js, dist-esm/client/Item/Item.js, dist-esm/client/Item/Items.js, dist-esm/client/Offer/Offer.js, dist-esm/client/Permission/Permission.js, dist-esm/client/Permission/Permissions.js, dist-esm/client/StoredProcedure/StoredProcedure.js, dist-esm/client/StoredProcedure/StoredProcedures.js, dist-esm/client/Trigger/Trigger.js, dist-esm/client/Trigger/Triggers.js, dist-esm/client/User/User.js, dist-esm/client/User/Users.js, dist-esm/client/UserDefinedFunction/UserDefinedFunction.js, dist-esm/client/UserDefinedFunction/UserDefinedFunctions.js, dist-esm/queryExecutionContext/defaultQueryExecutionContext.js, dist-esm/queryExecutionContext/documentProducer.js, dist-esm/queryExecutionContext/parallelQueryExecutionContextBase.js, dist-esm/queryExecutionContext/pipelinedQueryExecutionContext.js, dist-esm/request/request.js, dist-esm/request/RequestHandler.js, dist-esm/ChangeFeedIterator.js, dist-esm/routing/smartRoutingMapProvider.js, dist-esm/queryExecutionContext/EndpointComponent/AggregateEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OffsetLimitEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderByEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderedDistinctEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/UnorderedDistinctEndpointComponent.js, dist-esm/retry/retryUtility.js, dist-esm/routing/partitionKeyRangeCache.js, dist-esm/retry/defaultRetryPolicy.js, dist-esm/retry/endpointDiscoveryRetryPolicy.js, dist-esm/retry/resourceThrottleRetryPolicy.js, dist-esm/retry/sessionRetryPolicy.js) +tslib (imported by dist-esm/auth.js, dist-esm/queryIterator.js, dist-esm/CosmosClient.js, dist-esm/plugins/Plugin.js, dist-esm/ClientContext.js, dist-esm/globalEndpointManager.js, dist-esm/client/Conflict/Conflict.js, dist-esm/client/Container/Container.js, dist-esm/client/Container/Containers.js, dist-esm/client/Database/Database.js, dist-esm/client/Database/Databases.js, dist-esm/client/Item/Item.js, dist-esm/client/Item/Items.js, dist-esm/client/Offer/Offer.js, dist-esm/client/Permission/Permission.js, dist-esm/client/Permission/Permissions.js, dist-esm/client/StoredProcedure/StoredProcedures.js, dist-esm/client/StoredProcedure/StoredProcedure.js, dist-esm/client/Trigger/Trigger.js, dist-esm/client/Trigger/Triggers.js, dist-esm/client/User/User.js, dist-esm/client/User/Users.js, dist-esm/client/UserDefinedFunction/UserDefinedFunction.js, dist-esm/client/UserDefinedFunction/UserDefinedFunctions.js, dist-esm/queryExecutionContext/defaultQueryExecutionContext.js, dist-esm/queryExecutionContext/documentProducer.js, dist-esm/queryExecutionContext/parallelQueryExecutionContextBase.js, dist-esm/queryExecutionContext/pipelinedQueryExecutionContext.js, dist-esm/request/request.js, dist-esm/request/RequestHandler.js, dist-esm/ChangeFeedIterator.js, dist-esm/routing/smartRoutingMapProvider.js, dist-esm/queryExecutionContext/EndpointComponent/AggregateEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderByEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OffsetLimitEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/OrderedDistinctEndpointComponent.js, dist-esm/queryExecutionContext/EndpointComponent/UnorderedDistinctEndpointComponent.js, dist-esm/retry/retryUtility.js, dist-esm/routing/partitionKeyRangeCache.js, dist-esm/retry/defaultRetryPolicy.js, dist-esm/retry/endpointDiscoveryRetryPolicy.js, dist-esm/retry/resourceThrottleRetryPolicy.js, dist-esm/retry/sessionRetryPolicy.js) @azure/cosmos-sign (imported by dist-esm/auth.js) universal-user-agent (imported by dist-esm/common/platform.js) uuid/v4 (imported by dist-esm/ClientContext.js, dist-esm/client/Item/Items.js) @@ -125,8 +126,6 @@ atob (guessing 'atob') (!) Circular dependency: dist-esm/index.js -> dist-esm/CosmosClient.js -> dist-esm/client/Database/index.js -> dist-esm/client/Database/Database.js -> dist-esm/client/Container/index.js -> dist-esm/client/Container/Container.js -> dist-esm/client/Script/Scripts.js -> dist-esm/index.js (!) Circular dependency: dist-esm/request/RequestHandler.js -> dist-esm/retry/retryUtility.js -> dist-esm/request/RequestHandler.js created dist/index.js in ?s -@azure/event-hubs (? seconds) -Warning: You have changed the public API signature for this project. Updating review/event-hubs.api.md @azure/service-bus (? seconds) Warning: You have changed the public API signature for this project. Updating review/service-bus.api.md ================================ @@ -136,6 +135,5 @@ rush rebuild ( ? seconds) Standard error: XX of XX: [@azure/cosmos] completed with warnings in ? seconds -XX of XX: [@azure/event-hubs] completed with warnings in ? seconds XX of XX: [@azure/service-bus] completed with warnings in ? seconds Project(s) succeeded with warnings diff --git a/tests/baselines/reference/docker/office-ui-fabric.log b/tests/baselines/reference/docker/office-ui-fabric.log index f2b990e5b4e..359cd2630f8 100644 --- a/tests/baselines/reference/docker/office-ui-fabric.log +++ b/tests/baselines/reference/docker/office-ui-fabric.log @@ -84,7 +84,6 @@ Standard output: @uifabric/merge-styles: PASS src/Stylesheet.test.ts @uifabric/merge-styles: PASS src/extractStyleParts.test.ts @uifabric/merge-styles: PASS src/server.test.ts -@uifabric/merge-styles: PASS src/fontFace.test.ts @uifabric/merge-styles: [XX:XX:XX XM] ■ Extracting Public API surface from '/office-ui-fabric-react/packages/merge-styles/lib/index.d.ts' @uifabric/merge-styles: Done in ?s. @uifabric/jest-serializer-merge-styles: yarn run vX.X.X @@ -215,6 +214,7 @@ Standard output: @uifabric/foundation: [XX:XX:XX XM] ■ Webpack Config Path: /office-ui-fabric-react/packages/foundation/webpack.config.js @uifabric/foundation: Webpack version: 4.29.5 @uifabric/foundation: FAIL src/slots.test.tsx +@uifabric/foundation: PASS src/next/composed.test.tsx @uifabric/foundation: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. diff --git a/tests/baselines/reference/user/axios-src.log b/tests/baselines/reference/user/axios-src.log index 6d90ef3ca83..adc8d7e0a48 100644 --- a/tests/baselines/reference/user/axios-src.log +++ b/tests/baselines/reference/user/axios-src.log @@ -1,24 +1,24 @@ Exit Code: 1 Standard output: -lib/adapters/http.js(12,19): error TS2732: Cannot find module './../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension -lib/adapters/http.js(85,22): error TS2345: Argument of type 'string | undefined' is not assignable to parameter of type 'string'. +lib/adapters/http.js(13,19): error TS2732: Cannot find module './../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension +lib/adapters/http.js(87,22): error TS2345: Argument of type 'string | undefined' is not assignable to parameter of type 'string'. Type 'undefined' is not assignable to type 'string'. -lib/adapters/http.js(121,17): error TS2532: Object is possibly 'undefined'. -lib/adapters/http.js(121,40): error TS2532: Object is possibly 'undefined'. -lib/adapters/http.js(122,17): error TS2531: Object is possibly 'null'. -lib/adapters/http.js(122,54): error TS2531: Object is possibly 'null'. -lib/adapters/http.js(122,54): error TS2532: Object is possibly 'undefined'. -lib/adapters/http.js(221,23): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. -lib/adapters/http.js(227,44): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. -lib/adapters/http.js(233,13): error TS2322: Type 'string' is not assignable to type 'Buffer'. -lib/adapters/http.js(245,40): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. -lib/adapters/http.js(269,42): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. -lib/adapters/xhr.js(62,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. -lib/adapters/xhr.js(74,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. -lib/adapters/xhr.js(81,51): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. -lib/adapters/xhr.js(84,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. -lib/adapters/xhr.js(93,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. -lib/adapters/xhr.js(163,9): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. +lib/adapters/http.js(123,17): error TS2532: Object is possibly 'undefined'. +lib/adapters/http.js(123,40): error TS2532: Object is possibly 'undefined'. +lib/adapters/http.js(124,17): error TS2531: Object is possibly 'null'. +lib/adapters/http.js(124,54): error TS2531: Object is possibly 'null'. +lib/adapters/http.js(124,54): error TS2532: Object is possibly 'undefined'. +lib/adapters/http.js(223,23): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. +lib/adapters/http.js(229,44): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. +lib/adapters/http.js(235,13): error TS2322: Type 'string' is not assignable to type 'Buffer'. +lib/adapters/http.js(247,40): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. +lib/adapters/http.js(271,42): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. +lib/adapters/xhr.js(64,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. +lib/adapters/xhr.js(76,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. +lib/adapters/xhr.js(83,51): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. +lib/adapters/xhr.js(86,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. +lib/adapters/xhr.js(95,7): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. +lib/adapters/xhr.js(165,9): error TS2322: Type 'null' is not assignable to type 'XMLHttpRequest'. lib/axios.js(23,9): error TS2554: Expected 3 arguments, but got 2. lib/axios.js(25,3): error TS2739: Type '(...args: any[]) => any' is missing the following properties from type 'Axios': defaults, interceptors, request, getUri lib/axios.js(32,7): error TS2339: Property 'Axios' does not exist on type 'Axios'. diff --git a/tests/baselines/reference/user/prettier.log b/tests/baselines/reference/user/prettier.log index 65a671bd378..7d8afa33cd2 100644 --- a/tests/baselines/reference/user/prettier.log +++ b/tests/baselines/reference/user/prettier.log @@ -206,47 +206,47 @@ src/language-js/printer-estree.js(400,9): error TS2769: No overload matches this Overload 2 of 2, '(...items: ConcatArray[]): never[]', gave the following error. Argument of type '{ type: string; parts: any; } | { type: string; contents: any; n: any; }' is not assignable to parameter of type 'ConcatArray'. Type '{ type: string; parts: any; }' is not assignable to type 'ConcatArray'. -src/language-js/printer-estree.js(1473,28): error TS2769: No overload matches this call. +src/language-js/printer-estree.js(1478,28): error TS2769: No overload matches this call. Overload 1 of 2, '(...items: ConcatArray[]): (string | { type: string; id: any; contents: any; break: boolean; expandedStates: any; })[]', gave the following error. Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'ConcatArray'. Type '{ type: string; parts: any; }' is missing the following properties from type 'ConcatArray': length, join, slice Overload 2 of 2, '(...items: (string | { type: string; id: any; contents: any; break: boolean; expandedStates: any; } | ConcatArray)[]): (string | { ...; })[]', gave the following error. Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'string | { type: string; id: any; contents: any; break: boolean; expandedStates: any; } | ConcatArray'. Type '{ type: string; parts: any; }' is missing the following properties from type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }': id, contents, break, expandedStates -src/language-js/printer-estree.js(1906,20): error TS2345: Argument of type '" "' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. -src/language-js/printer-estree.js(1908,20): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. -src/language-js/printer-estree.js(1910,18): error TS2345: Argument of type '"while ("' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. -src/language-js/printer-estree.js(1919,9): error TS2345: Argument of type '")"' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. -src/language-js/printer-estree.js(3465,11): error TS2769: No overload matches this call. +src/language-js/printer-estree.js(1911,20): error TS2345: Argument of type '" "' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. +src/language-js/printer-estree.js(1913,20): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. +src/language-js/printer-estree.js(1915,18): error TS2345: Argument of type '"while ("' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. +src/language-js/printer-estree.js(1924,9): error TS2345: Argument of type '")"' is not assignable to parameter of type '{ type: string; id: any; contents: any; break: boolean; expandedStates: any; }'. +src/language-js/printer-estree.js(3470,11): error TS2769: No overload matches this call. Overload 1 of 2, '(...items: ConcatArray[]): never[]', gave the following error. Argument of type 'never[] | { type: string; parts: any; }' is not assignable to parameter of type 'ConcatArray'. Type '{ type: string; parts: any; }' is not assignable to type 'ConcatArray'. Overload 2 of 2, '(...items: ConcatArray[]): never[]', gave the following error. Argument of type 'never[] | { type: string; parts: any; }' is not assignable to parameter of type 'ConcatArray'. Type '{ type: string; parts: any; }' is not assignable to type 'ConcatArray'. -src/language-js/printer-estree.js(3894,22): error TS2345: Argument of type 'any' is not assignable to parameter of type 'never'. -src/language-js/printer-estree.js(3961,14): error TS2339: Property 'comments' does not exist on type 'Expression'. +src/language-js/printer-estree.js(3899,22): error TS2345: Argument of type 'any' is not assignable to parameter of type 'never'. +src/language-js/printer-estree.js(3966,14): error TS2339: Property 'comments' does not exist on type 'Expression'. Property 'comments' does not exist on type 'Identifier'. -src/language-js/printer-estree.js(3973,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"OptionalMemberExpression"' have no overlap. -src/language-js/printer-estree.js(3974,13): error TS2339: Property 'property' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. +src/language-js/printer-estree.js(3978,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"OptionalMemberExpression"' have no overlap. +src/language-js/printer-estree.js(3979,13): error TS2339: Property 'property' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. Property 'property' does not exist on type 'SimpleLiteral'. -src/language-js/printer-estree.js(3974,52): error TS2339: Property 'property' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. +src/language-js/printer-estree.js(3979,52): error TS2339: Property 'property' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. Property 'property' does not exist on type 'SimpleLiteral'. -src/language-js/printer-estree.js(3979,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"OptionalMemberExpression"' have no overlap. -src/language-js/printer-estree.js(3981,29): error TS2339: Property 'object' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. +src/language-js/printer-estree.js(3984,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"OptionalMemberExpression"' have no overlap. +src/language-js/printer-estree.js(3986,29): error TS2339: Property 'object' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. Property 'object' does not exist on type 'SimpleLiteral'. -src/language-js/printer-estree.js(3982,22): error TS2339: Property 'comments' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. +src/language-js/printer-estree.js(3987,22): error TS2339: Property 'comments' does not exist on type 'SimpleLiteral | RegExpLiteral | FunctionExpression | ArrowFunctionExpression | ArrayExpression | ObjectExpression | YieldExpression | UnaryExpression | UpdateExpression | ... 12 more ... | AwaitExpression'. Property 'comments' does not exist on type 'SimpleLiteral'. -src/language-js/printer-estree.js(3988,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"Identifier"' have no overlap. -src/language-js/printer-estree.js(3989,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"ThisExpression"' have no overlap. -src/language-js/printer-estree.js(4193,23): error TS2532: Object is possibly 'undefined'. -src/language-js/printer-estree.js(4194,24): error TS2532: Object is possibly 'undefined'. -src/language-js/printer-estree.js(4550,5): error TS2345: Argument of type '"" | { type: string; parts: any; } | { type: string; contents: any; }' is not assignable to parameter of type 'string'. +src/language-js/printer-estree.js(3993,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"Identifier"' have no overlap. +src/language-js/printer-estree.js(3994,9): error TS2367: This condition will always return 'false' since the types '"FunctionExpression" | "ClassExpression" | "ObjectExpression" | "TaggedTemplateExpression" | "CallExpression" | "ConditionalExpression" | "UpdateExpression" | "SequenceExpression" | ... 11 more ... | "MetaProperty"' and '"ThisExpression"' have no overlap. +src/language-js/printer-estree.js(4198,23): error TS2532: Object is possibly 'undefined'. +src/language-js/printer-estree.js(4199,24): error TS2532: Object is possibly 'undefined'. +src/language-js/printer-estree.js(4555,5): error TS2345: Argument of type '"" | { type: string; parts: any; } | { type: string; contents: any; }' is not assignable to parameter of type 'string'. Type '{ type: string; parts: any; }' is not assignable to type 'string'. -src/language-js/printer-estree.js(4554,16): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'string'. -src/language-js/printer-estree.js(4596,9): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'string'. -src/language-js/printer-estree.js(4898,9): error TS2554: Expected 0-2 arguments, but got 3. -src/language-js/printer-estree.js(6105,7): error TS2769: No overload matches this call. +src/language-js/printer-estree.js(4559,16): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'string'. +src/language-js/printer-estree.js(4601,9): error TS2345: Argument of type '{ type: string; parts: any; }' is not assignable to parameter of type 'string'. +src/language-js/printer-estree.js(4903,9): error TS2554: Expected 0-2 arguments, but got 3. +src/language-js/printer-estree.js(6110,7): error TS2769: No overload matches this call. Overload 1 of 2, '(...items: ConcatArray<(childPath: any) => any>[]): ((childPath: any) => any)[]', gave the following error. Argument of type '(string | number)[]' is not assignable to parameter of type 'ConcatArray<(childPath: any) => any>'. Types of property 'slice' are incompatible. diff --git a/tests/cases/user/axios-src/axios-src b/tests/cases/user/axios-src/axios-src index 98e4acd893f..f0f68afb613 160000 --- a/tests/cases/user/axios-src/axios-src +++ b/tests/cases/user/axios-src/axios-src @@ -1 +1 @@ -Subproject commit 98e4acd893fe024ae9e6074894c6164802b3af63 +Subproject commit f0f68afb613fcce97e81fbb3731ab0f65b9b9864 diff --git a/tests/cases/user/prettier/prettier b/tests/cases/user/prettier/prettier index 223443c057e..fd6ad2a623b 160000 --- a/tests/cases/user/prettier/prettier +++ b/tests/cases/user/prettier/prettier @@ -1 +1 @@ -Subproject commit 223443c057e64ca04cda5c0f37f5d15daaf69337 +Subproject commit fd6ad2a623be5aed12b4718a6d08afbbdd4d84f6 From bc7413e5570f2ec22c77b262c443170bf802b0bd Mon Sep 17 00:00:00 2001 From: csigs Date: Fri, 6 Sep 2019 23:34:59 +0000 Subject: [PATCH 3/3] LEGO: check in for master to temporary branch. --- .../CHS/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../CHS/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../CHT/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../CHT/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../CSY/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../CSY/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../DEU/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../DEU/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../ESN/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../ESN/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../FRA/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../FRA/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../ITA/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../ITA/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../JPN/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../JPN/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../KOR/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../KOR/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../PLK/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../PLK/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../PTB/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../PTB/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../RUS/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../RUS/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ .../TRK/Targets/ProjectItemsSchema.xaml.lcl | 27 + .../TRK/Targets/TypeScriptCompile.xaml.lcl | 138 ++++ .../TypeScriptProjectProperties.xaml.lcl | 336 +++++++++ .../TypeScriptDebugEngine.dll.lcl | 96 +++ ...Analysis.TypeScript.EditorFeatures.dll.lcl | 663 ++++++++++++++++++ .../TypeScriptTasks/TypeScript.Tasks.dll.lcl | 147 ++++ 78 files changed, 18291 insertions(+) create mode 100644 loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/CSY/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/CSY/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/CSY/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/CSY/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/DEU/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/DEU/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/DEU/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/DEU/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/DEU/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/DEU/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/ESN/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/ESN/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/ESN/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/ESN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/ESN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/ESN/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/FRA/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/FRA/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/FRA/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/FRA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/FRA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/FRA/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/ITA/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/ITA/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/ITA/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/ITA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/ITA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/ITA/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/JPN/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/JPN/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/JPN/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/JPN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/JPN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/JPN/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/KOR/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/KOR/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/KOR/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/KOR/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/KOR/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/KOR/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/PLK/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/PLK/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/PLK/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/PLK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/PLK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/PLK/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/PTB/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/PTB/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/PTB/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/RUS/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/RUS/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/RUS/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/RUS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/RUS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/RUS/TypeScriptTasks/TypeScript.Tasks.dll.lcl create mode 100644 loc/lcl/TRK/Targets/ProjectItemsSchema.xaml.lcl create mode 100644 loc/lcl/TRK/Targets/TypeScriptCompile.xaml.lcl create mode 100644 loc/lcl/TRK/Targets/TypeScriptProjectProperties.xaml.lcl create mode 100644 loc/lcl/TRK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl create mode 100644 loc/lcl/TRK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl create mode 100644 loc/lcl/TRK/TypeScriptTasks/TypeScript.Tasks.dll.lcl diff --git a/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..2844afb90c9 --- /dev/null +++ b/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..07399287fdb --- /dev/null +++ b/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..b56504045ea --- /dev/null +++ b/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..b183d38a2a3 --- /dev/null +++ b/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..c82d7306134 --- /dev/null +++ b/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..44152dc93eb --- /dev/null +++ b/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..16a811e9f27 --- /dev/null +++ b/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..efb824ca0e0 --- /dev/null +++ b/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..c7c2d26612a --- /dev/null +++ b/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..596155fc923 --- /dev/null +++ b/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..e67212676e9 --- /dev/null +++ b/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..7f9c2d127e7 --- /dev/null +++ b/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..52fde4fdf94 --- /dev/null +++ b/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..9836cf44455 --- /dev/null +++ b/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/CSY/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..09790768a21 --- /dev/null +++ b/loc/lcl/CSY/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/CSY/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..cb698466702 --- /dev/null +++ b/loc/lcl/CSY/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/CSY/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..526c6c93510 --- /dev/null +++ b/loc/lcl/CSY/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/CSY/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/CSY/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..3c734a41799 --- /dev/null +++ b/loc/lcl/CSY/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/DEU/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..ccccbb359d9 --- /dev/null +++ b/loc/lcl/DEU/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/DEU/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..b84af08d872 --- /dev/null +++ b/loc/lcl/DEU/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/DEU/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..0afe73b3641 --- /dev/null +++ b/loc/lcl/DEU/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/DEU/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..69553fe467f --- /dev/null +++ b/loc/lcl/DEU/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/DEU/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..1c118b961aa --- /dev/null +++ b/loc/lcl/DEU/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/DEU/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/DEU/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..bea2f751a04 --- /dev/null +++ b/loc/lcl/DEU/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/ESN/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..9b733029f85 --- /dev/null +++ b/loc/lcl/ESN/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/ESN/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..1bbfee9008f --- /dev/null +++ b/loc/lcl/ESN/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/ESN/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..05b08b670a3 --- /dev/null +++ b/loc/lcl/ESN/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/ESN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..4eab4539661 --- /dev/null +++ b/loc/lcl/ESN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/ESN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..b3aa55beccf --- /dev/null +++ b/loc/lcl/ESN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ESN/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/ESN/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..e508bc7b2d6 --- /dev/null +++ b/loc/lcl/ESN/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/FRA/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..b2f88c68e42 --- /dev/null +++ b/loc/lcl/FRA/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/FRA/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..01ca04dcea0 --- /dev/null +++ b/loc/lcl/FRA/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/FRA/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..e933238a238 --- /dev/null +++ b/loc/lcl/FRA/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/FRA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..24a58e48061 --- /dev/null +++ b/loc/lcl/FRA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/FRA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..5f9a8ec8c1e --- /dev/null +++ b/loc/lcl/FRA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/FRA/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/FRA/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..c3d543792a2 --- /dev/null +++ b/loc/lcl/FRA/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/ITA/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..88801821fc2 --- /dev/null +++ b/loc/lcl/ITA/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/ITA/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..80f14000294 --- /dev/null +++ b/loc/lcl/ITA/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/ITA/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..5746ea0c437 --- /dev/null +++ b/loc/lcl/ITA/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/ITA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..1a8941cd60c --- /dev/null +++ b/loc/lcl/ITA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/ITA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..e1066df6a80 --- /dev/null +++ b/loc/lcl/ITA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/ITA/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/ITA/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..3767cae2e04 --- /dev/null +++ b/loc/lcl/ITA/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/JPN/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..7f73ecad707 --- /dev/null +++ b/loc/lcl/JPN/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/JPN/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..a0413ae2c3b --- /dev/null +++ b/loc/lcl/JPN/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/JPN/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..26ab78a38e3 --- /dev/null +++ b/loc/lcl/JPN/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/JPN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..7d1ea31712b --- /dev/null +++ b/loc/lcl/JPN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/JPN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..47543238ca6 --- /dev/null +++ b/loc/lcl/JPN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/JPN/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/JPN/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..f74f6fe0138 --- /dev/null +++ b/loc/lcl/JPN/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/KOR/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..ba365737850 --- /dev/null +++ b/loc/lcl/KOR/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/KOR/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..7df46b285ca --- /dev/null +++ b/loc/lcl/KOR/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/KOR/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..703b410b521 --- /dev/null +++ b/loc/lcl/KOR/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/KOR/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..8bec4c8ed47 --- /dev/null +++ b/loc/lcl/KOR/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/KOR/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..1275f1bc864 --- /dev/null +++ b/loc/lcl/KOR/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/KOR/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/KOR/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..175379379b7 --- /dev/null +++ b/loc/lcl/KOR/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/PLK/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..2adb5353263 --- /dev/null +++ b/loc/lcl/PLK/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/PLK/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..ed3a345b6fd --- /dev/null +++ b/loc/lcl/PLK/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/PLK/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..0649e32735d --- /dev/null +++ b/loc/lcl/PLK/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/PLK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..8e312dec9d0 --- /dev/null +++ b/loc/lcl/PLK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/PLK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..70c511b36f0 --- /dev/null +++ b/loc/lcl/PLK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PLK/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/PLK/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..f6cae0d1ae5 --- /dev/null +++ b/loc/lcl/PLK/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..881c7897bcc --- /dev/null +++ b/loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..71862807e62 --- /dev/null +++ b/loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..664b4993b41 --- /dev/null +++ b/loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/PTB/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..c3109ab3849 --- /dev/null +++ b/loc/lcl/PTB/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/PTB/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..c8b455a0b2f --- /dev/null +++ b/loc/lcl/PTB/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/PTB/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/PTB/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..fbd85f276ae --- /dev/null +++ b/loc/lcl/PTB/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/RUS/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..740b3e497c9 --- /dev/null +++ b/loc/lcl/RUS/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/RUS/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..af83f104867 --- /dev/null +++ b/loc/lcl/RUS/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/RUS/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..069c941e1bb --- /dev/null +++ b/loc/lcl/RUS/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/RUS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..0c63c22d16b --- /dev/null +++ b/loc/lcl/RUS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/RUS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..63a1494eca5 --- /dev/null +++ b/loc/lcl/RUS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/RUS/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/RUS/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..bcfa78f2876 --- /dev/null +++ b/loc/lcl/RUS/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/Targets/ProjectItemsSchema.xaml.lcl b/loc/lcl/TRK/Targets/ProjectItemsSchema.xaml.lcl new file mode 100644 index 00000000000..c2cc78ae4e3 --- /dev/null +++ b/loc/lcl/TRK/Targets/ProjectItemsSchema.xaml.lcl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/Targets/TypeScriptCompile.xaml.lcl b/loc/lcl/TRK/Targets/TypeScriptCompile.xaml.lcl new file mode 100644 index 00000000000..ddda9ef6978 --- /dev/null +++ b/loc/lcl/TRK/Targets/TypeScriptCompile.xaml.lcl @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/Targets/TypeScriptProjectProperties.xaml.lcl b/loc/lcl/TRK/Targets/TypeScriptProjectProperties.xaml.lcl new file mode 100644 index 00000000000..8eb28f3d065 --- /dev/null +++ b/loc/lcl/TRK/Targets/TypeScriptProjectProperties.xaml.lcl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl b/loc/lcl/TRK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl new file mode 100644 index 00000000000..137e962b812 --- /dev/null +++ b/loc/lcl/TRK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl b/loc/lcl/TRK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl new file mode 100644 index 00000000000..4ca17517681 --- /dev/null +++ b/loc/lcl/TRK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element from your project file.]]> + + + + + + element from your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/lcl/TRK/TypeScriptTasks/TypeScript.Tasks.dll.lcl b/loc/lcl/TRK/TypeScriptTasks/TypeScript.Tasks.dll.lcl new file mode 100644 index 00000000000..d5f37725d5f --- /dev/null +++ b/loc/lcl/TRK/TypeScriptTasks/TypeScript.Tasks.dll.lcl @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + element in your project file.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file