perf(ivy): remove check for function type in renderStringify (#30838)

The `renderStringify` function shows up pretty high in the CPU profiling.
Turns out that this function contained unnecessary `typeof` check for
function types - the check only makes sense / is used in error messages.

The PR also alligns how ivy and view engine stringify functions used in
interpolations.

PR Close #30838
This commit is contained in:
Pawel Kozlowski
2019-06-04 10:42:43 +02:00
committed by Miško Hevery
parent 04587a33c5
commit 11a4454ab3
2 changed files with 19 additions and 3 deletions

View File

@ -112,4 +112,20 @@ describe('text instructions', () => {
expect(div.innerHTML).toBe('<h1>LOL, big text</h1>');
});
it('should stringify functions used in bindings', () => {
@Component({
template: '<div>{{test}}</div>',
})
class App {
test = function foo() {};
}
TestBed.configureTestingModule({declarations: [App]});
const fixture = TestBed.createComponent(App);
fixture.detectChanges();
const div = fixture.nativeElement.querySelector('div');
expect(div.innerHTML).toBe('function foo() { }');
});
});