refactor: remove lang.ts (#14837)

This commit is contained in:
Miško Hevery
2017-03-02 09:37:01 -08:00
committed by Chuck Jazdzewski
parent 84a65cf788
commit 8343fb7740
139 changed files with 406 additions and 676 deletions

View File

@ -1 +0,0 @@
../../facade/src

View File

@ -6,10 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {EventEmitter, Injectable, Type} from '@angular/core';
import {stringify} from '../../facade/lang';
import {EventEmitter, Injectable, Type, ɵstringify as stringify} from '@angular/core';
import {MessageBus} from './message_bus';
import {Serializer, SerializerTypes} from './serializer';

View File

@ -6,10 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {Injectable, RenderComponentType, RendererTypeV2, Type} from '@angular/core';
import {stringify} from '../../facade/lang';
import {Injectable, RenderComponentType, RendererTypeV2, Type, ɵstringify as stringify} from '@angular/core';
import {RenderStore} from './render_store';

View File

@ -10,7 +10,6 @@ import {Type} from '@angular/core';
import {NgZone} from '@angular/core/src/zone/ng_zone';
import {ClientMessageBroker, ClientMessageBrokerFactory_, UiArguments} from '@angular/platform-webworker/src/web_workers/shared/client_message_broker';
import {MessageBus, MessageBusSink, MessageBusSource} from '@angular/platform-webworker/src/web_workers/shared/message_bus';
import {isPresent} from '../../../src/facade/lang';
import {SpyMessageBroker} from '../worker/spies';
import {MockEventEmitter} from './mock_event_emitter';
@ -44,12 +43,12 @@ export function expectBrokerCall(
handler?: (..._: any[]) => Promise<any>| void): void {
broker.spy('runOnService').and.callFake((args: UiArguments, returnType: Type<any>) => {
expect(args.method).toEqual(methodName);
if (isPresent(vals)) {
if (vals != null) {
expect(args.args.length).toEqual(vals.length);
vals.forEach((v, i) => { expect(v).toEqual(args.args[i].value); });
}
let promise: Promise<any>|void = null;
if (isPresent(handler)) {
if (handler != null) {
const givenValues = args.args.map((arg) => arg.value);
if (givenValues.length > 0) {
promise = handler(givenValues);