chore(typescript): fixes dart failures and linter

Closes #4359
This commit is contained in:
vsavkin
2015-09-25 12:58:00 -07:00
committed by Victor Savkin
parent 7a53f82516
commit 5bf6a3af15
21 changed files with 293 additions and 178 deletions

View File

@ -19,7 +19,7 @@ export class ClientMessageBrokerFactory {
/**
* @private
*/
constructor(private _messageBus: MessageBus, protected _serializer: Serializer) {}
constructor(private _messageBus: MessageBus, public _serializer: Serializer) {}
/**
* Initializes the given channel and attaches a new {@link ClientMessageBroker} to it.
@ -37,7 +37,7 @@ export class ClientMessageBroker {
/**
* @private
*/
constructor(messageBus: MessageBus, protected _serializer: Serializer, public channel) {
constructor(messageBus: MessageBus, public _serializer: Serializer, public channel) {
this._sink = messageBus.to(channel);
var source = messageBus.from(channel);
ObservableWrapper.subscribe(source,

View File

@ -15,7 +15,7 @@ export class ServiceMessageBrokerFactory {
/**
* @private
*/
constructor(private _messageBus: MessageBus, protected _serializer: Serializer) {}
constructor(private _messageBus: MessageBus, public _serializer: Serializer) {}
/**
* Initializes the given channel and attaches a new {@link ServiceMessageBroker} to it.