From 4bea630baa283885e7f0fe401dc215857d8fa982 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz <61631103+dario-piotrowicz@users.noreply.github.com> Date: Sun, 27 Jun 2021 16:34:32 +0100 Subject: [PATCH] docs(core): add context jsdoc param to createEmbeddedView (#42675) PR Close #42675 --- packages/core/src/linker/view_container_ref.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/src/linker/view_container_ref.ts b/packages/core/src/linker/view_container_ref.ts index b37e423efc..ed23fc3447 100644 --- a/packages/core/src/linker/view_container_ref.ts +++ b/packages/core/src/linker/view_container_ref.ts @@ -98,6 +98,8 @@ export abstract class ViewContainerRef { * Instantiates an embedded view and inserts it * into this container. * @param templateRef The HTML template that defines the view. + * @param context The data-binding context of the embedded view, as declared + * in the `` usage. * @param index The 0-based index at which to insert the new view into this container. * If not specified, appends the new view as the last entry. *