Skip to content

Commit

Permalink
fix(compiler): do not report type errors for arguments with @Inject (
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckjaz committed May 23, 2017
1 parent a80ac0a commit 27761b4
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/compiler/src/aot/static_reflector.ts
Expand Up @@ -182,16 +182,16 @@ export class StaticReflector implements CompileReflector {
const ctorData = members ? members['__ctor__'] : null;
if (ctorData) {
const ctor = (<any[]>ctorData).find(a => a['__symbolic'] == 'constructor');
const parameterTypes = <any[]>this.simplify(type, ctor['parameters'] || []);
const rawParameterTypes = <any[]>ctor['parameters'] || [];
const parameterDecorators = <any[]>this.simplify(type, ctor['parameterDecorators'] || []);
parameters = [];
parameterTypes.forEach((paramType, index) => {
rawParameterTypes.forEach((rawParamType, index) => {
const nestedResult: any[] = [];
if (paramType) {
nestedResult.push(paramType);
}
const paramType = this.trySimplify(type, rawParamType);
if (paramType) nestedResult.push(paramType);
const decorators = parameterDecorators ? parameterDecorators[index] : null;
if (decorators) {
if (paramType) nestedResult.push(paramType);
nestedResult.push(...decorators);
}
parameters !.push(nestedResult);
Expand Down
42 changes: 42 additions & 0 deletions packages/compiler/test/aot/static_reflector_spec.ts
Expand Up @@ -570,6 +570,48 @@ describe('StaticReflector', () => {
expect(annotation.providers).toEqual([]);
});

// #15424
it('should be able to inject a ctor parameter with a @Inject and a type expression', () => {
const data = Object.create(DEFAULT_TEST_DATA);
const file = '/tmp/src/invalid-component.ts';
data[file] = `
import {Injectable, Inject} from '@angular/core';
@Injectable()
export class SomeClass {
constructor (@Inject('some-token') a: {a: string, b: string}) {}
}
`;
init(data);

const someClass = reflector.getStaticSymbol(file, 'SomeClass');
const parameters = reflector.parameters(someClass);
expect(parameters.toString()).toEqual('@Inject');
});

it('should reject a ctor parameter without a @Inject and a type exprssion', () => {
const data = Object.create(DEFAULT_TEST_DATA);
const file = '/tmp/src/invalid-component.ts';
data[file] = `
import {Injectable} from '@angular/core';
@Injectable()
export class SomeClass {
constructor (a: {a: string, b: string}) {}
}
`;

let error: any = undefined;
init(data, [], (err: any, filePath: string) => {
expect(error).toBeUndefined();
error = err;
});

const someClass = reflector.getStaticSymbol(file, 'SomeClass');
expect(reflector.parameters(someClass)).toEqual([[]]);
expect(error).toBeUndefined();
});

describe('inheritance', () => {
class ClassDecorator {
constructor(public value: any) {}
Expand Down

0 comments on commit 27761b4

Please sign in to comment.