| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -41,7 +41,7 @@ public String eagerInterpret( | |||
| 41 | 41 | InterpretException e | |
| 42 | 42 | ) { | |
| 43 | 43 | interpreter.getContext().checkNumberOfDeferredTokens(); | |
| 44 | - try (InterpreterScopeClosable c = interpreter.enterScope()) { | ||
| 44 | + try (InterpreterScopeClosable c = interpreter.enterNonStackingScope()) { | ||
| 45 | 45 | MacroFunction caller = new MacroFunction( | |
| 46 | 46 | tagNode.getChildren(), | |
| 47 | 47 | "caller", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -77,6 +77,20 @@ public void itReconstructsForAliasedName() { | |||
| 77 | 77 | .isEqualTo(String.format(codeFormat, fullName)); | |
| 78 | 78 | } | |
| 79 | 79 | ||
| 80 | + @Test | ||
| 81 | + public void itResolvesFromSet() { | ||
| 82 | + String template = | ||
| 83 | + "{% macro foo(foobar, other) %}" + | ||
| 84 | + " {% do foobar.update({'a': 'b'} ) %} " + | ||
| 85 | + " {{ foobar }} and {{ other }}" + | ||
| 86 | + "{% endmacro %}" + | ||
| 87 | + "{% set bar = {} %}" + | ||
| 88 | + "{% call foo(bar, deferred) %} {% endcall %}" + | ||
| 89 | + "{{ bar }}"; | ||
| 90 | + String firstPass = interpreter.render(template); | ||
| 91 | + assertThat(firstPass).isEqualTo(template); | ||
| 92 | + } | ||
| 93 | + | ||
| 80 | 94 | @Test | |
| 81 | 95 | public void itReconstructsImageWithNamedParams() { | |
| 82 | 96 | String name = "foo"; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments