fix: default values in object destructuring ()

* fix: enhance string/expression length check and fix closing character issues

* docs: add documentation for unterminated_string_constant error

* test: add tests for object destructuring with default values in "each" blocks

* Update .changeset/clean-planets-rush.md

* refactor: clean up unnecessary comments and whitespace

* fix: resolve formatting issues

* simplify

* tweak

* regenerate

---------

Co-authored-by: Rich Harris <rich.harris@vercel.com>
pull/14397/merge
Caique Torres 3 months ago committed by GitHub
parent 4aadb34c02
commit 48e3db21c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: handle default values in object destructuring within "each" blocks when using characters like "}" and "]"

@ -1012,6 +1012,12 @@ Unexpected end of input
'%word%' is a reserved word in JavaScript and cannot be used here
```
### unterminated_string_constant
```
Unterminated string constant
```
### void_element_invalid_content
```

@ -418,6 +418,10 @@ See https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-ele
> '%word%' is a reserved word in JavaScript and cannot be used here
## unterminated_string_constant
> Unterminated string constant
## void_element_invalid_content
> Void elements cannot have children or closing tags

@ -1574,6 +1574,15 @@ export function unexpected_reserved_word(node, word) {
e(node, "unexpected_reserved_word", `'${word}' is a reserved word in JavaScript and cannot be used here\nhttps://svelte.dev/e/unexpected_reserved_word`);
}
/**
* Unterminated string constant
* @param {null | number | NodeLike} node
* @returns {never}
*/
export function unterminated_string_constant(node) {
e(node, "unterminated_string_constant", `Unterminated string constant\nhttps://svelte.dev/e/unterminated_string_constant`);
}
/**
* Void elements cannot have children or closing tags
* @param {null | number | NodeLike} node

@ -37,33 +37,11 @@ export default function read_pattern(parser) {
e.expected_pattern(i);
}
/** @type {string[]} */
const bracket_stack = [];
while (i < parser.template.length) {
const char = parser.template[i];
if (is_bracket_open(char)) {
bracket_stack.push(char);
} else if (is_bracket_close(char)) {
const popped = /** @type {string} */ (bracket_stack.pop());
const expected = /** @type {string} */ (get_bracket_close(popped));
if (char !== expected) {
e.expected_token(i, expected);
}
if (bracket_stack.length === 0) {
i += 1;
break;
}
}
i += 1;
}
i = match_bracket(parser, start);
parser.index = i;
const pattern_string = parser.template.slice(start, i);
try {
// the length of the `space_with_newline` has to be start - 1
// because we added a `(` in front of the pattern_string,
@ -93,6 +71,75 @@ export default function read_pattern(parser) {
}
}
/**
* @param {Parser} parser
* @param {number} start
*/
function match_bracket(parser, start) {
const bracket_stack = [];
let i = start;
while (i < parser.template.length) {
let char = parser.template[i++];
if (char === "'" || char === '"' || char === '`') {
i = match_quote(parser, i, char);
continue;
}
if (is_bracket_open(char)) {
bracket_stack.push(char);
} else if (is_bracket_close(char)) {
const popped = /** @type {string} */ (bracket_stack.pop());
const expected = /** @type {string} */ (get_bracket_close(popped));
if (char !== expected) {
e.expected_token(i - 1, expected);
}
if (bracket_stack.length === 0) {
return i;
}
}
}
e.unexpected_eof(parser.template.length);
}
/**
* @param {Parser} parser
* @param {number} start
* @param {string} quote
*/
function match_quote(parser, start, quote) {
let is_escaped = false;
let i = start;
while (i < parser.template.length) {
const char = parser.template[i++];
if (is_escaped) {
is_escaped = false;
continue;
}
if (char === quote) {
return i;
}
if (char === '\\') {
is_escaped = true;
}
if (quote === '`' && char === '$' && parser.template[i] === '{') {
i = match_bracket(parser, i);
}
}
e.unterminated_string_constant(start);
}
/**
* @param {Parser} parser
* @returns {any}

@ -0,0 +1,9 @@
{#each x as { y = 'z' }}{/each}
{#each x as { y = '{' }}{/each}
{#each x as { y = ']' }}{/each}
{#each x as { y = `${`"`}` }}{/each}
{#each x as { y = `${`John`}` }}{/each}

@ -0,0 +1,826 @@
{
"css": null,
"js": [],
"start": 0,
"end": 176,
"type": "Root",
"fragment": {
"type": "Fragment",
"nodes": [
{
"type": "EachBlock",
"start": 0,
"end": 31,
"expression": {
"type": "Identifier",
"start": 7,
"end": 8,
"loc": {
"start": {
"line": 1,
"column": 7
},
"end": {
"line": 1,
"column": 8
}
},
"name": "x"
},
"body": {
"type": "Fragment",
"nodes": []
},
"context": {
"type": "ObjectPattern",
"start": 12,
"end": 23,
"loc": {
"start": {
"line": 1,
"column": 12
},
"end": {
"line": 1,
"column": 23
}
},
"properties": [
{
"type": "Property",
"start": 14,
"end": 21,
"loc": {
"start": {
"line": 1,
"column": 14
},
"end": {
"line": 1,
"column": 21
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 14,
"end": 15,
"loc": {
"start": {
"line": 1,
"column": 14
},
"end": {
"line": 1,
"column": 15
}
},
"name": "y"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 14,
"end": 21,
"loc": {
"start": {
"line": 1,
"column": 14
},
"end": {
"line": 1,
"column": 21
}
},
"left": {
"type": "Identifier",
"start": 14,
"end": 15,
"loc": {
"start": {
"line": 1,
"column": 14
},
"end": {
"line": 1,
"column": 15
}
},
"name": "y"
},
"right": {
"type": "Literal",
"start": 18,
"end": 21,
"loc": {
"start": {
"line": 1,
"column": 18
},
"end": {
"line": 1,
"column": 21
}
},
"value": "z",
"raw": "'z'"
}
}
}
]
}
},
{
"type": "Text",
"start": 31,
"end": 33,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 33,
"end": 64,
"expression": {
"type": "Identifier",
"start": 40,
"end": 41,
"loc": {
"start": {
"line": 3,
"column": 7
},
"end": {
"line": 3,
"column": 8
}
},
"name": "x"
},
"body": {
"type": "Fragment",
"nodes": []
},
"context": {
"type": "ObjectPattern",
"start": 45,
"end": 56,
"loc": {
"start": {
"line": 3,
"column": 13
},
"end": {
"line": 3,
"column": 24
}
},
"properties": [
{
"type": "Property",
"start": 47,
"end": 54,
"loc": {
"start": {
"line": 3,
"column": 15
},
"end": {
"line": 3,
"column": 22
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 47,
"end": 48,
"loc": {
"start": {
"line": 3,
"column": 15
},
"end": {
"line": 3,
"column": 16
}
},
"name": "y"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 47,
"end": 54,
"loc": {
"start": {
"line": 3,
"column": 15
},
"end": {
"line": 3,
"column": 22
}
},
"left": {
"type": "Identifier",
"start": 47,
"end": 48,
"loc": {
"start": {
"line": 3,
"column": 15
},
"end": {
"line": 3,
"column": 16
}
},
"name": "y"
},
"right": {
"type": "Literal",
"start": 51,
"end": 54,
"loc": {
"start": {
"line": 3,
"column": 19
},
"end": {
"line": 3,
"column": 22
}
},
"value": "{",
"raw": "'{'"
}
}
}
]
}
},
{
"type": "Text",
"start": 64,
"end": 66,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 66,
"end": 97,
"expression": {
"type": "Identifier",
"start": 73,
"end": 74,
"loc": {
"start": {
"line": 5,
"column": 7
},
"end": {
"line": 5,
"column": 8
}
},
"name": "x"
},
"body": {
"type": "Fragment",
"nodes": []
},
"context": {
"type": "ObjectPattern",
"start": 78,
"end": 89,
"loc": {
"start": {
"line": 5,
"column": 13
},
"end": {
"line": 5,
"column": 24
}
},
"properties": [
{
"type": "Property",
"start": 80,
"end": 87,
"loc": {
"start": {
"line": 5,
"column": 15
},
"end": {
"line": 5,
"column": 22
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 80,
"end": 81,
"loc": {
"start": {
"line": 5,
"column": 15
},
"end": {
"line": 5,
"column": 16
}
},
"name": "y"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 80,
"end": 87,
"loc": {
"start": {
"line": 5,
"column": 15
},
"end": {
"line": 5,
"column": 22
}
},
"left": {
"type": "Identifier",
"start": 80,
"end": 81,
"loc": {
"start": {
"line": 5,
"column": 15
},
"end": {
"line": 5,
"column": 16
}
},
"name": "y"
},
"right": {
"type": "Literal",
"start": 84,
"end": 87,
"loc": {
"start": {
"line": 5,
"column": 19
},
"end": {
"line": 5,
"column": 22
}
},
"value": "]",
"raw": "']'"
}
}
}
]
}
},
{
"type": "Text",
"start": 97,
"end": 99,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 99,
"end": 135,
"expression": {
"type": "Identifier",
"start": 106,
"end": 107,
"loc": {
"start": {
"line": 7,
"column": 7
},
"end": {
"line": 7,
"column": 8
}
},
"name": "x"
},
"body": {
"type": "Fragment",
"nodes": []
},
"context": {
"type": "ObjectPattern",
"start": 111,
"end": 127,
"loc": {
"start": {
"line": 7,
"column": 13
},
"end": {
"line": 7,
"column": 29
}
},
"properties": [
{
"type": "Property",
"start": 113,
"end": 125,
"loc": {
"start": {
"line": 7,
"column": 15
},
"end": {
"line": 7,
"column": 27
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 113,
"end": 114,
"loc": {
"start": {
"line": 7,
"column": 15
},
"end": {
"line": 7,
"column": 16
}
},
"name": "y"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 113,
"end": 125,
"loc": {
"start": {
"line": 7,
"column": 15
},
"end": {
"line": 7,
"column": 27
}
},
"left": {
"type": "Identifier",
"start": 113,
"end": 114,
"loc": {
"start": {
"line": 7,
"column": 15
},
"end": {
"line": 7,
"column": 16
}
},
"name": "y"
},
"right": {
"type": "TemplateLiteral",
"start": 117,
"end": 125,
"loc": {
"start": {
"line": 7,
"column": 19
},
"end": {
"line": 7,
"column": 27
}
},
"expressions": [
{
"type": "TemplateLiteral",
"start": 120,
"end": 123,
"loc": {
"start": {
"line": 7,
"column": 22
},
"end": {
"line": 7,
"column": 25
}
},
"expressions": [],
"quasis": [
{
"type": "TemplateElement",
"start": 121,
"end": 122,
"loc": {
"start": {
"line": 7,
"column": 23
},
"end": {
"line": 7,
"column": 24
}
},
"value": {
"raw": "\"",
"cooked": "\""
},
"tail": true
}
]
}
],
"quasis": [
{
"type": "TemplateElement",
"start": 118,
"end": 118,
"loc": {
"start": {
"line": 7,
"column": 20
},
"end": {
"line": 7,
"column": 20
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": false
},
{
"type": "TemplateElement",
"start": 124,
"end": 124,
"loc": {
"start": {
"line": 7,
"column": 26
},
"end": {
"line": 7,
"column": 26
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": true
}
]
}
}
}
]
}
},
{
"type": "Text",
"start": 135,
"end": 137,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 137,
"end": 176,
"expression": {
"type": "Identifier",
"start": 144,
"end": 145,
"loc": {
"start": {
"line": 9,
"column": 7
},
"end": {
"line": 9,
"column": 8
}
},
"name": "x"
},
"body": {
"type": "Fragment",
"nodes": []
},
"context": {
"type": "ObjectPattern",
"start": 149,
"end": 168,
"loc": {
"start": {
"line": 9,
"column": 13
},
"end": {
"line": 9,
"column": 32
}
},
"properties": [
{
"type": "Property",
"start": 151,
"end": 166,
"loc": {
"start": {
"line": 9,
"column": 15
},
"end": {
"line": 9,
"column": 30
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 151,
"end": 152,
"loc": {
"start": {
"line": 9,
"column": 15
},
"end": {
"line": 9,
"column": 16
}
},
"name": "y"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 151,
"end": 166,
"loc": {
"start": {
"line": 9,
"column": 15
},
"end": {
"line": 9,
"column": 30
}
},
"left": {
"type": "Identifier",
"start": 151,
"end": 152,
"loc": {
"start": {
"line": 9,
"column": 15
},
"end": {
"line": 9,
"column": 16
}
},
"name": "y"
},
"right": {
"type": "TemplateLiteral",
"start": 155,
"end": 166,
"loc": {
"start": {
"line": 9,
"column": 19
},
"end": {
"line": 9,
"column": 30
}
},
"expressions": [
{
"type": "TemplateLiteral",
"start": 158,
"end": 164,
"loc": {
"start": {
"line": 9,
"column": 22
},
"end": {
"line": 9,
"column": 28
}
},
"expressions": [],
"quasis": [
{
"type": "TemplateElement",
"start": 159,
"end": 163,
"loc": {
"start": {
"line": 9,
"column": 23
},
"end": {
"line": 9,
"column": 27
}
},
"value": {
"raw": "John",
"cooked": "John"
},
"tail": true
}
]
}
],
"quasis": [
{
"type": "TemplateElement",
"start": 156,
"end": 156,
"loc": {
"start": {
"line": 9,
"column": 20
},
"end": {
"line": 9,
"column": 20
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": false
},
{
"type": "TemplateElement",
"start": 165,
"end": 165,
"loc": {
"start": {
"line": 9,
"column": 29
},
"end": {
"line": 9,
"column": 29
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": true
}
]
}
}
}
]
}
}
]
},
"options": null
}

@ -1,3 +1,11 @@
{#each people as { name, cool = true }}
<p>{name} is {cool ? 'cool' : 'not cool'}</p>
{/each}
{#each people as { name = `Jane ${"Doe"}`, cool = true }}
<p>{name} is {cool ? 'cool' : 'not cool'}</p>
{/each}
{#each people as { name = (() => { return `Jane ${"Doe"}`; })(), cool = true }}
<p>{name} is {cool ? 'cool' : 'not cool'}</p>
{/each}

@ -2,7 +2,7 @@
"css": null,
"js": [],
"start": 0,
"end": 94,
"end": 344,
"type": "Root",
"fragment": {
"type": "Fragment",
@ -307,6 +307,873 @@
}
]
}
},
{
"type": "Text",
"start": 94,
"end": 96,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 96,
"end": 208,
"expression": {
"type": "Identifier",
"start": 103,
"end": 109,
"loc": {
"start": {
"line": 5,
"column": 7
},
"end": {
"line": 5,
"column": 13
}
},
"name": "people"
},
"body": {
"type": "Fragment",
"nodes": [
{
"type": "Text",
"start": 153,
"end": 155,
"raw": "\n\t",
"data": "\n\t"
},
{
"type": "RegularElement",
"start": 155,
"end": 200,
"name": "p",
"attributes": [],
"fragment": {
"type": "Fragment",
"nodes": [
{
"type": "ExpressionTag",
"start": 158,
"end": 164,
"expression": {
"type": "Identifier",
"start": 159,
"end": 163,
"loc": {
"start": {
"line": 6,
"column": 5
},
"end": {
"line": 6,
"column": 9
}
},
"name": "name"
}
},
{
"type": "Text",
"start": 164,
"end": 168,
"raw": " is ",
"data": " is "
},
{
"type": "ExpressionTag",
"start": 168,
"end": 196,
"expression": {
"type": "ConditionalExpression",
"start": 169,
"end": 195,
"loc": {
"start": {
"line": 6,
"column": 15
},
"end": {
"line": 6,
"column": 41
}
},
"test": {
"type": "Identifier",
"start": 169,
"end": 173,
"loc": {
"start": {
"line": 6,
"column": 15
},
"end": {
"line": 6,
"column": 19
}
},
"name": "cool"
},
"consequent": {
"type": "Literal",
"start": 176,
"end": 182,
"loc": {
"start": {
"line": 6,
"column": 22
},
"end": {
"line": 6,
"column": 28
}
},
"value": "cool",
"raw": "'cool'"
},
"alternate": {
"type": "Literal",
"start": 185,
"end": 195,
"loc": {
"start": {
"line": 6,
"column": 31
},
"end": {
"line": 6,
"column": 41
}
},
"value": "not cool",
"raw": "'not cool'"
}
}
}
]
}
},
{
"type": "Text",
"start": 200,
"end": 201,
"raw": "\n",
"data": "\n"
}
]
},
"context": {
"type": "ObjectPattern",
"start": 113,
"end": 152,
"loc": {
"start": {
"line": 5,
"column": 18
},
"end": {
"line": 5,
"column": 57
}
},
"properties": [
{
"type": "Property",
"start": 115,
"end": 137,
"loc": {
"start": {
"line": 5,
"column": 20
},
"end": {
"line": 5,
"column": 42
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 115,
"end": 119,
"loc": {
"start": {
"line": 5,
"column": 20
},
"end": {
"line": 5,
"column": 24
}
},
"name": "name"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 115,
"end": 137,
"loc": {
"start": {
"line": 5,
"column": 20
},
"end": {
"line": 5,
"column": 42
}
},
"left": {
"type": "Identifier",
"start": 115,
"end": 119,
"loc": {
"start": {
"line": 5,
"column": 20
},
"end": {
"line": 5,
"column": 24
}
},
"name": "name"
},
"right": {
"type": "TemplateLiteral",
"start": 122,
"end": 137,
"loc": {
"start": {
"line": 5,
"column": 27
},
"end": {
"line": 5,
"column": 42
}
},
"expressions": [
{
"type": "Literal",
"start": 130,
"end": 135,
"loc": {
"start": {
"line": 5,
"column": 35
},
"end": {
"line": 5,
"column": 40
}
},
"value": "Doe",
"raw": "\"Doe\""
}
],
"quasis": [
{
"type": "TemplateElement",
"start": 123,
"end": 128,
"loc": {
"start": {
"line": 5,
"column": 28
},
"end": {
"line": 5,
"column": 33
}
},
"value": {
"raw": "Jane ",
"cooked": "Jane "
},
"tail": false
},
{
"type": "TemplateElement",
"start": 136,
"end": 136,
"loc": {
"start": {
"line": 5,
"column": 41
},
"end": {
"line": 5,
"column": 41
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": true
}
]
}
}
},
{
"type": "Property",
"start": 139,
"end": 150,
"loc": {
"start": {
"line": 5,
"column": 44
},
"end": {
"line": 5,
"column": 55
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 139,
"end": 143,
"loc": {
"start": {
"line": 5,
"column": 44
},
"end": {
"line": 5,
"column": 48
}
},
"name": "cool"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 139,
"end": 150,
"loc": {
"start": {
"line": 5,
"column": 44
},
"end": {
"line": 5,
"column": 55
}
},
"left": {
"type": "Identifier",
"start": 139,
"end": 143,
"loc": {
"start": {
"line": 5,
"column": 44
},
"end": {
"line": 5,
"column": 48
}
},
"name": "cool"
},
"right": {
"type": "Literal",
"start": 146,
"end": 150,
"loc": {
"start": {
"line": 5,
"column": 51
},
"end": {
"line": 5,
"column": 55
}
},
"value": true,
"raw": "true"
}
}
}
]
}
},
{
"type": "Text",
"start": 208,
"end": 210,
"raw": "\n\n",
"data": "\n\n"
},
{
"type": "EachBlock",
"start": 210,
"end": 344,
"expression": {
"type": "Identifier",
"start": 217,
"end": 223,
"loc": {
"start": {
"line": 9,
"column": 7
},
"end": {
"line": 9,
"column": 13
}
},
"name": "people"
},
"body": {
"type": "Fragment",
"nodes": [
{
"type": "Text",
"start": 289,
"end": 291,
"raw": "\n\t",
"data": "\n\t"
},
{
"type": "RegularElement",
"start": 291,
"end": 336,
"name": "p",
"attributes": [],
"fragment": {
"type": "Fragment",
"nodes": [
{
"type": "ExpressionTag",
"start": 294,
"end": 300,
"expression": {
"type": "Identifier",
"start": 295,
"end": 299,
"loc": {
"start": {
"line": 10,
"column": 5
},
"end": {
"line": 10,
"column": 9
}
},
"name": "name"
}
},
{
"type": "Text",
"start": 300,
"end": 304,
"raw": " is ",
"data": " is "
},
{
"type": "ExpressionTag",
"start": 304,
"end": 332,
"expression": {
"type": "ConditionalExpression",
"start": 305,
"end": 331,
"loc": {
"start": {
"line": 10,
"column": 15
},
"end": {
"line": 10,
"column": 41
}
},
"test": {
"type": "Identifier",
"start": 305,
"end": 309,
"loc": {
"start": {
"line": 10,
"column": 15
},
"end": {
"line": 10,
"column": 19
}
},
"name": "cool"
},
"consequent": {
"type": "Literal",
"start": 312,
"end": 318,
"loc": {
"start": {
"line": 10,
"column": 22
},
"end": {
"line": 10,
"column": 28
}
},
"value": "cool",
"raw": "'cool'"
},
"alternate": {
"type": "Literal",
"start": 321,
"end": 331,
"loc": {
"start": {
"line": 10,
"column": 31
},
"end": {
"line": 10,
"column": 41
}
},
"value": "not cool",
"raw": "'not cool'"
}
}
}
]
}
},
{
"type": "Text",
"start": 336,
"end": 337,
"raw": "\n",
"data": "\n"
}
]
},
"context": {
"type": "ObjectPattern",
"start": 227,
"end": 288,
"loc": {
"start": {
"line": 9,
"column": 18
},
"end": {
"line": 9,
"column": 79
}
},
"properties": [
{
"type": "Property",
"start": 229,
"end": 273,
"loc": {
"start": {
"line": 9,
"column": 20
},
"end": {
"line": 9,
"column": 64
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 229,
"end": 233,
"loc": {
"start": {
"line": 9,
"column": 20
},
"end": {
"line": 9,
"column": 24
}
},
"name": "name"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 229,
"end": 273,
"loc": {
"start": {
"line": 9,
"column": 20
},
"end": {
"line": 9,
"column": 64
}
},
"left": {
"type": "Identifier",
"start": 229,
"end": 233,
"loc": {
"start": {
"line": 9,
"column": 20
},
"end": {
"line": 9,
"column": 24
}
},
"name": "name"
},
"right": {
"type": "CallExpression",
"start": 236,
"end": 273,
"loc": {
"start": {
"line": 9,
"column": 27
},
"end": {
"line": 9,
"column": 64
}
},
"callee": {
"type": "ArrowFunctionExpression",
"start": 237,
"end": 270,
"loc": {
"start": {
"line": 9,
"column": 28
},
"end": {
"line": 9,
"column": 61
}
},
"id": null,
"expression": false,
"generator": false,
"async": false,
"params": [],
"body": {
"type": "BlockStatement",
"start": 243,
"end": 270,
"loc": {
"start": {
"line": 9,
"column": 34
},
"end": {
"line": 9,
"column": 61
}
},
"body": [
{
"type": "ReturnStatement",
"start": 245,
"end": 268,
"loc": {
"start": {
"line": 9,
"column": 36
},
"end": {
"line": 9,
"column": 59
}
},
"argument": {
"type": "TemplateLiteral",
"start": 252,
"end": 267,
"loc": {
"start": {
"line": 9,
"column": 43
},
"end": {
"line": 9,
"column": 58
}
},
"expressions": [
{
"type": "Literal",
"start": 260,
"end": 265,
"loc": {
"start": {
"line": 9,
"column": 51
},
"end": {
"line": 9,
"column": 56
}
},
"value": "Doe",
"raw": "\"Doe\""
}
],
"quasis": [
{
"type": "TemplateElement",
"start": 253,
"end": 258,
"loc": {
"start": {
"line": 9,
"column": 44
},
"end": {
"line": 9,
"column": 49
}
},
"value": {
"raw": "Jane ",
"cooked": "Jane "
},
"tail": false
},
{
"type": "TemplateElement",
"start": 266,
"end": 266,
"loc": {
"start": {
"line": 9,
"column": 57
},
"end": {
"line": 9,
"column": 57
}
},
"value": {
"raw": "",
"cooked": ""
},
"tail": true
}
]
}
}
]
}
},
"arguments": [],
"optional": false
}
}
},
{
"type": "Property",
"start": 275,
"end": 286,
"loc": {
"start": {
"line": 9,
"column": 66
},
"end": {
"line": 9,
"column": 77
}
},
"method": false,
"shorthand": true,
"computed": false,
"key": {
"type": "Identifier",
"start": 275,
"end": 279,
"loc": {
"start": {
"line": 9,
"column": 66
},
"end": {
"line": 9,
"column": 70
}
},
"name": "cool"
},
"kind": "init",
"value": {
"type": "AssignmentPattern",
"start": 275,
"end": 286,
"loc": {
"start": {
"line": 9,
"column": 66
},
"end": {
"line": 9,
"column": 77
}
},
"left": {
"type": "Identifier",
"start": 275,
"end": 279,
"loc": {
"start": {
"line": 9,
"column": 66
},
"end": {
"line": 9,
"column": 70
}
},
"name": "cool"
},
"right": {
"type": "Literal",
"start": 282,
"end": 286,
"loc": {
"start": {
"line": 9,
"column": 73
},
"end": {
"line": 9,
"column": 77
}
},
"value": true,
"raw": "true"
}
}
}
]
}
}
]
},

Loading…
Cancel
Save