-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LG] Remove dash in identifier to make sure arithmetic expressions ca…
…n be parsed correctly (#2009) * init * fix template name in tests
- v4.10.3
- caip-4.14.1-dev2
- caip-4.14.1-dev1
- 414.1-dev6
- 4.23.2
- 4.23.1
- 4.23.0
- 4.22.3
- 4.22.2
- 4.22.1
- 4.22.0
- 4.21.4
- 4.21.3
- 4.21.2
- 4.21.1
- 4.21.0
- 4.20.3
- 4.20.2
- 4.20.1
- 4.20.0
- 4.19.3
- 4.19.2
- 4.19.1
- 4.19.0
- 4.18.0
- 4.17.1
- 4.17.0
- 4.17.0-spike1
- 4.17.0-dev1
- 4.17.0-dev0
- 4.16.0
- 4.15.0
- 4.14.8-dev8
- 4.14.1
- 4.14.1-dev7
- 4.14.1-dev5
- 4.14.1-dev4
- 4.14.1-dev3
- 4.14.0
- 4.13.6
- 4.13.5
- 4.13.4
- 4.13.3
- 4.13.2
- 4.13.1
- 4.13.0
- 4.12.1
- 4.12.0
- 4.11.2
- 4.11.1
- 4.11.0
- 4.10.6
- 4.10
- 4.9.5
- 4.9.0
1 parent
4dd290c
commit 0b24fa6
Showing
17 changed files
with
346 additions
and
335 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
# test | ||
- english | ||
|
||
# tag1-test2 | ||
# tag1_test2 | ||
- tag1 test2 | ||
|
||
# tag1-test | ||
# tag1_test | ||
- tag1 test | ||
|
||
# tag2-test | ||
# tag2_test | ||
- tag2 test | ||
|
||
# x-property | ||
# x_property | ||
- test x | ||
|
||
# y-property | ||
# y_property | ||
- test y | ||
|
||
# z-property | ||
# z_property | ||
- test z | ||
|
||
# tag2-y-property | ||
# tag2_y_property | ||
- test tag2 y | ||
|
||
# x-property2 | ||
# x_property2 | ||
- test2 x |
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,7 @@ | |
# t2($%^) | ||
- hi | ||
|
||
> Template name can not contain '-' | ||
# t2-t1 | ||
- hi | ||
|
4 changes: 2 additions & 2 deletions
4
libraries/botbuilder-lg/tests/testData/exceptionExamples/LoopDetected.lg
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
> Welcome Phrase template | ||
> LG runtime will pick a text value from the one-of collection list at random. | ||
# wPhrase | ||
- ${welcome-user()} | ||
- ${welcome_user()} | ||
|
||
> Using a template in another template | ||
> Sometimes the bot will say 'Hi' and other times it will say 'Hi :)' | ||
# welcome-user | ||
# welcome_user | ||
- ${wPhrase()} | ||
|