| // Copyright (C) 2014 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| description: Template values of the template tail pattern |
| The TV and TRV of TemplateTail :: }` is the empty code unit sequence. |
| The TV of TemplateTail :: } TemplateCharacters ` is the TV of |
| The TRV of TemplateTail :: } TemplateCharacters ` is the TRV of |
| assert.sameValue(s[1], '', 'Template value (empty)'); |
| assert.sameValue(s.raw[1], '', 'Template raw value (empty)'); |
| assert.sameValue(calls, 1); |
| assert.sameValue(s[1], 'foo', 'Template value (with content)'); |
| assert.sameValue(s.raw[1], 'foo', 'Template raw value (with content)'); |
| assert.sameValue(calls, 1); |