refactor(ivy): ngcc - no need to pass isCore explicitly (#30591)

It is part of `EntryPointBundle` so we can just use that, which
is generally already passed around.

PR Close #30591
This commit is contained in:
Pete Bacon Darwin
2019-05-25 20:38:33 +01:00
committed by Kara Erickson
parent e943859843
commit 74f637f98d
5 changed files with 26 additions and 31 deletions

View File

@ -83,7 +83,7 @@ function createTestRenderer(
spyOn(testFormatter, 'rewriteSwitchableDeclarations').and.callThrough();
spyOn(testFormatter, 'addModuleWithProvidersParams').and.callThrough();
const renderer = new Renderer(testFormatter, fs, logger, host, isCore, bundle);
const renderer = new Renderer(testFormatter, fs, logger, bundle);
return {renderer,
testFormatter,