You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today if user.name is null, it will result an exception, we should change this to "null" (we can optimize the result later) so that user won't be interrupted by exceptions.
Expected result:
>if a == null or a.b == null, result would be string "null"
# template1
- @{a.b}
> if a== null or a.b == null, result would be "result is 'null'"
# template2
- switch: @{a.b}
- CASE: @{'null'}
- result is 'null'
> if a template ref is return null, the result would be
>{ "lgType":"MyStruct", "key1":"null"}
# template3
[MyStruct
key1 = @{template4()}
]
> return null
# template4
- IF:@{false}
- hello
close: #3326
Original issue:
Today if user.name is null, it will result an exception, we should change this to "null" (we can optimize the result later) so that user won't be interrupted by exceptions.
Expected result:
Changed projects
The text was updated successfully, but these errors were encountered: