@angular/language-service 5.2.0-rc.0 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/language-service.umd.js +21 -18
- package/bundles/language-service.umd.js.map +1 -1
- package/bundles/language-service.umd.min.js +8 -8
- package/bundles/language-service.umd.min.js.map +1 -1
- package/esm2015/language-service.js +3 -3
- package/esm2015/language-service.js.map +1 -1
- package/esm5/language-service.js +3 -3
- package/esm5/language-service.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v5.2.0
|
|
3
|
-
* (c) 2010-
|
|
2
|
+
* @license Angular v5.2.0
|
|
3
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -59,8 +59,8 @@ var __assign = Object.assign || function __assign(t) {
|
|
|
59
59
|
};
|
|
60
60
|
|
|
61
61
|
/**
|
|
62
|
-
* @license Angular v5.2.0
|
|
63
|
-
* (c) 2010-
|
|
62
|
+
* @license Angular v5.2.0
|
|
63
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
64
64
|
* License: MIT
|
|
65
65
|
*/
|
|
66
66
|
/**
|
|
@@ -691,7 +691,7 @@ var Version = /** @class */ (function () {
|
|
|
691
691
|
/**
|
|
692
692
|
* \@stable
|
|
693
693
|
*/
|
|
694
|
-
var VERSION$1 = new Version('5.2.0
|
|
694
|
+
var VERSION$1 = new Version('5.2.0');
|
|
695
695
|
|
|
696
696
|
/**
|
|
697
697
|
* @fileoverview added by tsickle
|
|
@@ -42087,8 +42087,8 @@ function share() {
|
|
|
42087
42087
|
var share_3 = share;
|
|
42088
42088
|
|
|
42089
42089
|
/**
|
|
42090
|
-
* @license Angular v5.2.0
|
|
42091
|
-
* (c) 2010-
|
|
42090
|
+
* @license Angular v5.2.0
|
|
42091
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
42092
42092
|
* License: MIT
|
|
42093
42093
|
*/
|
|
42094
42094
|
/**
|
|
@@ -42518,7 +42518,7 @@ var Version$1 = /** @class */ (function () {
|
|
|
42518
42518
|
/**
|
|
42519
42519
|
* \@stable
|
|
42520
42520
|
*/
|
|
42521
|
-
var VERSION$2 = new Version$1('5.2.0
|
|
42521
|
+
var VERSION$2 = new Version$1('5.2.0');
|
|
42522
42522
|
|
|
42523
42523
|
/**
|
|
42524
42524
|
* @fileoverview added by tsickle
|
|
@@ -56568,6 +56568,10 @@ var bindingIndex;
|
|
|
56568
56568
|
* 2nd index is: context for function
|
|
56569
56569
|
*/
|
|
56570
56570
|
var cleanup;
|
|
56571
|
+
/**
|
|
56572
|
+
* Index in the data array at which view hooks begin to be stored.
|
|
56573
|
+
*/
|
|
56574
|
+
var viewHookStartIndex;
|
|
56571
56575
|
/**
|
|
56572
56576
|
* Swap the current state with a new state.
|
|
56573
56577
|
*
|
|
@@ -56585,10 +56589,8 @@ function enterView(newViewState, host) {
|
|
|
56585
56589
|
data = newViewState.data;
|
|
56586
56590
|
bindingIndex = newViewState.bindingStartIndex || 0;
|
|
56587
56591
|
ngStaticData = newViewState.ngStaticData;
|
|
56588
|
-
|
|
56589
|
-
|
|
56590
|
-
(/** @type {?} */ (newViewState)).data = data = [];
|
|
56591
|
-
}
|
|
56592
|
+
creationMode = newViewState.creationMode;
|
|
56593
|
+
viewHookStartIndex = newViewState.viewHookStartIndex;
|
|
56592
56594
|
cleanup = newViewState.cleanup;
|
|
56593
56595
|
renderer = newViewState.renderer;
|
|
56594
56596
|
if (host != null) {
|
|
@@ -56611,15 +56613,16 @@ function createViewState(viewId, renderer, ngStaticData) {
|
|
|
56611
56613
|
// -1 for component views
|
|
56612
56614
|
node: /** @type {?} */ ((null)),
|
|
56613
56615
|
// until we initialize it in createNode.
|
|
56614
|
-
data:
|
|
56615
|
-
// Hack use as a marker for creationMode
|
|
56616
|
+
data: [],
|
|
56616
56617
|
ngStaticData: ngStaticData,
|
|
56617
56618
|
cleanup: null,
|
|
56618
56619
|
renderer: renderer,
|
|
56619
56620
|
child: null,
|
|
56620
56621
|
tail: null,
|
|
56621
56622
|
next: null,
|
|
56622
|
-
bindingStartIndex: null
|
|
56623
|
+
bindingStartIndex: null,
|
|
56624
|
+
creationMode: true,
|
|
56625
|
+
viewHookStartIndex: null
|
|
56623
56626
|
};
|
|
56624
56627
|
return newView;
|
|
56625
56628
|
}
|
|
@@ -56713,8 +56716,8 @@ function initViewStaticData(viewIndex, parent) {
|
|
|
56713
56716
|
var NO_CHANGE = /** @type {?} */ ({});
|
|
56714
56717
|
|
|
56715
56718
|
/**
|
|
56716
|
-
* @license Angular v5.2.0
|
|
56717
|
-
* (c) 2010-
|
|
56719
|
+
* @license Angular v5.2.0
|
|
56720
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
56718
56721
|
* License: MIT
|
|
56719
56722
|
*/
|
|
56720
56723
|
/**
|
|
@@ -59357,7 +59360,7 @@ function create(info /* ts.server.PluginCreateInfo */) {
|
|
|
59357
59360
|
/**
|
|
59358
59361
|
* @stable
|
|
59359
59362
|
*/
|
|
59360
|
-
var VERSION = new Version$1('5.2.0
|
|
59363
|
+
var VERSION = new Version$1('5.2.0');
|
|
59361
59364
|
|
|
59362
59365
|
exports.createLanguageService = createLanguageService;
|
|
59363
59366
|
exports.TypeScriptServiceHost = TypeScriptServiceHost;
|