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
| <!-- Input --> | |
| <tree [tree]="tree"> | |
| <template tree-render let-node> | |
| <h1>{{node.label}}</h1> | |
| </template> | |
| </tree> | |
| <!-- Output --> | |
| <div class="tree"> | |
| <div *ngFor="let node of tree"> |
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
| /** | |
| * Loader that automatically prepends a reference to sassIncludes in the Webpack configuration files | |
| */ | |
| import fs from 'fs'; | |
| import path from 'path'; | |
| import config from './config'; | |
| let fileFound = true; |
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
| package ParseTree; | |
| import javax.swing.*; | |
| import java.awt.*; | |
| import java.awt.geom.Ellipse2D; | |
| import java.util.*; | |
| import java.util.List; | |
| public class Node<T> { |