Skip to content

Commit

Permalink
bdd61c7 fix(core): replace assertion with more intentional error (#52…
Browse files Browse the repository at this point in the history
…234)
  • Loading branch information
alxhub committed Oct 27, 2023
1 parent c07a2df commit 3ca6e1f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions BUILD_INFO
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Thu Oct 26 21:18:30 UTC 2023
78888190630fc1a97edb379dc03c9235cf95d7bd
Fri Oct 27 18:48:13 UTC 2023
bdd61c768a28b56c68634b99c036986499829f45
20 changes: 10 additions & 10 deletions bundles/language-service.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* @license Angular v17.1.0-next.0+sha-7888819
* @license Angular v17.1.0-next.0+sha-bdd61c7
* Copyright Google LLC All Rights Reserved.
* License: MIT
*/
Expand Down Expand Up @@ -29832,7 +29832,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
new Version('17.1.0-next.0+sha-7888819');
new Version('17.1.0-next.0+sha-bdd61c7');

/**
* @license
Expand Down Expand Up @@ -29978,7 +29978,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
function compileDeclareClassMetadata(metadata) {
const definitionMap = new DefinitionMap();
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$6));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
definitionMap.set('type', metadata.type);
definitionMap.set('decorators', metadata.decorators);
Expand Down Expand Up @@ -30100,7 +30100,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
// in 16.1 is actually used.
const minVersion = hasTransformFunctions ? MINIMUM_PARTIAL_LINKER_VERSION$5 : '14.0.0';
definitionMap.set('minVersion', literal$1(minVersion));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
// e.g. `type: MyDirective`
definitionMap.set('type', meta.type.value);
if (meta.isStandalone) {
Expand Down Expand Up @@ -30388,7 +30388,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
function compileDeclareFactoryFunction(meta) {
const definitionMap = new DefinitionMap();
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$4));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
definitionMap.set('type', meta.type.value);
definitionMap.set('deps', compileDependencies(meta.deps));
Expand Down Expand Up @@ -30430,7 +30430,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
function createInjectableDefinitionMap(meta) {
const definitionMap = new DefinitionMap();
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$3));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
definitionMap.set('type', meta.type.value);
// Only generate providedIn property if it has a non-null value
Expand Down Expand Up @@ -30488,7 +30488,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
function createInjectorDefinitionMap(meta) {
const definitionMap = new DefinitionMap();
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$2));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
definitionMap.set('type', meta.type.value);
definitionMap.set('providers', meta.providers);
Expand Down Expand Up @@ -30528,7 +30528,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
}
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$1));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
definitionMap.set('type', meta.type.value);
// We only generate the keys in the metadata if the arrays contain values.
Expand Down Expand Up @@ -30586,7 +30586,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
function createPipeDefinitionMap(meta) {
const definitionMap = new DefinitionMap();
definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-7888819'));
definitionMap.set('version', literal$1('17.1.0-next.0+sha-bdd61c7'));
definitionMap.set('ngImport', importExpr(Identifiers.core));
// e.g. `type: MyPipe`
definitionMap.set('type', meta.type.value);
Expand Down Expand Up @@ -30621,7 +30621,7 @@ define(['module', 'exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
new Version('17.1.0-next.0+sha-7888819');
new Version('17.1.0-next.0+sha-bdd61c7');

/**
* @license
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular/language-service",
"version": "17.1.0-next.0+sha-7888819",
"version": "17.1.0-next.0+sha-bdd61c7",
"description": "Angular - language services",
"main": "./index.js",
"typings": "./index.d.ts",
Expand Down

0 comments on commit 3ca6e1f

Please sign in to comment.