File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -3813,7 +3813,7 @@ typedef InterpreterOptions = {
38133813 if (c != " " .code && c != " \t " .code ) break ;
38143814 indent ++ ;
38153815 }
3816- if (indent < line . uLength () ) {
3816+ if (indent > 0 ) {
38173817 if (minIndent == - 1 || indent < minIndent ) {
38183818 minIndent = indent ;
38193819 }
Original file line number Diff line number Diff line change 1+
2+ state
3+ name: "Justin"
4+
5+ character narrator
6+ name: Narrator
7+
8+ beat Main
9+ // Multiline dialogue where second line starts with interpolation
10+ narrator:
11+ First line of text.
12+ ${name == "Justin" ? "Effrayé" : "Effrayée"}, second line continues here.
13+
14+ // Multiline dialogue where second line starts with interpolation
15+ First line of text.
16+ ${name == "Justin" ? "Effrayé" : "Effrayée"}, second line continues here.
17+
18+ /*
19+ <test>
20+ - expected: |
21+ Narrator:
22+ First line of text.
23+ Effrayé, second line continues here.
24+
25+ ~ First line of text.
26+ Effrayé, second line continues here.
27+ </test>
28+ */
You can’t perform that action at this time.
0 commit comments