This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // TNodeType.ElementContainer | |
| type: 4, | |
| // index - not in the tree, but in the parent's metadata array | |
| index: 20, | |
| // index of the nearest injector, -1 = no injector | |
| injectorIndex: -1, | |
| directiveStart: -1, | |
| directiveEnd: -1, | |
| // indexes of the first and last input parameter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elementContainerStart(index); | |
| elementContainerEnd(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| nodeIndex: 0, | |
| parent: null, | |
| renderParent: null, | |
| bindingIndex: 0, | |
| outputIndex: 0, | |
| checkIndex: 0, | |
| flags: 1, | |
| childFlags: 0, | |
| directChildFlags: 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function createInjector( | |
| defType: any, | |
| parent?: Injector | null, | |
| additionalProviders?: StaticProvider[] | null, | |
| name?: string | |
| ): Injector; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ButtonComponent_0 {}; | |
| ButtonComponent_0* buttonComponent = new ButtonComponent_0(); | |
| buttonComponent->type = "primary"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| providerData.instance[propName] = value; |