diff --git a/modules/@angular/compiler/src/compile_metadata.ts b/modules/@angular/compiler/src/compile_metadata.ts index 05669740a1..e2ca43f3f6 100644 --- a/modules/@angular/compiler/src/compile_metadata.ts +++ b/modules/@angular/compiler/src/compile_metadata.ts @@ -8,7 +8,7 @@ import {ChangeDetectionStrategy, SchemaMetadata, Type, ViewEncapsulation} from '@angular/core'; -import {ListWrapper, MapWrapper} from './facade/collection'; +import {ListWrapper} from './facade/collection'; import {isPresent} from './facade/lang'; import {LifecycleHooks} from './private_import_core'; import {CssSelector} from './selector'; @@ -582,7 +582,7 @@ export function removeIdentifierDuplicates MapWrapper.values(loadedStylesheets)); + .then((_) => Array.from(loadedStylesheets.values())); } normalizeStylesheet(stylesheet: CompileStylesheetMetadata): CompileStylesheetMetadata { diff --git a/modules/@angular/compiler/src/offline_compiler.ts b/modules/@angular/compiler/src/offline_compiler.ts index 66ae19f5a5..8403c8ee0f 100644 --- a/modules/@angular/compiler/src/offline_compiler.ts +++ b/modules/@angular/compiler/src/offline_compiler.ts @@ -13,7 +13,7 @@ import {AnimationParser} from './animation/animation_parser'; import {CompileDirectiveMetadata, CompileIdentifierMetadata, CompileNgModuleMetadata, CompilePipeMetadata, CompileProviderMetadata, StaticSymbol, createHostComponentMeta} from './compile_metadata'; import {DirectiveNormalizer} from './directive_normalizer'; import {DirectiveWrapperCompileResult, DirectiveWrapperCompiler} from './directive_wrapper_compiler'; -import {ListWrapper, MapWrapper} from './facade/collection'; +import {ListWrapper} from './facade/collection'; import {Identifiers, resolveIdentifier, resolveIdentifierToken} from './identifiers'; import {CompileMetadataResolver} from './metadata_resolver'; import {NgModuleCompiler} from './ng_module_compiler'; @@ -51,7 +51,7 @@ export function analyzeNgModules( } }); - const ngModuleMetas = MapWrapper.values(moduleMetasByRef); + const ngModuleMetas = Array.from(moduleMetasByRef.values()); const ngModuleByPipeOrDirective = new Map(); const ngModulesByFile = new Map(); const ngDirectivesByFile = new Map(); diff --git a/modules/@angular/compiler/src/provider_analyzer.ts b/modules/@angular/compiler/src/provider_analyzer.ts index 49e9fb9a3d..1116e42528 100644 --- a/modules/@angular/compiler/src/provider_analyzer.ts +++ b/modules/@angular/compiler/src/provider_analyzer.ts @@ -8,7 +8,6 @@ import {CompileDiDependencyMetadata, CompileDirectiveMetadata, CompileNgModuleMetadata, CompileProviderMetadata, CompileQueryMetadata, CompileTokenMetadata, CompileTypeMetadata} from './compile_metadata'; -import {MapWrapper} from './facade/collection'; import {isBlank, isPresent} from './facade/lang'; import {Identifiers, resolveIdentifierToken} from './identifiers'; import {ParseError, ParseSourceSpan} from './parse_util'; @@ -60,7 +59,7 @@ export class ProviderElementContext { _resolveProvidersFromDirectives(directivesMeta, _sourceSpan, viewContext.errors); this._contentQueries = _getContentQueries(directivesMeta); var queriedTokens = new Map(); - MapWrapper.values(this._allProviders).forEach((provider) => { + Array.from(this._allProviders.values()).forEach((provider) => { this._addQueryReadsTo(provider.token, queriedTokens); }); refs.forEach((refAst) => { @@ -72,7 +71,7 @@ export class ProviderElementContext { } // create the providers that we know are eager first - MapWrapper.values(this._allProviders).forEach((provider) => { + Array.from(this._allProviders.values()).forEach((provider) => { const eager = provider.eager || isPresent(queriedTokens.get(provider.token.reference)); if (eager) { this._getOrCreateLocalProvider(provider.providerType, provider.token, true); @@ -82,12 +81,14 @@ export class ProviderElementContext { afterElement() { // collect lazy providers - MapWrapper.values(this._allProviders).forEach((provider) => { + Array.from(this._allProviders.values()).forEach((provider) => { this._getOrCreateLocalProvider(provider.providerType, provider.token, false); }); } - get transformProviders(): ProviderAst[] { return MapWrapper.values(this._transformedProviders); } + get transformProviders(): ProviderAst[] { + return Array.from(this._transformedProviders.values()); + } get transformedDirectiveAsts(): DirectiveAst[] { var sortedProviderTypes = this.transformProviders.map(provider => provider.token.identifier); @@ -296,14 +297,14 @@ export class NgModuleProviderAnalyzer { } parse(): ProviderAst[] { - MapWrapper.values(this._allProviders).forEach((provider) => { + Array.from(this._allProviders.values()).forEach((provider) => { this._getOrCreateLocalProvider(provider.token, provider.eager); }); if (this._errors.length > 0) { const errorString = this._errors.join('\n'); throw new Error(`Provider parse errors:\n${errorString}`); } - return MapWrapper.values(this._transformedProviders); + return Array.from(this._transformedProviders.values()); } private _getOrCreateLocalProvider(token: CompileTokenMetadata, eager: boolean): ProviderAst { diff --git a/modules/@angular/compiler/src/view_compiler/compile_element.ts b/modules/@angular/compiler/src/view_compiler/compile_element.ts index 5fcb028dc3..722fb8ad9d 100644 --- a/modules/@angular/compiler/src/view_compiler/compile_element.ts +++ b/modules/@angular/compiler/src/view_compiler/compile_element.ts @@ -10,7 +10,6 @@ import {CompileDiDependencyMetadata, CompileDirectiveMetadata, CompileIdentifierMetadata, CompileProviderMetadata, CompileQueryMetadata, CompileTokenMetadata} from '../compile_metadata'; import {createDiTokenExpression} from '../compiler_util/identifier_util'; import {DirectiveWrapperCompiler, DirectiveWrapperExpressions} from '../directive_wrapper_compiler'; -import {MapWrapper} from '../facade/collection'; import {isPresent} from '../facade/lang'; import {Identifiers, identifierToken, resolveIdentifier, resolveIdentifierToken} from '../identifiers'; import * as o from '../output/output_ast'; @@ -169,21 +168,23 @@ export class CompileElement extends CompileNode { // create all the provider instances, some in the view constructor, // some as getters. We rely on the fact that they are already sorted topologically. - MapWrapper.values(this._resolvedProviders).forEach((resolvedProvider) => { + Array.from(this._resolvedProviders.values()).forEach((resolvedProvider) => { const isDirectiveWrapper = resolvedProvider.providerType === ProviderAstType.Component || resolvedProvider.providerType === ProviderAstType.Directive; - var providerValueExpressions = resolvedProvider.providers.map((provider) => { - if (isPresent(provider.useExisting)) { + const providerValueExpressions = resolvedProvider.providers.map((provider) => { + if (provider.useExisting) { return this._getDependency( resolvedProvider.providerType, new CompileDiDependencyMetadata({token: provider.useExisting})); - } else if (isPresent(provider.useFactory)) { - var deps = provider.deps || provider.useFactory.diDeps; - var depsExpr = deps.map((dep) => this._getDependency(resolvedProvider.providerType, dep)); + } else if (provider.useFactory) { + const deps = provider.deps || provider.useFactory.diDeps; + const depsExpr = + deps.map((dep) => this._getDependency(resolvedProvider.providerType, dep)); return o.importExpr(provider.useFactory).callFn(depsExpr); - } else if (isPresent(provider.useClass)) { - var deps = provider.deps || provider.useClass.diDeps; - var depsExpr = deps.map((dep) => this._getDependency(resolvedProvider.providerType, dep)); + } else if (provider.useClass) { + const deps = provider.deps || provider.useClass.diDeps; + const depsExpr = + deps.map((dep) => this._getDependency(resolvedProvider.providerType, dep)); if (isDirectiveWrapper) { const directiveWrapperIdentifier = new CompileIdentifierMetadata( {name: DirectiveWrapperCompiler.dirWrapperClassName(provider.useClass)}); @@ -217,7 +218,7 @@ export class CompileElement extends CompileNode { directive.queries.forEach((queryMeta) => { this._addQuery(queryMeta, directiveInstance); }); } var queriesWithReads: _QueryWithRead[] = []; - MapWrapper.values(this._resolvedProviders).forEach((resolvedProvider) => { + Array.from(this._resolvedProviders.values()).forEach((resolvedProvider) => { var queriesForProvider = this._getQueriesFor(resolvedProvider.token); queriesWithReads.push( ...queriesForProvider.map(query => new _QueryWithRead(query, resolvedProvider.token))); @@ -225,7 +226,7 @@ export class CompileElement extends CompileNode { Object.keys(this.referenceTokens).forEach(varName => { var token = this.referenceTokens[varName]; var varValue: o.Expression; - if (isPresent(token)) { + if (token) { varValue = this.instances.get(token.reference); } else { varValue = this.renderNode; @@ -256,7 +257,7 @@ export class CompileElement extends CompileNode { } afterChildren(childNodeCount: number) { - MapWrapper.values(this._resolvedProviders).forEach((resolvedProvider) => { + Array.from(this._resolvedProviders.values()).forEach((resolvedProvider) => { // Note: afterChildren is called after recursing into children. // This is good so that an injector match in an element that is closer to a requesting element // matches first. @@ -271,11 +272,11 @@ export class CompileElement extends CompileNode { this.nodeIndex, providerChildNodeCount, resolvedProvider, providerExpr)); }); - MapWrapper.values(this._queries) + Array.from(this._queries.values()) .forEach( - (queries) => queries.forEach( - (query) => query.afterChildren( - this.view.createMethod, this.view.updateContentQueriesMethod))); + queries => queries.forEach( + q => + q.afterChildren(this.view.createMethod, this.view.updateContentQueriesMethod))); } addContentNode(ngContentIndex: number, nodeExpr: CompileViewRootNode) { @@ -289,7 +290,7 @@ export class CompileElement extends CompileNode { } getProviderTokens(): o.Expression[] { - return MapWrapper.values(this._resolvedProviders) + return Array.from(this._resolvedProviders.values()) .map((resolvedProvider) => createDiTokenExpression(resolvedProvider.token)); } diff --git a/modules/@angular/compiler/src/view_compiler/compile_view.ts b/modules/@angular/compiler/src/view_compiler/compile_view.ts index d9c5df969d..7bf7e5306f 100644 --- a/modules/@angular/compiler/src/view_compiler/compile_view.ts +++ b/modules/@angular/compiler/src/view_compiler/compile_view.ts @@ -11,7 +11,6 @@ import {CompileDirectiveMetadata, CompileIdentifierMetadata, CompilePipeMetadata import {EventHandlerVars, NameResolver} from '../compiler_util/expression_converter'; import {createPureProxy} from '../compiler_util/identifier_util'; import {CompilerConfig} from '../config'; -import {MapWrapper} from '../facade/collection'; import {isPresent} from '../facade/lang'; import {Identifiers, resolveIdentifier} from '../identifiers'; import * as o from '../output/output_ast'; @@ -153,19 +152,21 @@ export class CompileView implements NameResolver { } afterNodes() { - MapWrapper.values(this.viewQueries) + Array.from(this.viewQueries.values()) .forEach( - (queries) => queries.forEach( - (query) => query.afterChildren(this.createMethod, this.updateViewQueriesMethod))); + queries => queries.forEach( + q => q.afterChildren(this.createMethod, this.updateViewQueriesMethod))); } } function getViewType(component: CompileDirectiveMetadata, embeddedTemplateIndex: number): ViewType { if (embeddedTemplateIndex > 0) { return ViewType.EMBEDDED; - } else if (component.type.isHost) { - return ViewType.HOST; - } else { - return ViewType.COMPONENT; } + + if (component.type.isHost) { + return ViewType.HOST; + } + + return ViewType.COMPONENT; } diff --git a/modules/@angular/compiler/src/view_compiler/event_binder.ts b/modules/@angular/compiler/src/view_compiler/event_binder.ts index 8f31dbcba0..08a29cf261 100644 --- a/modules/@angular/compiler/src/view_compiler/event_binder.ts +++ b/modules/@angular/compiler/src/view_compiler/event_binder.ts @@ -9,8 +9,6 @@ import {EventHandlerVars, convertActionBinding} from '../compiler_util/expression_converter'; import {createInlineArray} from '../compiler_util/identifier_util'; import {DirectiveWrapperExpressions} from '../directive_wrapper_compiler'; -import {MapWrapper} from '../facade/collection'; -import {isPresent} from '../facade/lang'; import {Identifiers, resolveIdentifier} from '../identifiers'; import * as o from '../output/output_ast'; import {BoundEventAst, DirectiveAst} from '../template_parser/template_ast'; @@ -69,7 +67,7 @@ function subscribeToRenderEvents( function subscribeToDirectiveEvents( usedEvents: Map, directives: DirectiveAst[], compileElement: CompileElement) { - const usedEventNames = MapWrapper.keys(usedEvents); + const usedEventNames = Array.from(usedEvents.keys()); directives.forEach((dirAst) => { const dirWrapper = compileElement.directiveWrapperInstance.get(dirAst.directive.type.reference); compileElement.view.createMethod.addStmts(DirectiveWrapperExpressions.subscribe( diff --git a/modules/@angular/compiler/test/schema/schema_extractor.ts b/modules/@angular/compiler/test/schema/schema_extractor.ts index 0c36e898b3..25bee65646 100644 --- a/modules/@angular/compiler/test/schema/schema_extractor.ts +++ b/modules/@angular/compiler/test/schema/schema_extractor.ts @@ -6,8 +6,6 @@ * found in the LICENSE file at https://angular.io/license */ -import {MapWrapper} from '../../src/facade/collection'; - const SVG_PREFIX = ':svg:'; // Element | Node interfaces @@ -109,8 +107,9 @@ export function extractSchema(): Map { function assertNoMissingTags(descMap: Map): void { const extractedTags: string[] = []; - MapWrapper.keys(descMap).forEach( - (key: string) => { extractedTags.push(...key.split('|')[0].split('^')[0].split(',')); }); + Array.from(descMap.keys()).forEach((key: string) => { + extractedTags.push(...key.split('|')[0].split('^')[0].split(',')); + }); const missingTags = ALL_HTML_TAGS.split(',').filter(tag => extractedTags.indexOf(tag) == -1); diff --git a/modules/@angular/core/src/debug/debug_node.ts b/modules/@angular/core/src/debug/debug_node.ts index 756c2f611c..a2ba3c3b2d 100644 --- a/modules/@angular/core/src/debug/debug_node.ts +++ b/modules/@angular/core/src/debug/debug_node.ts @@ -7,8 +7,7 @@ */ import {Injector} from '../di'; -import {MapWrapper, Predicate} from '../facade/collection'; -import {isPresent} from '../facade/lang'; +import {Predicate} from '../facade/collection'; import {RenderDebugInfo} from '../render/api'; export class EventListener { constructor(public name: string, public callback: Function){}; } @@ -23,7 +22,7 @@ export class DebugNode { constructor(nativeNode: any, parent: DebugNode, private _debugInfo: RenderDebugInfo) { this.nativeNode = nativeNode; - if (isPresent(parent) && parent instanceof DebugElement) { + if (parent && parent instanceof DebugElement) { parent.addChild(this); } else { this.parent = null; @@ -31,23 +30,19 @@ export class DebugNode { this.listeners = []; } - get injector(): Injector { return isPresent(this._debugInfo) ? this._debugInfo.injector : null; } + get injector(): Injector { return this._debugInfo ? this._debugInfo.injector : null; } - get componentInstance(): any { - return isPresent(this._debugInfo) ? this._debugInfo.component : null; - } + get componentInstance(): any { return this._debugInfo ? this._debugInfo.component : null; } - get context(): any { return isPresent(this._debugInfo) ? this._debugInfo.context : null; } + get context(): any { return this._debugInfo ? this._debugInfo.context : null; } get references(): {[key: string]: any} { - return isPresent(this._debugInfo) ? this._debugInfo.references : null; + return this._debugInfo ? this._debugInfo.references : null; } - get providerTokens(): any[] { - return isPresent(this._debugInfo) ? this._debugInfo.providerTokens : null; - } + get providerTokens(): any[] { return this._debugInfo ? this._debugInfo.providerTokens : null; } - get source(): string { return isPresent(this._debugInfo) ? this._debugInfo.source : null; } + get source(): string { return this._debugInfo ? this._debugInfo.source : null; } } /** @@ -73,14 +68,14 @@ export class DebugElement extends DebugNode { } addChild(child: DebugNode) { - if (isPresent(child)) { + if (child) { this.childNodes.push(child); child.parent = this; } } removeChild(child: DebugNode) { - var childIndex = this.childNodes.indexOf(child); + const childIndex = this.childNodes.indexOf(child); if (childIndex !== -1) { child.parent = null; this.childNodes.splice(childIndex, 1); @@ -88,14 +83,14 @@ export class DebugElement extends DebugNode { } insertChildrenAfter(child: DebugNode, newChildren: DebugNode[]) { - var siblingIndex = this.childNodes.indexOf(child); + const siblingIndex = this.childNodes.indexOf(child); if (siblingIndex !== -1) { - var previousChildren = this.childNodes.slice(0, siblingIndex + 1); - var nextChildren = this.childNodes.slice(siblingIndex + 1); + const previousChildren = this.childNodes.slice(0, siblingIndex + 1); + const nextChildren = this.childNodes.slice(siblingIndex + 1); this.childNodes = previousChildren.concat(newChildren, nextChildren); - for (var i = 0; i < newChildren.length; ++i) { - var newChild = newChildren[i]; - if (isPresent(newChild.parent)) { + for (let i = 0; i < newChildren.length; ++i) { + const newChild = newChildren[i]; + if (newChild.parent) { newChild.parent.removeChild(newChild); } newChild.parent = this; @@ -104,30 +99,24 @@ export class DebugElement extends DebugNode { } query(predicate: Predicate): DebugElement { - var results = this.queryAll(predicate); - return results.length > 0 ? results[0] : null; + const results = this.queryAll(predicate); + return results[0] || null; } queryAll(predicate: Predicate): DebugElement[] { - var matches: DebugElement[] = []; + const matches: DebugElement[] = []; _queryElementChildren(this, predicate, matches); return matches; } queryAllNodes(predicate: Predicate): DebugNode[] { - var matches: DebugNode[] = []; + const matches: DebugNode[] = []; _queryNodeChildren(this, predicate, matches); return matches; } get children(): DebugElement[] { - var children: DebugElement[] = []; - this.childNodes.forEach((node) => { - if (node instanceof DebugElement) { - children.push(node); - } - }); - return children; + return this.childNodes.filter((node) => node instanceof DebugElement) as DebugElement[]; } triggerEventHandler(eventName: string, eventObj: any) { @@ -173,7 +162,7 @@ function _queryNodeChildren( } // Need to keep the nodes in a global Map so that multiple angular apps are supported. -var _nativeNodeToDebugNode = new Map(); +const _nativeNodeToDebugNode = new Map(); /** * @experimental @@ -183,7 +172,7 @@ export function getDebugNode(nativeNode: any): DebugNode { } export function getAllDebugNodes(): DebugNode[] { - return MapWrapper.values(_nativeNodeToDebugNode); + return Array.from(_nativeNodeToDebugNode.values()); } export function indexDebugNode(node: DebugNode) { diff --git a/modules/@angular/core/src/di/reflective_provider.ts b/modules/@angular/core/src/di/reflective_provider.ts index 837d880074..0199ddcb94 100644 --- a/modules/@angular/core/src/di/reflective_provider.ts +++ b/modules/@angular/core/src/di/reflective_provider.ts @@ -6,8 +6,6 @@ * found in the LICENSE file at https://angular.io/license */ -import {MapWrapper} from '../facade/collection'; -import {isBlank, isPresent} from '../facade/lang'; import {reflector} from '../reflection/reflection'; import {Type} from '../type'; @@ -103,16 +101,16 @@ export class ResolvedReflectiveFactory { * Resolve a single provider. */ function resolveReflectiveFactory(provider: NormalizedProvider): ResolvedReflectiveFactory { - var factoryFn: Function; - var resolvedDeps: ReflectiveDependency[]; - if (isPresent(provider.useClass)) { - var useClass = resolveForwardRef(provider.useClass); + let factoryFn: Function; + let resolvedDeps: ReflectiveDependency[]; + if (provider.useClass) { + const useClass = resolveForwardRef(provider.useClass); factoryFn = reflector.factory(useClass); resolvedDeps = _dependenciesFor(useClass); - } else if (isPresent(provider.useExisting)) { + } else if (provider.useExisting) { factoryFn = (aliasInstance: any) => aliasInstance; resolvedDeps = [ReflectiveDependency.fromKey(ReflectiveKey.get(provider.useExisting))]; - } else if (isPresent(provider.useFactory)) { + } else if (provider.useFactory) { factoryFn = provider.useFactory; resolvedDeps = constructDependencies(provider.useFactory, provider.deps); } else { @@ -137,10 +135,10 @@ function resolveReflectiveProvider(provider: NormalizedProvider): ResolvedReflec * Resolve a list of Providers. */ export function resolveReflectiveProviders(providers: Provider[]): ResolvedReflectiveProvider[] { - var normalized = _normalizeProviders(providers, []); - var resolved = normalized.map(resolveReflectiveProvider); - return MapWrapper.values( - mergeResolvedReflectiveProviders(resolved, new Map())); + const normalized = _normalizeProviders(providers, []); + const resolved = normalized.map(resolveReflectiveProvider); + const resolvedProviderMap = mergeResolvedReflectiveProviders(resolved, new Map()); + return Array.from(resolvedProviderMap.values()); } /** @@ -152,22 +150,22 @@ export function mergeResolvedReflectiveProviders( providers: ResolvedReflectiveProvider[], normalizedProvidersMap: Map): Map { - for (var i = 0; i < providers.length; i++) { - var provider = providers[i]; - var existing = normalizedProvidersMap.get(provider.key.id); - if (isPresent(existing)) { + for (let i = 0; i < providers.length; i++) { + const provider = providers[i]; + const existing = normalizedProvidersMap.get(provider.key.id); + if (existing) { if (provider.multiProvider !== existing.multiProvider) { throw new MixingMultiProvidersWithRegularProvidersError(existing, provider); } if (provider.multiProvider) { - for (var j = 0; j < provider.resolvedFactories.length; j++) { + for (let j = 0; j < provider.resolvedFactories.length; j++) { existing.resolvedFactories.push(provider.resolvedFactories[j]); } } else { normalizedProvidersMap.set(provider.key.id, provider); } } else { - var resolvedProvider: ResolvedReflectiveProvider; + let resolvedProvider: ResolvedReflectiveProvider; if (provider.multiProvider) { resolvedProvider = new ResolvedReflectiveProvider_( provider.key, provider.resolvedFactories.slice(), provider.multiProvider); @@ -204,26 +202,26 @@ export function constructDependencies( if (!dependencies) { return _dependenciesFor(typeOrFunc); } else { - var params: any[][] = dependencies.map(t => [t]); + const params: any[][] = dependencies.map(t => [t]); return dependencies.map(t => _extractToken(typeOrFunc, t, params)); } } function _dependenciesFor(typeOrFunc: any): ReflectiveDependency[] { - var params = reflector.parameters(typeOrFunc); + const params = reflector.parameters(typeOrFunc); + if (!params) return []; - if (params.some(isBlank)) { + if (params.some(p => p == null)) { throw new NoAnnotationError(typeOrFunc, params); } - return params.map((p: any[]) => _extractToken(typeOrFunc, p, params)); + return params.map(p => _extractToken(typeOrFunc, p, params)); } function _extractToken( - typeOrFunc: any /** TODO #9100 */, metadata: any /** TODO #9100 */ /*any[] | any*/, - params: any[][]): ReflectiveDependency { - var depProps: any[] /** TODO #9100 */ = []; - var token: any /** TODO #9100 */ = null; - var optional = false; + typeOrFunc: any, metadata: any[] | any, params: any[][]): ReflectiveDependency { + const depProps: any[] = []; + let token: any = null; + let optional = false; if (!Array.isArray(metadata)) { if (metadata instanceof Inject) { @@ -233,11 +231,11 @@ function _extractToken( } } - var lowerBoundVisibility: any /** TODO #9100 */ = null; - var upperBoundVisibility: any /** TODO #9100 */ = null; + let lowerBoundVisibility: any = null; + let upperBoundVisibility: any = null; - for (var i = 0; i < metadata.length; ++i) { - var paramMetadata = metadata[i]; + for (let i = 0; i < metadata.length; ++i) { + let paramMetadata = metadata[i]; if (paramMetadata instanceof Type) { token = paramMetadata; @@ -261,7 +259,7 @@ function _extractToken( token = resolveForwardRef(token); - if (isPresent(token)) { + if (token != null) { return _createDependency(token, optional, lowerBoundVisibility, upperBoundVisibility, depProps); } else { throw new NoAnnotationError(typeOrFunc, params); @@ -269,9 +267,8 @@ function _extractToken( } function _createDependency( - token: any /** TODO #9100 */, optional: any /** TODO #9100 */, - lowerBoundVisibility: any /** TODO #9100 */, upperBoundVisibility: any /** TODO #9100 */, - depProps: any /** TODO #9100 */): ReflectiveDependency { + token: any, optional: boolean, lowerBoundVisibility: any, upperBoundVisibility: any, + depProps: any[]): ReflectiveDependency { return new ReflectiveDependency( ReflectiveKey.get(token), optional, lowerBoundVisibility, upperBoundVisibility, depProps); } diff --git a/modules/@angular/core/src/testability/testability.ts b/modules/@angular/core/src/testability/testability.ts index e0e86f4aa6..0e173c6356 100644 --- a/modules/@angular/core/src/testability/testability.ts +++ b/modules/@angular/core/src/testability/testability.ts @@ -7,7 +7,6 @@ */ import {Injectable} from '../di'; -import {MapWrapper} from '../facade/collection'; import {scheduleMicroTask} from '../facade/lang'; import {NgZone} from '../zone/ng_zone'; @@ -139,9 +138,9 @@ export class TestabilityRegistry { getTestability(elem: any): Testability { return this._applications.get(elem); } - getAllTestabilities(): Testability[] { return MapWrapper.values(this._applications); } + getAllTestabilities(): Testability[] { return Array.from(this._applications.values()); } - getAllRootElements(): any[] { return MapWrapper.keys(this._applications); } + getAllRootElements(): any[] { return Array.from(this._applications.keys()); } findTestabilityInTree(elem: Node, findInAncestors: boolean = true): Testability { return _testabilityGetter.findTestabilityInTree(this, elem, findInAncestors); diff --git a/modules/@angular/core/test/testing_internal_spec.ts b/modules/@angular/core/test/testing_internal_spec.ts index d4d7f8ea47..45a42fe0cd 100644 --- a/modules/@angular/core/test/testing_internal_spec.ts +++ b/modules/@angular/core/test/testing_internal_spec.ts @@ -41,9 +41,11 @@ export function main() { }); it('should detect equality for same content', () => { - expect(MapWrapper.createFromStringMap({'a': 1})).toEqual(MapWrapper.createFromStringMap({ - 'a': 1 - })); + const m1: Map = new Map(); + m1.set('a', 1); + const m2: Map = new Map(); + m2.set('a', 1); + expect(m1).toEqual(m2); }); it('should detect missing entries', () => { @@ -59,16 +61,19 @@ export function main() { }); it('should detect additional entries', () => { - expect(MapWrapper.createFromStringMap({ - 'a': 1 - })).not.toEqual(MapWrapper.createFromStringMap({'a': 1, 'b': 1})); + const m1: Map = new Map(); + m1.set('a', 1); + const m2: Map = new Map(); + m2.set('a', 1); + m2.set('b', 2); + expect(m1).not.toEqual(m2); }); }); describe('spy objects', () => { let spyObj: any; - beforeEach(() => { spyObj = new SpyTestObj(); }); + beforeEach(() => { spyObj = new SpyTestObj(); }); it('should return a new spy func with no calls', () => { expect(spyObj.spy('someFunc')).not.toHaveBeenCalled(); }); @@ -98,8 +103,7 @@ export function main() { }); it('should support stubs', () => { - var s = SpyObject.stub({'a': 1}, {'b': 2}); - + const s = SpyObject.stub({'a': 1}, {'b': 2}); expect(s.a()).toEqual(1); expect(s.b()).toEqual(2); }); diff --git a/modules/@angular/facade/src/collection.ts b/modules/@angular/facade/src/collection.ts index e611a39d8f..6fd5d69d19 100644 --- a/modules/@angular/facade/src/collection.ts +++ b/modules/@angular/facade/src/collection.ts @@ -6,39 +6,16 @@ * found in the LICENSE file at https://angular.io/license */ -import {getSymbolIterator, isBlank, isJsObject, isPresent} from './lang'; - -// Safari doesn't implement MapIterator.next(), which is used is Traceur's polyfill of Array.from -// TODO(mlaval): remove the work around once we have a working polyfill of Array.from -const _arrayFromMap: {(m: Map, getValues: boolean): any[]} = (function() { - try { - if (((new Map()).values()).next) { - return function createArrayFromMap(m: Map, getValues: boolean): any[] { - return getValues ? (Array).from(m.values()) : (Array).from(m.keys()); - }; - } - } catch (e) { - } - return function createArrayFromMapWithForeach(m: Map, getValues: boolean): any[] { - var res = new Array(m.size), i = 0; - m.forEach((v, k) => { - res[i] = getValues ? v : k; - i++; - }); - return res; - }; -})(); +import {getSymbolIterator, isJsObject, isPresent} from './lang'; export class MapWrapper { static createFromStringMap(stringMap: {[key: string]: T}): Map { - var result = new Map(); - for (var prop in stringMap) { + const result = new Map(); + for (let prop in stringMap) { result.set(prop, stringMap[prop]); } return result; } - static keys(m: Map): K[] { return _arrayFromMap(m, false); } - static values(m: Map): V[] { return _arrayFromMap(m, true); } } /** diff --git a/modules/@angular/facade/test/collection_spec.ts b/modules/@angular/facade/test/collection_spec.ts index b2c966c636..d647e4d74e 100644 --- a/modules/@angular/facade/test/collection_spec.ts +++ b/modules/@angular/facade/test/collection_spec.ts @@ -6,7 +6,7 @@ * found in the LICENSE file at https://angular.io/license */ -import {ListWrapper, MapWrapper, StringMapWrapper} from '../src/collection'; +import {ListWrapper, StringMapWrapper} from '../src/collection'; export function main() { describe('ListWrapper', () => { @@ -35,45 +35,36 @@ export function main() { () => { expect(StringMapWrapper.equals({}, {})).toBe(true); }); it('should return true when comparing the same map', () => { - var m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; expect(StringMapWrapper.equals(m1, m1)).toBe(true); }); it('should return true when comparing different maps with the same keys and values', () => { - var m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; - var m2: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m2: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; expect(StringMapWrapper.equals(m1, m2)).toBe(true); }); it('should return false when comparing maps with different numbers of keys', () => { - var m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; - var m2: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3, 'd': 4}; + const m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m2: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3, 'd': 4}; expect(StringMapWrapper.equals(m1, m2)).toBe(false); expect(StringMapWrapper.equals(m2, m1)).toBe(false); }); it('should return false when comparing maps with different keys', () => { - var m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; - var m2: {[key: string]: number} = {'a': 1, 'b': 2, 'CC': 3}; + const m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m2: {[key: string]: number} = {'a': 1, 'b': 2, 'CC': 3}; expect(StringMapWrapper.equals(m1, m2)).toBe(false); expect(StringMapWrapper.equals(m2, m1)).toBe(false); }); it('should return false when comparing maps with different values', () => { - var m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; - var m2: {[key: string]: number} = {'a': 1, 'b': 20, 'c': 3}; + const m1: {[key: string]: number} = {'a': 1, 'b': 2, 'c': 3}; + const m2: {[key: string]: number} = {'a': 1, 'b': 20, 'c': 3}; expect(StringMapWrapper.equals(m1, m2)).toBe(false); expect(StringMapWrapper.equals(m2, m1)).toBe(false); }); }); - - describe('MapWrapper', () => { - it('should return a list of keys values', () => { - var m = new Map(); - m.set('a', 'b'); - expect(MapWrapper.keys(m)).toEqual(['a']); - expect(MapWrapper.values(m)).toEqual(['b']); - }); - }); }); } diff --git a/modules/@angular/forms/src/directives/select_control_value_accessor.ts b/modules/@angular/forms/src/directives/select_control_value_accessor.ts index e81ff430b3..ac0c534efb 100644 --- a/modules/@angular/forms/src/directives/select_control_value_accessor.ts +++ b/modules/@angular/forms/src/directives/select_control_value_accessor.ts @@ -8,7 +8,6 @@ import {Directive, ElementRef, Host, Input, OnDestroy, Optional, Renderer, forwardRef} from '@angular/core'; -import {MapWrapper} from '../facade/collection'; import {isBlank, isPresent, isPrimitive, looseIdentical} from '../facade/lang'; import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor'; @@ -108,7 +107,7 @@ export class SelectControlValueAccessor implements ControlValueAccessor { /** @internal */ _getOptionId(value: any): string { - for (let id of MapWrapper.keys(this._optionMap)) { + for (let id of Array.from(this._optionMap.keys())) { if (looseIdentical(this._optionMap.get(id), value)) return id; } return null; diff --git a/modules/@angular/forms/src/directives/select_multiple_control_value_accessor.ts b/modules/@angular/forms/src/directives/select_multiple_control_value_accessor.ts index 73c0071605..893b9da9b8 100644 --- a/modules/@angular/forms/src/directives/select_multiple_control_value_accessor.ts +++ b/modules/@angular/forms/src/directives/select_multiple_control_value_accessor.ts @@ -8,7 +8,6 @@ import {Directive, ElementRef, Host, Input, OnDestroy, OpaqueToken, Optional, Renderer, Type, forwardRef} from '@angular/core'; -import {MapWrapper} from '../facade/collection'; import {isBlank, isPresent, isPrimitive, looseIdentical} from '../facade/lang'; import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor'; @@ -114,7 +113,7 @@ export class SelectMultipleControlValueAccessor implements ControlValueAccessor /** @internal */ _getOptionId(value: any): string { - for (let id of MapWrapper.keys(this._optionMap)) { + for (let id of Array.from(this._optionMap.keys())) { if (looseIdentical(this._optionMap.get(id)._value, value)) return id; } return null; diff --git a/modules/@angular/http/src/headers.ts b/modules/@angular/http/src/headers.ts index 03906fb3a3..dc1be57ce8 100644 --- a/modules/@angular/http/src/headers.ts +++ b/modules/@angular/http/src/headers.ts @@ -6,8 +6,6 @@ * found in the LICENSE file at https://angular.io/license */ -import {MapWrapper} from '../src/facade/collection'; - /** * Polyfill for [Headers](https://developer.mozilla.org/en-US/docs/Web/API/Headers/Headers), as * specified in the [Fetch Spec](https://fetch.spec.whatwg.org/#headers-class). @@ -128,7 +126,7 @@ export class Headers { /** * Returns the names of the headers */ - keys(): string[] { return MapWrapper.values(this._normalizedNames); } + keys(): string[] { return Array.from(this._normalizedNames.values()); } /** * Sets or overrides header value for given name. @@ -147,7 +145,7 @@ export class Headers { /** * Returns values of all headers. */ - values(): string[][] { return MapWrapper.values(this._headers); } + values(): string[][] { return Array.from(this._headers.values()); } /** * Returns string of all headers. diff --git a/modules/@angular/platform-browser/test/dom/dom_renderer_integration_spec.ts b/modules/@angular/platform-browser/test/dom/dom_renderer_integration_spec.ts deleted file mode 100644 index 3598b5230d..0000000000 --- a/modules/@angular/platform-browser/test/dom/dom_renderer_integration_spec.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * @license - * Copyright Google Inc. All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ - -import {describe, it} from '@angular/core/testing/testing_internal'; - -// import {MapWrapper} from '../../src/facade/src/collection'; -// import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter'; - -// import {DomTestbed, TestRootView, elRef} from './dom_testbed'; - -// import { -// ViewDefinition, -// RenderDirectiveMetadata, -// RenderViewRef, -// ViewEncapsulation -// } from '@angular/core/src/render/api'; - -export function main() { - describe('DomRenderer integration', () => { - it('should work', () => { - // TODO - }); - }); -} diff --git a/modules/@angular/platform-browser/testing/browser_util.ts b/modules/@angular/platform-browser/testing/browser_util.ts index b087072938..fe8c237ccc 100644 --- a/modules/@angular/platform-browser/testing/browser_util.ts +++ b/modules/@angular/platform-browser/testing/browser_util.ts @@ -8,18 +8,17 @@ import {NgZone} from '@angular/core'; -import {MapWrapper} from './facade/collection'; -import {global, isPresent} from './facade/lang'; +import {global} from './facade/lang'; import {getDOM} from './private_import_platform-browser'; export class BrowserDetection { private _overrideUa: string; private get _ua(): string { - if (isPresent(this._overrideUa)) { + if (typeof this._overrideUa === 'string') { return this._overrideUa; - } else { - return getDOM() ? getDOM().getUserAgent() : ''; } + + return getDOM() ? getDOM().getUserAgent() : ''; } static setup() { browserDetection = new BrowserDetection(null); } @@ -102,7 +101,7 @@ export function stringifyElement(el: any /** TODO #9100 */): string { // Attributes in an ordered way var attributeMap = getDOM().attributeMap(el); - var keys: string[] = MapWrapper.keys(attributeMap).sort(); + var keys: string[] = Array.from(attributeMap.keys()).sort(); for (let i = 0; i < keys.length; i++) { var key = keys[i]; var attValue = attributeMap.get(key); @@ -116,7 +115,7 @@ export function stringifyElement(el: any /** TODO #9100 */): string { // Children var childrenRoot = getDOM().templateAwareRoot(el); - var children = isPresent(childrenRoot) ? getDOM().childNodes(childrenRoot) : []; + var children = childrenRoot ? getDOM().childNodes(childrenRoot) : []; for (let j = 0; j < children.length; j++) { result += stringifyElement(children[j]); }