Skip to content

Commit 85c862a

Browse files
committed
Upgrade to TypeScript 1.7.3
1 parent c842792 commit 85c862a

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

ng-sample/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
"grunt-ts": "5.0.0-beta.5",
4040
"nativescript-dev-typescript": "^0.2.2",
4141
"shelljs": "^0.5.3",
42-
"typescript": "^1.6.2"
42+
"typescript": "^1.7.3"
4343
},
4444
"nativescript": {
4545
"id": "org.nativescript.ngsample",
4646
"tns-android": {
47-
"version": "1.4.0"
47+
"version": "1.5.0"
4848
}
4949
}
5050
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"grunt-env": "0.4.4",
3333
"grunt-ts": "5.0.0-beta.5",
3434
"shelljs": "^0.5.3",
35-
"typescript": "1.6.2"
35+
"typescript": "1.7.3"
3636
}
3737
}

src/nativescript-angular/view_node.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,6 @@ export class ViewNode {
5252
});
5353
}
5454

55-
printTree() {
56-
let root = this;
57-
while (root.parentNode !== null) {
58-
root = root.parentNode;
59-
}
60-
root.print();
61-
}
62-
6355
get parentNativeView(): View {
6456
if (this._parentView)
6557
return this._parentView

0 commit comments

Comments
 (0)