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
Tried following test with ion-js which fails with tripple quoted string/long string
let s: Value=load("'''hello'''''' world'''")!;assert.equal(IonTypes.STRING,s.getType());assert.equal(s.stringValue(),"hello world");
s.stringValue() returns helloorld.
Further more when we add a space between the two tripple quoted strings('''hello''' ''' world''') the value seems to be loading correctly.
The text was updated successfully, but these errors were encountered:
Tried following test with
ion-js
which fails with tripple quoted string/long strings.stringValue()
returnshelloorld
.Further more when we add a space between the two tripple quoted strings(
'''hello''' ''' world'''
) the value seems to be loading correctly.The text was updated successfully, but these errors were encountered: