Creates a new Expression with a TypeMirror and CodeBlock.
(TypeMirror type, CodeBlock expression)
| 44 | |
| 45 | /** Creates a new {@link Expression} with a {@link TypeMirror} and {@link CodeBlock}. */ |
| 46 | static Expression create(TypeMirror type, CodeBlock expression) { |
| 47 | return new Expression(type, expression); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Creates a new {@link Expression} with a {@link TypeMirror}, {@linkplain CodeBlock#of(String, |