Regular expression interpolations; fixed bug in string interpolations when all tokens were identifiers.

This commit is contained in:
Stan Angeloff
2010-03-08 20:05:02 +02:00
parent 830d1fb42b
commit 81af8f296e
6 changed files with 146 additions and 57 deletions

View File

@@ -61,3 +61,8 @@ ok "Where is ${"the nested ${obj["name"]}"}?" is 'Where is the nested Joe?'
ok "Hello ${world ? "$hello"}" is 'Hello World'
ok "Hello ${"${"${obj["name"]}" + '!'}"}" is 'Hello Joe!'
a: 1
b: 2
c: 3
ok "$a$b$c" is '123'