style: make internal members accessibility explicit

This commit is contained in:
Joao Dias 2016-10-23 23:07:33 +02:00 committed by vsavkin
parent 5a3d7a62a2
commit 5494169fb4
10 changed files with 16 additions and 16 deletions

View File

@ -64,8 +64,8 @@ function measureWrapper(func, desc) {
class MultiplyDirectiveResolver extends DirectiveResolver { class MultiplyDirectiveResolver extends DirectiveResolver {
_multiplyBy: number; private _multiplyBy: number;
_cache = new Map<Type, ViewMetadata>(); private _cache = new Map<Type, ViewMetadata>();
constructor(multiple: number, components: Type[]) { constructor(multiple: number, components: Type[]) {
super(); super();
@ -73,7 +73,7 @@ class MultiplyDirectiveResolver extends DirectiveResolver {
components.forEach(c => this._fillCache(c)); components.forEach(c => this._fillCache(c));
} }
_fillCache(component: Type) { private _fillCache(component: Type) {
var view = super.resolve(component); var view = super.resolve(component);
var multipliedTemplates = new Array(this._multiplyBy); var multipliedTemplates = new Array(this._multiplyBy);
for (var i = 0; i < this._multiplyBy; ++i) { for (var i = 0; i < this._multiplyBy; ++i) {

View File

@ -74,7 +74,7 @@ export class App {
} }
// Puts a marker indicating that the test is finished. // Puts a marker indicating that the test is finished.
_scheduleFinishedMarker() { private _scheduleFinishedMarker() {
var existingMarker = this._locateFinishedMarker(); var existingMarker = this._locateFinishedMarker();
if (isPresent(existingMarker)) { if (isPresent(existingMarker)) {
// Nothing to do, the marker is already there // Nothing to do, the marker is already there
@ -88,7 +88,7 @@ export class App {
}, 0); }, 0);
} }
_locateFinishedMarker() { return DOM.querySelector(document.body, '#done'); } private _locateFinishedMarker() { return DOM.querySelector(document.body, '#done'); }
_getScrollDiv() { return DOM.query('body /deep/ #scrollDiv'); } private _getScrollDiv() { return DOM.query('body /deep/ #scrollDiv'); }
} }

View File

@ -71,7 +71,7 @@ export class Stage {
</div>` </div>`
}) })
export class StageButtonsComponent extends HasStyle { export class StageButtonsComponent extends HasStyle {
_offering: Offering; private _offering: Offering;
stages: Stage[]; stages: Stage[];
get offering(): Offering { return this._offering; } get offering(): Offering { return this._offering; }
@ -86,7 +86,7 @@ export class StageButtonsComponent extends HasStyle {
this._computeStageButtons(); this._computeStageButtons();
} }
_computeStageButtons() { private _computeStageButtons() {
var disabled = true; var disabled = true;
this.stages = STATUS_LIST this.stages = STATUS_LIST
.map((status) => { .map((status) => {

View File

@ -60,7 +60,7 @@ export class CustomDate {
} }
export class RawEntity { export class RawEntity {
_data: Map<any, any>; private _data: Map<any, any>;
constructor() { this._data = new Map(); } constructor() { this._data = new Map(); }
@ -101,7 +101,7 @@ export class RawEntity {
return target.remove(last); return target.remove(last);
} }
_resolve(pieces, start) { private _resolve(pieces, start) {
var cur = start; var cur = start;
for (var i = 0; i < pieces.length; i++) { for (var i = 0; i < pieces.length; i++) {
cur = cur[pieces[i]]; cur = cur[pieces[i]];

View File

@ -33,7 +33,7 @@ import {ScrollItemComponent} from './scroll_item';
</div>` </div>`
}) })
export class ScrollAreaComponent { export class ScrollAreaComponent {
_fullList: Offering[]; private _fullList: Offering[];
visibleItems: Offering[]; visibleItems: Offering[];
viewPortHeight: number; viewPortHeight: number;

View File

@ -64,7 +64,7 @@ import {Component, animate, keyframes, state, style, transition, trigger} from '
}) })
export class AnimateApp { export class AnimateApp {
public items: any[] /** TODO #9100 */ = []; public items: any[] /** TODO #9100 */ = [];
public _state: any /** TODO #9100 */; private _state: any /** TODO #9100 */;
public bgStatus = 'focus'; public bgStatus = 'focus';

View File

@ -67,7 +67,7 @@ class ShowError {
return null; return null;
} }
_errorMessage(code: string): string { private _errorMessage(code: string): string {
var config = {'required': 'is required', 'invalidCreditCard': 'is invalid credit card number'}; var config = {'required': 'is required', 'invalidCreditCard': 'is invalid credit card number'};
return (config as any /** TODO #9100 */)[code]; return (config as any /** TODO #9100 */)[code];
} }

View File

@ -93,7 +93,7 @@ class ShowError {
return null; return null;
} }
_errorMessage(code: string): string { private _errorMessage(code: string): string {
var config = {'required': 'is required', 'invalidCreditCard': 'is invalid credit card number'}; var config = {'required': 'is required', 'invalidCreditCard': 'is invalid credit card number'};
return (config as any /** TODO #9100 */)[code]; return (config as any /** TODO #9100 */)[code];
} }

View File

@ -20,7 +20,7 @@ export class Todo extends KeyModel {
@Injectable() @Injectable()
export class TodoFactory { export class TodoFactory {
_uid: number = 0; private _uid: number = 0;
nextUid(): number { return ++this._uid; } nextUid(): number { return ++this._uid; }

View File

@ -24,7 +24,7 @@ export class Todo extends KeyModel {
@Injectable() @Injectable()
export class TodoFactory { export class TodoFactory {
_uid: number = 0; private _uid: number = 0;
nextUid(): number { return ++this._uid; } nextUid(): number { return ++this._uid; }