diff --git a/.esdoc.json b/.esdoc.json deleted file mode 100644 index 53e531cb..00000000 --- a/.esdoc.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "source": ".", - "excludes": ["node_modules", "examples", "\\.vscode", "docs"], - "destination": "./docs", - "includeSource": false, - "coverage": false, - "index": "./INTRO.md", - "plugins": [{ - "name": "esdoc-flow-plugin" - }], - "experimentalProposal": { - "classProperties": true, - "objectRestSpread": true, - "decorators": true, - "doExpressions": true, - "functionBind": true, - "asyncGenerators": true, - "exportExtensions": true, - "dynamicImport": true - } -} diff --git a/.flowconfig b/.flowconfig index a76425eb..586c3f35 100644 --- a/.flowconfig +++ b/.flowconfig @@ -7,6 +7,7 @@ ; Ignore unexpected extra "@providesModule" .*/node_modules/.*/node_modules/fbjs/.* +.*/node_modules/documentation ; Ignore duplicate module providers ; For RN Apps installed via npm, "Libraries" folder is inside diff --git a/.jsbeautifyrc b/.jsbeautifyrc deleted file mode 100644 index 790cf43b..00000000 --- a/.jsbeautifyrc +++ /dev/null @@ -1,23 +0,0 @@ -{ - "indent_size": 2, - "indent_char": " ", - "eol": "\n", - "indent_level": 0, - "indent_with_tabs": false, - "preserve_newlines": true, - "max_preserve_newlines": 2, - "jslint_happy": false, - "space_after_anon_function": false, - "brace_style": "collapse,preserve-inline", - "keep_array_indentation": false, - "keep_function_indentation": false, - "space_before_conditional": true, - "break_chained_methods": false, - "eval_code": false, - "unescape_strings": false, - "wrap_line_length": 120, - "wrap_attributes": "auto", - "wrap_attributes_indent_size": 2, - "e4x": true, - "end_with_newline": true -} diff --git a/.npmignore b/.npmignore index 26809c65..00893cce 100644 --- a/.npmignore +++ b/.npmignore @@ -61,4 +61,4 @@ Carthage *.png # Documentation -doc/ \ No newline at end of file +docs/ \ No newline at end of file diff --git a/INTRO.md b/INTRO.md index 1dd184de..02e4605e 100644 --- a/INTRO.md +++ b/INTRO.md @@ -1,4 +1,6 @@ -# Getting started +

+ react-native-ble-plx +

This guide is an introduction to BLE stack and APIs exported by this library. All examples will be based on CC2541 SensorTag. @@ -94,7 +96,10 @@ it can be a long process depending on number of characteristics and services ava ## Read, write and monitor values -After successful discovery of services you can call `readCharacteristicForDevice()`, -`writeCharacteristicWithResponseForDevice()`, `monitorCharacteristicForDevice()` and -other functions which are described in detail in documentation. +After successful discovery of services you can call +* {@link #BleManager#readCharacteristicForDevice|BleManager.readCharacteristicForDevice()}, +* {@link #BleManager#writeCharacteristicWithResponseForDevice|BleManager.writeCharacteristicWithResponseForDevice()}, +* {@link #BleManager#monitorCharacteristicForDevice|BleManager.monitorCharacteristicForDevice()} + +and other functions which are described in detail in documentation. diff --git a/README.md b/README.md index 7c215bb1..e12bb486 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@

- react-native-ble-plx + react-native-ble-plx

React Native Bluetooth Low Energy library using [RxBluetoothKit](https://github.com/Polidea/RxBluetoothKit) and [RxAndroidBle](https://github.com/Polidea/RxAndroidBle) as it's backend libraries. Example apps are available in [Google Play](https://play.google.com/store/apps/details?id=com.polidea.sniffator) and [App Store](https://itunes.apple.com/us/app/sniffator/id1147266354?ls=1&mt=8)! -[![GooglePlay](googleplay.png)](https://play.google.com/store/apps/details?id=com.polidea.sniffator) [![AppStore](appstore.png)](https://itunes.apple.com/us/app/sniffator/id1147266354?ls=1&mt=8) +[![GooglePlay](docs/googleplay.png)](https://play.google.com/store/apps/details?id=com.polidea.sniffator) [![AppStore](docs/appstore.png)](https://itunes.apple.com/us/app/sniffator/id1147266354?ls=1&mt=8) --- diff --git a/appstore.png b/appstore.png deleted file mode 100644 index 88bd6fe1..00000000 Binary files a/appstore.png and /dev/null differ diff --git a/docs/assets/anchor.js b/docs/assets/anchor.js new file mode 100644 index 00000000..476a8f9a --- /dev/null +++ b/docs/assets/anchor.js @@ -0,0 +1,198 @@ +/*! + * AnchorJS - v1.2.1 - 2015-07-02 + * https://github.com/bryanbraun/anchorjs + * Copyright (c) 2015 Bryan Braun; Licensed MIT + */ + +function AnchorJS(options) { + 'use strict'; + this.options = options || {}; + + this._applyRemainingDefaultOptions = function(opts) { + this.options.icon = this.options.hasOwnProperty('icon') + ? opts.icon + : '\ue9cb'; // Accepts characters (and also URLs?), like '#', '¶', '❡', or '§'. + this.options.visible = this.options.hasOwnProperty('visible') + ? opts.visible + : 'hover'; // Also accepts 'always' + this.options.placement = this.options.hasOwnProperty('placement') + ? opts.placement + : 'right'; // Also accepts 'left' + this.options.class = this.options.hasOwnProperty('class') ? opts.class : ''; // Accepts any class name. + }; + + this._applyRemainingDefaultOptions(options); + + this.add = function(selector) { + var elements, + elsWithIds, + idList, + elementID, + i, + roughText, + tidyText, + index, + count, + newTidyText, + readableID, + anchor; + + this._applyRemainingDefaultOptions(this.options); + + // Provide a sensible default selector, if none is given. + if (!selector) { + selector = 'h1, h2, h3, h4, h5, h6'; + } else if (typeof selector !== 'string') { + throw new Error('The selector provided to AnchorJS was invalid.'); + } + + elements = document.querySelectorAll(selector); + if (elements.length === 0) { + return false; + } + + this._addBaselineStyles(); + + // We produce a list of existing IDs so we don't generate a duplicate. + elsWithIds = document.querySelectorAll('[id]'); + idList = [].map.call(elsWithIds, function assign(el) { + return el.id; + }); + + for (i = 0; i < elements.length; i++) { + if (elements[i].hasAttribute('id')) { + elementID = elements[i].getAttribute('id'); + } else { + roughText = elements[i].textContent; + + // Refine it so it makes a good ID. Strip out non-safe characters, replace + // spaces with hyphens, truncate to 32 characters, and make toLowerCase. + // + // Example string: // '⚡⚡⚡ Unicode icons are cool--but they definitely don't belong in a URL fragment.' + tidyText = roughText + .replace(/[^\w\s-]/gi, '') // ' Unicode icons are cool--but they definitely dont belong in a URL fragment' + .replace(/\s+/g, '-') // '-Unicode-icons-are-cool--but-they-definitely-dont-belong-in-a-URL-fragment' + .replace(/-{2,}/g, '-') // '-Unicode-icons-are-cool-but-they-definitely-dont-belong-in-a-URL-fragment' + .substring(0, 64) // '-Unicode-icons-are-cool-but-they-definitely-dont-belong-in-a-URL' + .replace(/^-+|-+$/gm, '') // 'Unicode-icons-are-cool-but-they-definitely-dont-belong-in-a-URL' + .toLowerCase(); // 'unicode-icons-are-cool-but-they-definitely-dont-belong-in-a-url' + + // Compare our generated ID to existing IDs (and increment it if needed) + // before we add it to the page. + newTidyText = tidyText; + count = 0; + do { + if (index !== undefined) { + newTidyText = tidyText + '-' + count; + } + // .indexOf is supported in IE9+. + index = idList.indexOf(newTidyText); + count += 1; + } while (index !== -1); + index = undefined; + idList.push(newTidyText); + + // Assign it to our element. + // Currently the setAttribute element is only supported in IE9 and above. + elements[i].setAttribute('id', newTidyText); + + elementID = newTidyText; + } + + readableID = elementID.replace(/-/g, ' '); + + // The following code builds the following DOM structure in a more effiecient (albeit opaque) way. + // ''; + anchor = document.createElement('a'); + anchor.className = 'anchorjs-link ' + this.options.class; + anchor.href = '#' + elementID; + anchor.setAttribute('aria-label', 'Anchor link for: ' + readableID); + anchor.setAttribute('data-anchorjs-icon', this.options.icon); + + if (this.options.visible === 'always') { + anchor.style.opacity = '1'; + } + + if (this.options.icon === '\ue9cb') { + anchor.style.fontFamily = 'anchorjs-icons'; + anchor.style.fontStyle = 'normal'; + anchor.style.fontVariant = 'normal'; + anchor.style.fontWeight = 'normal'; + anchor.style.lineHeight = 1; + } + + if (this.options.placement === 'left') { + anchor.style.position = 'absolute'; + anchor.style.marginLeft = '-1em'; + anchor.style.paddingRight = '0.5em'; + elements[i].insertBefore(anchor, elements[i].firstChild); + } else { + // if the option provided is `right` (or anything else). + anchor.style.paddingLeft = '0.375em'; + elements[i].appendChild(anchor); + } + } + + return this; + }; + + this.remove = function(selector) { + var domAnchor, elements = document.querySelectorAll(selector); + for (var i = 0; i < elements.length; i++) { + domAnchor = elements[i].querySelector('.anchorjs-link'); + if (domAnchor) { + elements[i].removeChild(domAnchor); + } + } + return this; + }; + + this._addBaselineStyles = function() { + // We don't want to add global baseline styles if they've been added before. + if (document.head.querySelector('style.anchorjs') !== null) { + return; + } + + var style = document.createElement('style'), + linkRule = ' .anchorjs-link {' + + ' opacity: 0;' + + ' text-decoration: none;' + + ' -webkit-font-smoothing: antialiased;' + + ' -moz-osx-font-smoothing: grayscale;' + + ' }', + hoverRule = ' *:hover > .anchorjs-link,' + + ' .anchorjs-link:focus {' + + ' opacity: 1;' + + ' }', + anchorjsLinkFontFace = ' @font-face {' + + ' font-family: "anchorjs-icons";' + + ' font-style: normal;' + + ' font-weight: normal;' + // Icon from icomoon; 10px wide & 10px tall; 2 empty below & 4 above + ' src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBTUAAAC8AAAAYGNtYXAWi9QdAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zgq29TcAAAF4AAABNGhlYWQEZM3pAAACrAAAADZoaGVhBhUDxgAAAuQAAAAkaG10eASAADEAAAMIAAAAFGxvY2EAKACuAAADHAAAAAxtYXhwAAgAVwAAAygAAAAgbmFtZQ5yJ3cAAANIAAAB2nBvc3QAAwAAAAAFJAAAACAAAwJAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpywPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6cv//f//AAAAAAAg6cv//f//AAH/4xY5AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACADEARAJTAsAAKwBUAAABIiYnJjQ/AT4BMzIWFxYUDwEGIicmND8BNjQnLgEjIgYPAQYUFxYUBw4BIwciJicmND8BNjIXFhQPAQYUFx4BMzI2PwE2NCcmNDc2MhcWFA8BDgEjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAEAAAABAACiToc1Xw889QALBAAAAAAA0XnFFgAAAADRecUWAAAAAAJTAsAAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAAlMAAQAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAACAAAAAoAAMQAAAAAACgAUAB4AmgABAAAABQBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIABwCfAAEAAAAAAAMADgBLAAEAAAAAAAQADgC0AAEAAAAAAAUACwAqAAEAAAAAAAYADgB1AAEAAAAAAAoAGgDeAAMAAQQJAAEAHAAOAAMAAQQJAAIADgCmAAMAAQQJAAMAHABZAAMAAQQJAAQAHADCAAMAAQQJAAUAFgA1AAMAAQQJAAYAHACDAAMAAQQJAAoANAD4YW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");' + + ' }', + pseudoElContent = ' [data-anchorjs-icon]::after {' + + ' content: attr(data-anchorjs-icon);' + + ' }', + firstStyleEl; + + style.className = 'anchorjs'; + style.appendChild(document.createTextNode('')); // Necessary for Webkit. + + // We place it in the head with the other style tags, if possible, so as to + // not look out of place. We insert before the others so these styles can be + // overridden if necessary. + firstStyleEl = document.head.querySelector('[rel="stylesheet"], style'); + if (firstStyleEl === undefined) { + document.head.appendChild(style); + } else { + document.head.insertBefore(style, firstStyleEl); + } + + style.sheet.insertRule(linkRule, style.sheet.cssRules.length); + style.sheet.insertRule(hoverRule, style.sheet.cssRules.length); + style.sheet.insertRule(pseudoElContent, style.sheet.cssRules.length); + style.sheet.insertRule(anchorjsLinkFontFace, style.sheet.cssRules.length); + }; +} + +var anchors = new AnchorJS(); diff --git a/docs/assets/bass-addons.css b/docs/assets/bass-addons.css new file mode 100644 index 00000000..c27e96d8 --- /dev/null +++ b/docs/assets/bass-addons.css @@ -0,0 +1,12 @@ +.input { + font-family: inherit; + display: block; + width: 100%; + height: 2rem; + padding: .5rem; + margin-bottom: 1rem; + border: 1px solid #ccc; + font-size: .875rem; + border-radius: 3px; + box-sizing: border-box; +} diff --git a/docs/assets/bass.css b/docs/assets/bass.css new file mode 100644 index 00000000..70d19b8a --- /dev/null +++ b/docs/assets/bass.css @@ -0,0 +1,1112 @@ +/*! Basscss | http://basscss.com | MIT License */ + +.h1 { + font-size: 2rem +} + +.h2 { + font-size: 1.5rem +} + +.h3 { + font-size: 1.25rem +} + +.h4 { + font-size: 1rem +} + +.h5 { + font-size: .875rem +} + +.h6 { + font-size: .75rem +} + +.font-family-inherit { + font-family: inherit +} + +.font-size-inherit { + font-size: inherit +} + +.text-decoration-none { + text-decoration: none +} + +.bold { + font-weight: bold; + font-weight: bold +} + +.regular { + font-weight: normal +} + +.italic { + font-style: italic +} + +.caps { + text-transform: uppercase; + letter-spacing: .2em; +} + +.left-align { + text-align: left +} + +.center { + text-align: center +} + +.right-align { + text-align: right +} + +.justify { + text-align: justify +} + +.nowrap { + white-space: nowrap +} + +.break-word { + word-wrap: break-word +} + +.line-height-1 { + line-height: 1 +} + +.line-height-2 { + line-height: 1.125 +} + +.line-height-3 { + line-height: 1.25 +} + +.line-height-4 { + line-height: 1.5 +} + +.list-style-none { + list-style: none +} + +.underline { + text-decoration: underline +} + +.truncate { + max-width: 100%; + overflow: hidden; + text-overflow: ellipsis; +} + +.list-reset { + list-style: none; + padding-left: 0; +} + +.inline { + display: inline +} + +.block { + display: block +} + +.inline-block { + display: inline-block +} + +.table { + display: table +} + +.table-cell { + display: table-cell +} + +.overflow-hidden { + overflow: hidden +} + +.overflow-scroll { + overflow: scroll +} + +.overflow-auto { + overflow: auto +} + +.clearfix:before, +.clearfix:after { + content: " "; + display: table +} + +.clearfix:after { + clear: both +} + +.left { + float: left +} + +.right { + float: right +} + +.fit { + max-width: 100% +} + +.max-width-1 { + max-width: 24rem +} + +.max-width-2 { + max-width: 32rem +} + +.max-width-3 { + max-width: 48rem +} + +.max-width-4 { + max-width: 64rem +} + +.border-box { + box-sizing: border-box +} + +.align-baseline { + vertical-align: baseline +} + +.align-top { + vertical-align: top +} + +.align-middle { + vertical-align: middle +} + +.align-bottom { + vertical-align: bottom +} + +.m0 { + margin: 0 +} + +.mt0 { + margin-top: 0 +} + +.mr0 { + margin-right: 0 +} + +.mb0 { + margin-bottom: 0 +} + +.ml0 { + margin-left: 0 +} + +.mx0 { + margin-left: 0; + margin-right: 0 +} + +.my0 { + margin-top: 0; + margin-bottom: 0 +} + +.m1 { + margin: .5rem +} + +.mt1 { + margin-top: .5rem +} + +.mr1 { + margin-right: .5rem +} + +.mb1 { + margin-bottom: .5rem +} + +.ml1 { + margin-left: .5rem +} + +.mx1 { + margin-left: .5rem; + margin-right: .5rem +} + +.my1 { + margin-top: .5rem; + margin-bottom: .5rem +} + +.m2 { + margin: 1rem +} + +.mt2 { + margin-top: 1rem +} + +.mr2 { + margin-right: 1rem +} + +.mb2 { + margin-bottom: 1rem +} + +.ml2 { + margin-left: 1rem +} + +.mx2 { + margin-left: 1rem; + margin-right: 1rem +} + +.my2 { + margin-top: 1rem; + margin-bottom: 1rem +} + +.m3 { + margin: 2rem +} + +.mt3 { + margin-top: 2rem +} + +.mr3 { + margin-right: 2rem +} + +.mb3 { + margin-bottom: 2rem +} + +.ml3 { + margin-left: 2rem +} + +.mx3 { + margin-left: 2rem; + margin-right: 2rem +} + +.my3 { + margin-top: 2rem; + margin-bottom: 2rem +} + +.m4 { + margin: 4rem +} + +.mt4 { + margin-top: 4rem +} + +.mr4 { + margin-right: 4rem +} + +.mb4 { + margin-bottom: 4rem +} + +.ml4 { + margin-left: 4rem +} + +.mx4 { + margin-left: 4rem; + margin-right: 4rem +} + +.my4 { + margin-top: 4rem; + margin-bottom: 4rem +} + +.mxn1 { + margin-left: -.5rem; + margin-right: -.5rem; +} + +.mxn2 { + margin-left: -1rem; + margin-right: -1rem; +} + +.mxn3 { + margin-left: -2rem; + margin-right: -2rem; +} + +.mxn4 { + margin-left: -4rem; + margin-right: -4rem; +} + +.ml-auto { + margin-left: auto +} + +.mr-auto { + margin-right: auto +} + +.mx-auto { + margin-left: auto; + margin-right: auto; +} + +.p0 { + padding: 0 +} + +.pt0 { + padding-top: 0 +} + +.pr0 { + padding-right: 0 +} + +.pb0 { + padding-bottom: 0 +} + +.pl0 { + padding-left: 0 +} + +.px0 { + padding-left: 0; + padding-right: 0 +} + +.py0 { + padding-top: 0; + padding-bottom: 0 +} + +.p1 { + padding: .5rem +} + +.pt1 { + padding-top: .5rem +} + +.pr1 { + padding-right: .5rem +} + +.pb1 { + padding-bottom: .5rem +} + +.pl1 { + padding-left: .5rem +} + +.py1 { + padding-top: .5rem; + padding-bottom: .5rem +} + +.px1 { + padding-left: .5rem; + padding-right: .5rem +} + +.p2 { + padding: 1rem +} + +.pt2 { + padding-top: 1rem +} + +.pr2 { + padding-right: 1rem +} + +.pb2 { + padding-bottom: 1rem +} + +.pl2 { + padding-left: 1rem +} + +.py2 { + padding-top: 1rem; + padding-bottom: 1rem +} + +.px2 { + padding-left: 1rem; + padding-right: 1rem +} + +.p3 { + padding: 2rem +} + +.pt3 { + padding-top: 2rem +} + +.pr3 { + padding-right: 2rem +} + +.pb3 { + padding-bottom: 2rem +} + +.pl3 { + padding-left: 2rem +} + +.py3 { + padding-top: 2rem; + padding-bottom: 2rem +} + +.px3 { + padding-left: 2rem; + padding-right: 2rem +} + +.p4 { + padding: 4rem +} + +.pt4 { + padding-top: 4rem +} + +.pr4 { + padding-right: 4rem +} + +.pb4 { + padding-bottom: 4rem +} + +.pl4 { + padding-left: 4rem +} + +.py4 { + padding-top: 4rem; + padding-bottom: 4rem +} + +.px4 { + padding-left: 4rem; + padding-right: 4rem +} + +.col { + float: left; + box-sizing: border-box; +} + +.col-right { + float: right; + box-sizing: border-box; +} + +.col-1 { + width: 8.33333%; +} + +.col-2 { + width: 16.66667%; +} + +.col-3 { + width: 25%; +} + +.col-4 { + width: 33.33333%; +} + +.col-5 { + width: 41.66667%; +} + +.col-6 { + width: 50%; +} + +.col-7 { + width: 58.33333%; +} + +.col-8 { + width: 66.66667%; +} + +.col-9 { + width: 75%; +} + +.col-10 { + width: 83.33333%; +} + +.col-11 { + width: 91.66667%; +} + +.col-12 { + width: 100%; +} + +@media (min-width: 40em) { + .sm-col { + float: left; + box-sizing: border-box; + } + .sm-col-right { + float: right; + box-sizing: border-box; + } + .sm-col-1 { + width: 8.33333%; + } + .sm-col-2 { + width: 16.66667%; + } + .sm-col-3 { + width: 25%; + } + .sm-col-4 { + width: 33.33333%; + } + .sm-col-5 { + width: 41.66667%; + } + .sm-col-6 { + width: 50%; + } + .sm-col-7 { + width: 58.33333%; + } + .sm-col-8 { + width: 66.66667%; + } + .sm-col-9 { + width: 75%; + } + .sm-col-10 { + width: 83.33333%; + } + .sm-col-11 { + width: 91.66667%; + } + .sm-col-12 { + width: 100%; + } +} + +@media (min-width: 52em) { + .md-col { + float: left; + box-sizing: border-box; + } + .md-col-right { + float: right; + box-sizing: border-box; + } + .md-col-1 { + width: 8.33333%; + } + .md-col-2 { + width: 16.66667%; + } + .md-col-3 { + width: 25%; + } + .md-col-4 { + width: 33.33333%; + } + .md-col-5 { + width: 41.66667%; + } + .md-col-6 { + width: 50%; + } + .md-col-7 { + width: 58.33333%; + } + .md-col-8 { + width: 66.66667%; + } + .md-col-9 { + width: 75%; + } + .md-col-10 { + width: 83.33333%; + } + .md-col-11 { + width: 91.66667%; + } + .md-col-12 { + width: 100%; + } +} + +@media (min-width: 64em) { + .lg-col { + float: left; + box-sizing: border-box; + } + .lg-col-right { + float: right; + box-sizing: border-box; + } + .lg-col-1 { + width: 8.33333%; + } + .lg-col-2 { + width: 16.66667%; + } + .lg-col-3 { + width: 25%; + } + .lg-col-4 { + width: 33.33333%; + } + .lg-col-5 { + width: 41.66667%; + } + .lg-col-6 { + width: 50%; + } + .lg-col-7 { + width: 58.33333%; + } + .lg-col-8 { + width: 66.66667%; + } + .lg-col-9 { + width: 75%; + } + .lg-col-10 { + width: 83.33333%; + } + .lg-col-11 { + width: 91.66667%; + } + .lg-col-12 { + width: 100%; + } +} + +.flex { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex +} + +@media (min-width: 40em) { + .sm-flex { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex + } +} + +@media (min-width: 52em) { + .md-flex { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex + } +} + +@media (min-width: 64em) { + .lg-flex { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex + } +} + +.flex-column { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column +} + +.flex-wrap { + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap +} + +.items-start { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + -ms-grid-row-align: flex-start; + align-items: flex-start +} + +.items-end { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + -ms-grid-row-align: flex-end; + align-items: flex-end +} + +.items-center { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center +} + +.items-baseline { + -webkit-box-align: baseline; + -webkit-align-items: baseline; + -ms-flex-align: baseline; + -ms-grid-row-align: baseline; + align-items: baseline +} + +.items-stretch { + -webkit-box-align: stretch; + -webkit-align-items: stretch; + -ms-flex-align: stretch; + -ms-grid-row-align: stretch; + align-items: stretch +} + +.self-start { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start +} + +.self-end { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end +} + +.self-center { + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center +} + +.self-baseline { + -webkit-align-self: baseline; + -ms-flex-item-align: baseline; + align-self: baseline +} + +.self-stretch { + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + align-self: stretch +} + +.justify-start { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start +} + +.justify-end { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end +} + +.justify-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center +} + +.justify-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between +} + +.justify-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around +} + +.content-start { + -webkit-align-content: flex-start; + -ms-flex-line-pack: start; + align-content: flex-start +} + +.content-end { + -webkit-align-content: flex-end; + -ms-flex-line-pack: end; + align-content: flex-end +} + +.content-center { + -webkit-align-content: center; + -ms-flex-line-pack: center; + align-content: center +} + +.content-between { + -webkit-align-content: space-between; + -ms-flex-line-pack: justify; + align-content: space-between +} + +.content-around { + -webkit-align-content: space-around; + -ms-flex-line-pack: distribute; + align-content: space-around +} + +.content-stretch { + -webkit-align-content: stretch; + -ms-flex-line-pack: stretch; + align-content: stretch +} + +.flex-auto { + -webkit-box-flex: 1; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + min-width: 0; + min-height: 0; +} + +.flex-none { + -webkit-box-flex: 0; + -webkit-flex: none; + -ms-flex: none; + flex: none +} + +.order-0 { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0 +} + +.order-1 { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1 +} + +.order-2 { + -webkit-box-ordinal-group: 3; + -webkit-order: 2; + -ms-flex-order: 2; + order: 2 +} + +.order-3 { + -webkit-box-ordinal-group: 4; + -webkit-order: 3; + -ms-flex-order: 3; + order: 3 +} + +.order-last { + -webkit-box-ordinal-group: 100000; + -webkit-order: 99999; + -ms-flex-order: 99999; + order: 99999 +} + +.relative { + position: relative +} + +.absolute { + position: absolute +} + +.fixed { + position: fixed +} + +.top-0 { + top: 0 +} + +.right-0 { + right: 0 +} + +.bottom-0 { + bottom: 0 +} + +.left-0 { + left: 0 +} + +.z1 { + z-index: 1 +} + +.z2 { + z-index: 2 +} + +.z3 { + z-index: 3 +} + +.z4 { + z-index: 4 +} + +.border { + border-style: solid; + border-width: 1px; +} + +.border-top { + border-top-style: solid; + border-top-width: 1px; +} + +.border-right { + border-right-style: solid; + border-right-width: 1px; +} + +.border-bottom { + border-bottom-style: solid; + border-bottom-width: 1px; +} + +.border-left { + border-left-style: solid; + border-left-width: 1px; +} + +.border-none { + border: 0 +} + +.rounded { + border-radius: 3px +} + +.circle { + border-radius: 50% +} + +.rounded-top { + border-radius: 3px 3px 0 0 +} + +.rounded-right { + border-radius: 0 3px 3px 0 +} + +.rounded-bottom { + border-radius: 0 0 3px 3px +} + +.rounded-left { + border-radius: 3px 0 0 3px +} + +.not-rounded { + border-radius: 0 +} + +.hide { + position: absolute !important; + height: 1px; + width: 1px; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); +} + +@media (max-width: 40em) { + .xs-hide { + display: none !important + } +} + +@media (min-width: 40em) and (max-width: 52em) { + .sm-hide { + display: none !important + } +} + +@media (min-width: 52em) and (max-width: 64em) { + .md-hide { + display: none !important + } +} + +@media (min-width: 64em) { + .lg-hide { + display: none !important + } +} + +.display-none { + display: none !important +} \ No newline at end of file diff --git a/docs/assets/fonts/EOT/SourceCodePro-Bold.eot b/docs/assets/fonts/EOT/SourceCodePro-Bold.eot new file mode 100755 index 00000000..d24cc39f Binary files /dev/null and b/docs/assets/fonts/EOT/SourceCodePro-Bold.eot differ diff --git a/docs/assets/fonts/EOT/SourceCodePro-Regular.eot b/docs/assets/fonts/EOT/SourceCodePro-Regular.eot new file mode 100755 index 00000000..09e94730 Binary files /dev/null and b/docs/assets/fonts/EOT/SourceCodePro-Regular.eot differ diff --git a/docs/assets/fonts/LICENSE.txt b/docs/assets/fonts/LICENSE.txt new file mode 100755 index 00000000..d154618a --- /dev/null +++ b/docs/assets/fonts/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/docs/assets/fonts/OTF/SourceCodePro-Bold.otf b/docs/assets/fonts/OTF/SourceCodePro-Bold.otf new file mode 100755 index 00000000..f4e576ce Binary files /dev/null and b/docs/assets/fonts/OTF/SourceCodePro-Bold.otf differ diff --git a/docs/assets/fonts/OTF/SourceCodePro-Regular.otf b/docs/assets/fonts/OTF/SourceCodePro-Regular.otf new file mode 100755 index 00000000..4e3b9d0b Binary files /dev/null and b/docs/assets/fonts/OTF/SourceCodePro-Regular.otf differ diff --git a/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf b/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf new file mode 100755 index 00000000..e0c576f1 Binary files /dev/null and b/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf differ diff --git a/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf b/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf new file mode 100755 index 00000000..437f4728 Binary files /dev/null and b/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf differ diff --git a/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff b/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff new file mode 100755 index 00000000..cf960992 Binary files /dev/null and b/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff differ diff --git a/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff b/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff new file mode 100755 index 00000000..395436eb Binary files /dev/null and b/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff differ diff --git a/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff b/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff new file mode 100755 index 00000000..c65ba841 Binary files /dev/null and b/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff differ diff --git a/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff b/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff new file mode 100755 index 00000000..0af792a1 Binary files /dev/null and b/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff differ diff --git a/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 b/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 new file mode 100755 index 00000000..cbe38353 Binary files /dev/null and b/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 differ diff --git a/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 b/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 new file mode 100755 index 00000000..65cd591b Binary files /dev/null and b/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 differ diff --git a/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 b/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 new file mode 100755 index 00000000..b78d5235 Binary files /dev/null and b/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 differ diff --git a/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 b/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 new file mode 100755 index 00000000..18d2199e Binary files /dev/null and b/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 differ diff --git a/docs/assets/fonts/source-code-pro.css b/docs/assets/fonts/source-code-pro.css new file mode 100755 index 00000000..3abb4f09 --- /dev/null +++ b/docs/assets/fonts/source-code-pro.css @@ -0,0 +1,23 @@ +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Regular.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Regular.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Regular.otf.woff') format('woff'), + url('OTF/SourceCodePro-Regular.otf') format('opentype'), + url('TTF/SourceCodePro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Bold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Bold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Bold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Bold.otf') format('opentype'), + url('TTF/SourceCodePro-Bold.ttf') format('truetype'); +} diff --git a/docs/assets/github.css b/docs/assets/github.css new file mode 100644 index 00000000..8852abb4 --- /dev/null +++ b/docs/assets/github.css @@ -0,0 +1,123 @@ +/* + +github.com style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + color: #333; + background: #f8f8f8; + -webkit-text-size-adjust: none; +} + +.hljs-comment, +.diff .hljs-header, +.hljs-javadoc { + color: #998; + font-style: italic; +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.nginx .hljs-title, +.hljs-subst, +.hljs-request, +.hljs-status { + color: #1184CE; +} + +.hljs-number, +.hljs-hexcolor, +.ruby .hljs-constant { + color: #ed225d; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.hljs-dartdoc, +.tex .hljs-formula { + color: #ed225d; +} + +.hljs-title, +.hljs-id, +.scss .hljs-preprocessor { + color: #900; + font-weight: bold; +} + +.hljs-list .hljs-keyword, +.hljs-subst { + font-weight: normal; +} + +.hljs-class .hljs-title, +.hljs-type, +.vhdl .hljs-literal, +.tex .hljs-command { + color: #458; + font-weight: bold; +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal; +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body { + color: #008080; +} + +.hljs-regexp { + color: #009926; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.lisp .hljs-keyword, +.clojure .hljs-keyword, +.scheme .hljs-keyword, +.tex .hljs-special, +.hljs-prompt { + color: #990073; +} + +.hljs-built_in { + color: #0086b3; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold; +} + +.hljs-deletion { + background: #fdd; +} + +.hljs-addition { + background: #dfd; +} + +.diff .hljs-change { + background: #0086b3; +} + +.hljs-chunk { + color: #aaa; +} diff --git a/docs/assets/site.js b/docs/assets/site.js new file mode 100644 index 00000000..55ada036 --- /dev/null +++ b/docs/assets/site.js @@ -0,0 +1,110 @@ +/* global anchors */ + +// add anchor links to headers +anchors.options.placement = 'left'; +anchors.add('h3'); + +// Filter UI +var tocElements = document.getElementById('toc').getElementsByTagName('li'); + +document.getElementById('filter-input').addEventListener('keyup', function(e) { + var i, element, children; + + // enter key + if (e.keyCode === 13) { + // go to the first displayed item in the toc + for (i = 0; i < tocElements.length; i++) { + element = tocElements[i]; + if (!element.classList.contains('display-none')) { + location.replace(element.firstChild.href); + return e.preventDefault(); + } + } + } + + var match = function() { + return true; + }; + + var value = this.value.toLowerCase(); + + if (!value.match(/^\s*$/)) { + match = function(element) { + return element.firstChild.innerHTML.toLowerCase().indexOf(value) !== -1; + }; + } + + for (i = 0; i < tocElements.length; i++) { + element = tocElements[i]; + children = Array.from(element.getElementsByTagName('li')); + if (match(element) || children.some(match)) { + element.classList.remove('display-none'); + } else { + element.classList.add('display-none'); + } + } +}); + +var toggles = document.getElementsByClassName('toggle-step-sibling'); +for (var i = 0; i < toggles.length; i++) { + toggles[i].addEventListener('click', toggleStepSibling); +} + +function toggleStepSibling() { + var stepSibling = this.parentNode.parentNode.parentNode.getElementsByClassName( + 'toggle-target' + )[0]; + var klass = 'display-none'; + if (stepSibling.classList.contains(klass)) { + stepSibling.classList.remove(klass); + stepSibling.innerHTML = '▾'; + } else { + stepSibling.classList.add(klass); + stepSibling.innerHTML = '▸'; + } +} + +var items = document.getElementsByClassName('toggle-sibling'); +for (var j = 0; j < items.length; j++) { + items[j].addEventListener('click', toggleSibling); +} + +function toggleSibling() { + var stepSibling = this.parentNode.getElementsByClassName('toggle-target')[0]; + var icon = this.getElementsByClassName('icon')[0]; + var klass = 'display-none'; + if (stepSibling.classList.contains(klass)) { + stepSibling.classList.remove(klass); + icon.innerHTML = '▾'; + } else { + stepSibling.classList.add(klass); + icon.innerHTML = '▸'; + } +} + +function showHashTarget(targetId) { + var hashTarget = document.getElementById(targetId); + // new target is hidden + if ( + hashTarget && + hashTarget.offsetHeight === 0 && + hashTarget.parentNode.parentNode.classList.contains('display-none') + ) { + hashTarget.parentNode.parentNode.classList.remove('display-none'); + } +} + +window.addEventListener('hashchange', function() { + showHashTarget(location.hash.substring(1)); +}); + +showHashTarget(location.hash.substring(1)); + +var toclinks = document.getElementsByClassName('pre-open'); +for (var k = 0; k < toclinks.length; k++) { + toclinks[k].addEventListener('mousedown', preOpen, false); +} + +function preOpen() { + showHashTarget(this.hash.substring(1)); +} diff --git a/docs/assets/style.css b/docs/assets/style.css new file mode 100644 index 00000000..109e1577 --- /dev/null +++ b/docs/assets/style.css @@ -0,0 +1,144 @@ +.documentation { + font-family: Helvetica, sans-serif; + color: #666; + line-height: 1.5; + background: #f5f5f5; +} + +.black { + color: #666; +} + +.bg-white { + background-color: #fff; +} + +h4 { + margin: 20px 0 10px 0; +} + +.documentation h3 { + color: #000; +} + +.border-bottom { + border-color: #ddd; +} + +a { + color: #e8524b; + text-decoration: none; +} + +.documentation a[href]:hover { + text-decoration: underline; +} + +a:hover { + cursor: pointer; +} + +.py1-ul li { + padding: 5px 0; +} + +.max-height-100 { + max-height: 100%; +} + +section:target h3 { + font-weight: 700; +} + +.documentation td, +.documentation th { + padding: .25rem .25rem; +} + +h1:hover .anchorjs-link, +h2:hover .anchorjs-link, +h3:hover .anchorjs-link, +h4:hover .anchorjs-link { + opacity: 1; +} + +.fix-3 { + width: 25%; + max-width: 244px; +} + +.fix-3 { + width: 25%; + max-width: 244px; +} + +@media (min-width: 52em) { + .fix-margin-3 { + margin-left: 25%; + } +} + +.pre, +pre, +code, +.code { + font-family: Source Code Pro, Menlo, Consolas, Liberation Mono, monospace; + font-size: 14px; +} + +.fill-light { + background: #F9F9F9; +} + +.width2 { + width: 1rem; +} + +.input { + font-family: inherit; + display: block; + width: 100%; + height: 2rem; + padding: .5rem; + margin-bottom: 1rem; + border: 1px solid #ccc; + font-size: .875rem; + border-radius: 3px; + box-sizing: border-box; +} + +table { + border-collapse: collapse; +} + +.prose table th, +.prose table td { + text-align: left; + padding: 8px; + border: 1px solid #ddd; +} + +.prose table th:nth-child(1) { + border-right: none; +} + +.prose table th:nth-child(2) { + border-left: none; +} + +.prose table { + border: 1px solid #ddd; +} + +.prose-big { + font-size: 18px; + line-height: 30px; +} + +.quiet { + opacity: 0.7; +} + +.minishadow { + box-shadow: 2px 2px 10px #f3f3f3; +} \ No newline at end of file diff --git a/docs/ast/source/doc/script/inherited-summary.js.json b/docs/ast/source/doc/script/inherited-summary.js.json deleted file mode 100644 index e2ff6e03..00000000 --- a/docs/ast/source/doc/script/inherited-summary.js.json +++ /dev/null @@ -1,7456 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 817, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 28, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 817, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 28, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 817, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 28, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 816, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 28, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 813, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 813, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 17, - "end": 632, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 22, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 26, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 11 - }, - "end": { - "line": 2, - "column": 17 - }, - "identifierName": "toggle" - }, - "name": "toggle" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 33, - "end": 35, - "loc": { - "start": { - "line": 2, - "column": 18 - }, - "end": { - "line": 2, - "column": 20 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 37, - "end": 632, - "loc": { - "start": { - "line": 2, - "column": 22 - }, - "end": { - "line": 22, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 43, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 27 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 47, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 26 - } - }, - "id": { - "type": "Identifier", - "start": 47, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 14 - }, - "identifierName": "button" - }, - "name": "button" - }, - "init": { - "type": "MemberExpression", - "start": 56, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 56, - "end": 58, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 19 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 59, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 26 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 71, - "end": 108, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 41 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 75, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 40 - } - }, - "id": { - "type": "Identifier", - "start": 75, - "end": 81, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 14 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "init": { - "type": "MemberExpression", - "start": 84, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 40 - } - }, - "object": { - "type": "MemberExpression", - "start": 84, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 84, - "end": 86, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 19 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 87, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 26 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 94, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 40 - }, - "identifierName": "parentElement" - }, - "name": "parentElement" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "WhileStatement", - "start": 113, - "end": 257, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 120, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 17 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "body": { - "type": "BlockStatement", - "start": 128, - "end": 257, - "loc": { - "start": { - "line": 5, - "column": 19 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 136, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 84 - } - }, - "test": { - "type": "LogicalExpression", - "start": 140, - "end": 206, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 76 - } - }, - "left": { - "type": "BinaryExpression", - "start": 140, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "left": { - "type": "MemberExpression", - "start": 140, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 140, - "end": 146, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 16 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 147, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 24 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 159, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 29 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "extra": { - "rawValue": "TABLE", - "raw": "'TABLE'" - }, - "value": "TABLE" - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 170, - "end": 206, - "loc": { - "start": { - "line": 6, - "column": 40 - }, - "end": { - "line": 6, - "column": 76 - } - }, - "callee": { - "type": "MemberExpression", - "start": 170, - "end": 195, - "loc": { - "start": { - "line": 6, - "column": 40 - }, - "end": { - "line": 6, - "column": 65 - } - }, - "object": { - "type": "MemberExpression", - "start": 170, - "end": 186, - "loc": { - "start": { - "line": 6, - "column": 40 - }, - "end": { - "line": 6, - "column": 56 - } - }, - "object": { - "type": "Identifier", - "start": 170, - "end": 176, - "loc": { - "start": { - "line": 6, - "column": 40 - }, - "end": { - "line": 6, - "column": 46 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 177, - "end": 186, - "loc": { - "start": { - "line": 6, - "column": 47 - }, - "end": { - "line": 6, - "column": 56 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 187, - "end": 195, - "loc": { - "start": { - "line": 6, - "column": 57 - }, - "end": { - "line": 6, - "column": 65 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 196, - "end": 205, - "loc": { - "start": { - "line": 6, - "column": 66 - }, - "end": { - "line": 6, - "column": 75 - } - }, - "extra": { - "rawValue": "summary", - "raw": "'summary'" - }, - "value": "summary" - } - ] - } - }, - "consequent": { - "type": "BreakStatement", - "start": 208, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 78 - }, - "end": { - "line": 6, - "column": 84 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 221, - "end": 251, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 36 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 221, - "end": 250, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 35 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 221, - "end": 227, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 12 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "right": { - "type": "MemberExpression", - "start": 230, - "end": 250, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 230, - "end": 236, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 21 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 237, - "end": 250, - "loc": { - "start": { - "line": 7, - "column": 22 - }, - "end": { - "line": 7, - "column": 35 - }, - "identifierName": "parentElement" - }, - "name": "parentElement" - }, - "computed": false - } - } - } - ], - "directives": [] - } - }, - { - "type": "IfStatement", - "start": 263, - "end": 283, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "test": { - "type": "UnaryExpression", - "start": 267, - "end": 274, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 15 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 268, - "end": 274, - "loc": { - "start": { - "line": 10, - "column": 9 - }, - "end": { - "line": 10, - "column": 15 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 276, - "end": 283, - "loc": { - "start": { - "line": 10, - "column": 17 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 289, - "end": 331, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 46 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 293, - "end": 330, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 45 - } - }, - "id": { - "type": "Identifier", - "start": 293, - "end": 298, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 13 - }, - "identifierName": "tbody" - }, - "name": "tbody" - }, - "init": { - "type": "CallExpression", - "start": 301, - "end": 330, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 45 - } - }, - "callee": { - "type": "MemberExpression", - "start": 301, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 301, - "end": 307, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 22 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 308, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 23 - }, - "end": { - "line": 12, - "column": 36 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 322, - "end": 329, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 44 - } - }, - "extra": { - "rawValue": "tbody", - "raw": "'tbody'" - }, - "value": "tbody" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 336, - "end": 628, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 21, - "column": 5 - } - }, - "test": { - "type": "CallExpression", - "start": 340, - "end": 375, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 43 - } - }, - "callee": { - "type": "MemberExpression", - "start": 340, - "end": 365, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 33 - } - }, - "object": { - "type": "MemberExpression", - "start": 340, - "end": 356, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 340, - "end": 346, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 14 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 347, - "end": 356, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 24 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 357, - "end": 365, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 33 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 366, - "end": 374, - "loc": { - "start": { - "line": 13, - "column": 34 - }, - "end": { - "line": 13, - "column": 42 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - }, - "consequent": { - "type": "BlockStatement", - "start": 377, - "end": 499, - "loc": { - "start": { - "line": 13, - "column": 45 - }, - "end": { - "line": 17, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 385, - "end": 419, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 40 - } - }, - "expression": { - "type": "CallExpression", - "start": 385, - "end": 418, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 385, - "end": 408, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 29 - } - }, - "object": { - "type": "MemberExpression", - "start": 385, - "end": 401, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 385, - "end": 391, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 392, - "end": 401, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 402, - "end": 408, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 29 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 409, - "end": 417, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 14, - "column": 38 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 426, - "end": 457, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 37 - } - }, - "expression": { - "type": "CallExpression", - "start": 426, - "end": 456, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 426, - "end": 446, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 26 - } - }, - "object": { - "type": "MemberExpression", - "start": 426, - "end": 442, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 426, - "end": 432, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 433, - "end": 442, - "loc": { - "start": { - "line": 15, - "column": 13 - }, - "end": { - "line": 15, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 443, - "end": 446, - "loc": { - "start": { - "line": 15, - "column": 23 - }, - "end": { - "line": 15, - "column": 26 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 447, - "end": 455, - "loc": { - "start": { - "line": 15, - "column": 27 - }, - "end": { - "line": 15, - "column": 35 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 464, - "end": 493, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 35 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 464, - "end": 492, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 34 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 464, - "end": 483, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 25 - } - }, - "object": { - "type": "MemberExpression", - "start": 464, - "end": 475, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 17 - } - }, - "object": { - "type": "Identifier", - "start": 464, - "end": 469, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 11 - }, - "identifierName": "tbody" - }, - "name": "tbody" - }, - "property": { - "type": "Identifier", - "start": 470, - "end": 475, - "loc": { - "start": { - "line": 16, - "column": 12 - }, - "end": { - "line": 16, - "column": 17 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 476, - "end": 483, - "loc": { - "start": { - "line": 16, - "column": 18 - }, - "end": { - "line": 16, - "column": 25 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 486, - "end": 492, - "loc": { - "start": { - "line": 16, - "column": 28 - }, - "end": { - "line": 16, - "column": 34 - } - }, - "extra": { - "rawValue": "none", - "raw": "'none'" - }, - "value": "none" - } - } - } - ], - "directives": [] - }, - "alternate": { - "type": "BlockStatement", - "start": 505, - "end": 628, - "loc": { - "start": { - "line": 17, - "column": 11 - }, - "end": { - "line": 21, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 513, - "end": 547, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 40 - } - }, - "expression": { - "type": "CallExpression", - "start": 513, - "end": 546, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 513, - "end": 536, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 29 - } - }, - "object": { - "type": "MemberExpression", - "start": 513, - "end": 529, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 513, - "end": 519, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 520, - "end": 529, - "loc": { - "start": { - "line": 18, - "column": 13 - }, - "end": { - "line": 18, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 530, - "end": 536, - "loc": { - "start": { - "line": 18, - "column": 23 - }, - "end": { - "line": 18, - "column": 29 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 537, - "end": 545, - "loc": { - "start": { - "line": 18, - "column": 30 - }, - "end": { - "line": 18, - "column": 38 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 554, - "end": 585, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 37 - } - }, - "expression": { - "type": "CallExpression", - "start": 554, - "end": 584, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 554, - "end": 574, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 26 - } - }, - "object": { - "type": "MemberExpression", - "start": 554, - "end": 570, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 554, - "end": 560, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 561, - "end": 570, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 571, - "end": 574, - "loc": { - "start": { - "line": 19, - "column": 23 - }, - "end": { - "line": 19, - "column": 26 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 575, - "end": 583, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 35 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 592, - "end": 622, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 36 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 592, - "end": 621, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 35 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 592, - "end": 611, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 25 - } - }, - "object": { - "type": "MemberExpression", - "start": 592, - "end": 603, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 17 - } - }, - "object": { - "type": "Identifier", - "start": 592, - "end": 597, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 11 - }, - "identifierName": "tbody" - }, - "name": "tbody" - }, - "property": { - "type": "Identifier", - "start": 598, - "end": 603, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 17 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 604, - "end": 611, - "loc": { - "start": { - "line": 20, - "column": 18 - }, - "end": { - "line": 20, - "column": 25 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 614, - "end": 621, - "loc": { - "start": { - "line": 20, - "column": 28 - }, - "end": { - "line": 20, - "column": 35 - } - }, - "extra": { - "rawValue": "block", - "raw": "'block'" - }, - "value": "block" - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 636, - "end": 712, - "loc": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 24, - "column": 78 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 640, - "end": 711, - "loc": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 77 - } - }, - "id": { - "type": "Identifier", - "start": 640, - "end": 647, - "loc": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 13 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "init": { - "type": "CallExpression", - "start": 650, - "end": 711, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 77 - } - }, - "callee": { - "type": "MemberExpression", - "start": 650, - "end": 675, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 41 - } - }, - "object": { - "type": "Identifier", - "start": 650, - "end": 658, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 24 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 659, - "end": 675, - "loc": { - "start": { - "line": 24, - "column": 25 - }, - "end": { - "line": 24, - "column": 41 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 676, - "end": 710, - "loc": { - "start": { - "line": 24, - "column": 42 - }, - "end": { - "line": 24, - "column": 76 - } - }, - "extra": { - "rawValue": ".inherited-summary thead .toggle", - "raw": "'.inherited-summary thead .toggle'" - }, - "value": ".inherited-summary thead .toggle" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 715, - "end": 811, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 27, - "column": 3 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 720, - "end": 729, - "loc": { - "start": { - "line": 25, - "column": 7 - }, - "end": { - "line": 25, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 724, - "end": 729, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 724, - "end": 725, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 728, - "end": 729, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 731, - "end": 749, - "loc": { - "start": { - "line": 25, - "column": 18 - }, - "end": { - "line": 25, - "column": 36 - } - }, - "left": { - "type": "Identifier", - "start": 731, - "end": 732, - "loc": { - "start": { - "line": 25, - "column": 18 - }, - "end": { - "line": 25, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 735, - "end": 749, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 735, - "end": 742, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 29 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "property": { - "type": "Identifier", - "start": 743, - "end": 749, - "loc": { - "start": { - "line": 25, - "column": 30 - }, - "end": { - "line": 25, - "column": 36 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 751, - "end": 754, - "loc": { - "start": { - "line": 25, - "column": 38 - }, - "end": { - "line": 25, - "column": 41 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 751, - "end": 752, - "loc": { - "start": { - "line": 25, - "column": 38 - }, - "end": { - "line": 25, - "column": 39 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 756, - "end": 811, - "loc": { - "start": { - "line": 25, - "column": 43 - }, - "end": { - "line": 27, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 762, - "end": 807, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 49 - } - }, - "expression": { - "type": "CallExpression", - "start": 762, - "end": 806, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 48 - } - }, - "callee": { - "type": "MemberExpression", - "start": 762, - "end": 789, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 31 - } - }, - "object": { - "type": "MemberExpression", - "start": 762, - "end": 772, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 14 - } - }, - "object": { - "type": "Identifier", - "start": 762, - "end": 769, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 11 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "property": { - "type": "Identifier", - "start": 770, - "end": 771, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 13 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 773, - "end": 789, - "loc": { - "start": { - "line": 26, - "column": 15 - }, - "end": { - "line": 26, - "column": 31 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 790, - "end": 797, - "loc": { - "start": { - "line": 26, - "column": 32 - }, - "end": { - "line": 26, - "column": 39 - } - }, - "extra": { - "rawValue": "click", - "raw": "'click'" - }, - "value": "click" - }, - { - "type": "Identifier", - "start": 799, - "end": 805, - "loc": { - "start": { - "line": 26, - "column": 41 - }, - "end": { - "line": 26, - "column": 47 - }, - "identifierName": "toggle" - }, - "name": "toggle" - } - ] - } - } - ], - "directives": [] - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 17, - "end": 25, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toggle", - "start": 26, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 11 - }, - "end": { - "line": 2, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 32, - "end": 33, - "loc": { - "start": { - "line": 2, - "column": 17 - }, - "end": { - "line": 2, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 33, - "end": 35, - "loc": { - "start": { - "line": 2, - "column": 18 - }, - "end": { - "line": 2, - "column": 20 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 35, - "end": 36, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 21 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 37, - "end": 38, - "loc": { - "start": { - "line": 2, - "column": 22 - }, - "end": { - "line": 2, - "column": 23 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 43, - "end": 46, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 47, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 54, - "end": 55, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 56, - "end": 58, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 58, - "end": 59, - "loc": { - "start": { - "line": 3, - "column": 19 - }, - "end": { - "line": 3, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 59, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 65, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 26 - }, - "end": { - "line": 3, - "column": 27 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 71, - "end": 74, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 75, - "end": 81, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 82, - "end": 83, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 84, - "end": 86, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 86, - "end": 87, - "loc": { - "start": { - "line": 4, - "column": 19 - }, - "end": { - "line": 4, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 87, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 93, - "end": 94, - "loc": { - "start": { - "line": 4, - "column": 26 - }, - "end": { - "line": 4, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentElement", - "start": 94, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 107, - "end": 108, - "loc": { - "start": { - "line": 4, - "column": 40 - }, - "end": { - "line": 4, - "column": 41 - } - } - }, - { - "type": { - "label": "while", - "keyword": "while", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "while", - "start": 113, - "end": 118, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 119, - "end": 120, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 120, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 126, - "end": 127, - "loc": { - "start": { - "line": 5, - "column": 17 - }, - "end": { - "line": 5, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 128, - "end": 129, - "loc": { - "start": { - "line": 5, - "column": 19 - }, - "end": { - "line": 5, - "column": 20 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 136, - "end": 138, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 6, - "column": 9 - }, - "end": { - "line": 6, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 140, - "end": 146, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 146, - "end": 147, - "loc": { - "start": { - "line": 6, - "column": 16 - }, - "end": { - "line": 6, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 147, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 24 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 155, - "end": 158, - "loc": { - "start": { - "line": 6, - "column": 25 - }, - "end": { - "line": 6, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "TABLE", - "start": 159, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 29 - }, - "end": { - "line": 6, - "column": 36 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 167, - "end": 169, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 170, - "end": 176, - "loc": { - "start": { - "line": 6, - "column": 40 - }, - "end": { - "line": 6, - "column": 46 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 176, - "end": 177, - "loc": { - "start": { - "line": 6, - "column": 46 - }, - "end": { - "line": 6, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 177, - "end": 186, - "loc": { - "start": { - "line": 6, - "column": 47 - }, - "end": { - "line": 6, - "column": 56 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 186, - "end": 187, - "loc": { - "start": { - "line": 6, - "column": 56 - }, - "end": { - "line": 6, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 187, - "end": 195, - "loc": { - "start": { - "line": 6, - "column": 57 - }, - "end": { - "line": 6, - "column": 65 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 195, - "end": 196, - "loc": { - "start": { - "line": 6, - "column": 65 - }, - "end": { - "line": 6, - "column": 66 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "summary", - "start": 196, - "end": 205, - "loc": { - "start": { - "line": 6, - "column": 66 - }, - "end": { - "line": 6, - "column": 75 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 205, - "end": 206, - "loc": { - "start": { - "line": 6, - "column": 75 - }, - "end": { - "line": 6, - "column": 76 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 206, - "end": 207, - "loc": { - "start": { - "line": 6, - "column": 76 - }, - "end": { - "line": 6, - "column": 77 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 208, - "end": 213, - "loc": { - "start": { - "line": 6, - "column": 78 - }, - "end": { - "line": 6, - "column": 83 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 213, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 83 - }, - "end": { - "line": 6, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 221, - "end": 227, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 228, - "end": 229, - "loc": { - "start": { - "line": 7, - "column": 13 - }, - "end": { - "line": 7, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 230, - "end": 236, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 236, - "end": 237, - "loc": { - "start": { - "line": 7, - "column": 21 - }, - "end": { - "line": 7, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentElement", - "start": 237, - "end": 250, - "loc": { - "start": { - "line": 7, - "column": 22 - }, - "end": { - "line": 7, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 250, - "end": 251, - "loc": { - "start": { - "line": 7, - "column": 35 - }, - "end": { - "line": 7, - "column": 36 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 256, - "end": 257, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 263, - "end": 265, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 266, - "end": 267, - "loc": { - "start": { - "line": 10, - "column": 7 - }, - "end": { - "line": 10, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 267, - "end": 268, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 268, - "end": 274, - "loc": { - "start": { - "line": 10, - "column": 9 - }, - "end": { - "line": 10, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 274, - "end": 275, - "loc": { - "start": { - "line": 10, - "column": 15 - }, - "end": { - "line": 10, - "column": 16 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 276, - "end": 282, - "loc": { - "start": { - "line": 10, - "column": 17 - }, - "end": { - "line": 10, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 282, - "end": 283, - "loc": { - "start": { - "line": 10, - "column": 23 - }, - "end": { - "line": 10, - "column": 24 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 289, - "end": 292, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tbody", - "start": 293, - "end": 298, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 299, - "end": 300, - "loc": { - "start": { - "line": 12, - "column": 14 - }, - "end": { - "line": 12, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 301, - "end": 307, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 307, - "end": 308, - "loc": { - "start": { - "line": 12, - "column": 22 - }, - "end": { - "line": 12, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 308, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 23 - }, - "end": { - "line": 12, - "column": 36 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 321, - "end": 322, - "loc": { - "start": { - "line": 12, - "column": 36 - }, - "end": { - "line": 12, - "column": 37 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "tbody", - "start": 322, - "end": 329, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 329, - "end": 330, - "loc": { - "start": { - "line": 12, - "column": 44 - }, - "end": { - "line": 12, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 330, - "end": 331, - "loc": { - "start": { - "line": 12, - "column": 45 - }, - "end": { - "line": 12, - "column": 46 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 336, - "end": 338, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 13, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 339, - "end": 340, - "loc": { - "start": { - "line": 13, - "column": 7 - }, - "end": { - "line": 13, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 340, - "end": 346, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 346, - "end": 347, - "loc": { - "start": { - "line": 13, - "column": 14 - }, - "end": { - "line": 13, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 347, - "end": 356, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 356, - "end": 357, - "loc": { - "start": { - "line": 13, - "column": 24 - }, - "end": { - "line": 13, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 357, - "end": 365, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 365, - "end": 366, - "loc": { - "start": { - "line": 13, - "column": 33 - }, - "end": { - "line": 13, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 366, - "end": 374, - "loc": { - "start": { - "line": 13, - "column": 34 - }, - "end": { - "line": 13, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 374, - "end": 375, - "loc": { - "start": { - "line": 13, - "column": 42 - }, - "end": { - "line": 13, - "column": 43 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 375, - "end": 376, - "loc": { - "start": { - "line": 13, - "column": 43 - }, - "end": { - "line": 13, - "column": 44 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 377, - "end": 378, - "loc": { - "start": { - "line": 13, - "column": 45 - }, - "end": { - "line": 13, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 385, - "end": 391, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 391, - "end": 392, - "loc": { - "start": { - "line": 14, - "column": 12 - }, - "end": { - "line": 14, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 392, - "end": 401, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 401, - "end": 402, - "loc": { - "start": { - "line": 14, - "column": 22 - }, - "end": { - "line": 14, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 402, - "end": 408, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 408, - "end": 409, - "loc": { - "start": { - "line": 14, - "column": 29 - }, - "end": { - "line": 14, - "column": 30 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 409, - "end": 417, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 14, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 417, - "end": 418, - "loc": { - "start": { - "line": 14, - "column": 38 - }, - "end": { - "line": 14, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 418, - "end": 419, - "loc": { - "start": { - "line": 14, - "column": 39 - }, - "end": { - "line": 14, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 426, - "end": 432, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 432, - "end": 433, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 433, - "end": 442, - "loc": { - "start": { - "line": 15, - "column": 13 - }, - "end": { - "line": 15, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 442, - "end": 443, - "loc": { - "start": { - "line": 15, - "column": 22 - }, - "end": { - "line": 15, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 443, - "end": 446, - "loc": { - "start": { - "line": 15, - "column": 23 - }, - "end": { - "line": 15, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 446, - "end": 447, - "loc": { - "start": { - "line": 15, - "column": 26 - }, - "end": { - "line": 15, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 447, - "end": 455, - "loc": { - "start": { - "line": 15, - "column": 27 - }, - "end": { - "line": 15, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 455, - "end": 456, - "loc": { - "start": { - "line": 15, - "column": 35 - }, - "end": { - "line": 15, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 456, - "end": 457, - "loc": { - "start": { - "line": 15, - "column": 36 - }, - "end": { - "line": 15, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tbody", - "start": 464, - "end": 469, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 11 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 469, - "end": 470, - "loc": { - "start": { - "line": 16, - "column": 11 - }, - "end": { - "line": 16, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 470, - "end": 475, - "loc": { - "start": { - "line": 16, - "column": 12 - }, - "end": { - "line": 16, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 475, - "end": 476, - "loc": { - "start": { - "line": 16, - "column": 17 - }, - "end": { - "line": 16, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 476, - "end": 483, - "loc": { - "start": { - "line": 16, - "column": 18 - }, - "end": { - "line": 16, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 484, - "end": 485, - "loc": { - "start": { - "line": 16, - "column": 26 - }, - "end": { - "line": 16, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "none", - "start": 486, - "end": 492, - "loc": { - "start": { - "line": 16, - "column": 28 - }, - "end": { - "line": 16, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 492, - "end": 493, - "loc": { - "start": { - "line": 16, - "column": 34 - }, - "end": { - "line": 16, - "column": 35 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 498, - "end": 499, - "loc": { - "start": { - "line": 17, - "column": 4 - }, - "end": { - "line": 17, - "column": 5 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 500, - "end": 504, - "loc": { - "start": { - "line": 17, - "column": 6 - }, - "end": { - "line": 17, - "column": 10 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 505, - "end": 506, - "loc": { - "start": { - "line": 17, - "column": 11 - }, - "end": { - "line": 17, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 513, - "end": 519, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 519, - "end": 520, - "loc": { - "start": { - "line": 18, - "column": 12 - }, - "end": { - "line": 18, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 520, - "end": 529, - "loc": { - "start": { - "line": 18, - "column": 13 - }, - "end": { - "line": 18, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 529, - "end": 530, - "loc": { - "start": { - "line": 18, - "column": 22 - }, - "end": { - "line": 18, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 530, - "end": 536, - "loc": { - "start": { - "line": 18, - "column": 23 - }, - "end": { - "line": 18, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 536, - "end": 537, - "loc": { - "start": { - "line": 18, - "column": 29 - }, - "end": { - "line": 18, - "column": 30 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 537, - "end": 545, - "loc": { - "start": { - "line": 18, - "column": 30 - }, - "end": { - "line": 18, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 545, - "end": 546, - "loc": { - "start": { - "line": 18, - "column": 38 - }, - "end": { - "line": 18, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 546, - "end": 547, - "loc": { - "start": { - "line": 18, - "column": 39 - }, - "end": { - "line": 18, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 554, - "end": 560, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 560, - "end": 561, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 561, - "end": 570, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 570, - "end": 571, - "loc": { - "start": { - "line": 19, - "column": 22 - }, - "end": { - "line": 19, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 571, - "end": 574, - "loc": { - "start": { - "line": 19, - "column": 23 - }, - "end": { - "line": 19, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 574, - "end": 575, - "loc": { - "start": { - "line": 19, - "column": 26 - }, - "end": { - "line": 19, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 575, - "end": 583, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 583, - "end": 584, - "loc": { - "start": { - "line": 19, - "column": 35 - }, - "end": { - "line": 19, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 584, - "end": 585, - "loc": { - "start": { - "line": 19, - "column": 36 - }, - "end": { - "line": 19, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tbody", - "start": 592, - "end": 597, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 11 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 597, - "end": 598, - "loc": { - "start": { - "line": 20, - "column": 11 - }, - "end": { - "line": 20, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 598, - "end": 603, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 603, - "end": 604, - "loc": { - "start": { - "line": 20, - "column": 17 - }, - "end": { - "line": 20, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 604, - "end": 611, - "loc": { - "start": { - "line": 20, - "column": 18 - }, - "end": { - "line": 20, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 612, - "end": 613, - "loc": { - "start": { - "line": 20, - "column": 26 - }, - "end": { - "line": 20, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "block", - "start": 614, - "end": 621, - "loc": { - "start": { - "line": 20, - "column": 28 - }, - "end": { - "line": 20, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 621, - "end": 622, - "loc": { - "start": { - "line": 20, - "column": 35 - }, - "end": { - "line": 20, - "column": 36 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 627, - "end": 628, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 631, - "end": 632, - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 3 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 636, - "end": 639, - "loc": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 24, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 640, - "end": 647, - "loc": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 648, - "end": 649, - "loc": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 650, - "end": 658, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 658, - "end": 659, - "loc": { - "start": { - "line": 24, - "column": 24 - }, - "end": { - "line": 24, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 659, - "end": 675, - "loc": { - "start": { - "line": 24, - "column": 25 - }, - "end": { - "line": 24, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 675, - "end": 676, - "loc": { - "start": { - "line": 24, - "column": 41 - }, - "end": { - "line": 24, - "column": 42 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".inherited-summary thead .toggle", - "start": 676, - "end": 710, - "loc": { - "start": { - "line": 24, - "column": 42 - }, - "end": { - "line": 24, - "column": 76 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 710, - "end": 711, - "loc": { - "start": { - "line": 24, - "column": 76 - }, - "end": { - "line": 24, - "column": 77 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 711, - "end": 712, - "loc": { - "start": { - "line": 24, - "column": 77 - }, - "end": { - "line": 24, - "column": 78 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 715, - "end": 718, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 25, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 719, - "end": 720, - "loc": { - "start": { - "line": 25, - "column": 6 - }, - "end": { - "line": 25, - "column": 7 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 720, - "end": 723, - "loc": { - "start": { - "line": 25, - "column": 7 - }, - "end": { - "line": 25, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 724, - "end": 725, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 726, - "end": 727, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 25, - "column": 14 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 728, - "end": 729, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 729, - "end": 730, - "loc": { - "start": { - "line": 25, - "column": 16 - }, - "end": { - "line": 25, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 731, - "end": 732, - "loc": { - "start": { - "line": 25, - "column": 18 - }, - "end": { - "line": 25, - "column": 19 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 733, - "end": 734, - "loc": { - "start": { - "line": 25, - "column": 20 - }, - "end": { - "line": 25, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 735, - "end": 742, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 742, - "end": 743, - "loc": { - "start": { - "line": 25, - "column": 29 - }, - "end": { - "line": 25, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 743, - "end": 749, - "loc": { - "start": { - "line": 25, - "column": 30 - }, - "end": { - "line": 25, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 749, - "end": 750, - "loc": { - "start": { - "line": 25, - "column": 36 - }, - "end": { - "line": 25, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 751, - "end": 752, - "loc": { - "start": { - "line": 25, - "column": 38 - }, - "end": { - "line": 25, - "column": 39 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 752, - "end": 754, - "loc": { - "start": { - "line": 25, - "column": 39 - }, - "end": { - "line": 25, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 754, - "end": 755, - "loc": { - "start": { - "line": 25, - "column": 41 - }, - "end": { - "line": 25, - "column": 42 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 756, - "end": 757, - "loc": { - "start": { - "line": 25, - "column": 43 - }, - "end": { - "line": 25, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 762, - "end": 769, - "loc": { - "start": { - "line": 26, - "column": 4 - }, - "end": { - "line": 26, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 769, - "end": 770, - "loc": { - "start": { - "line": 26, - "column": 11 - }, - "end": { - "line": 26, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 770, - "end": 771, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 771, - "end": 772, - "loc": { - "start": { - "line": 26, - "column": 13 - }, - "end": { - "line": 26, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 772, - "end": 773, - "loc": { - "start": { - "line": 26, - "column": 14 - }, - "end": { - "line": 26, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 773, - "end": 789, - "loc": { - "start": { - "line": 26, - "column": 15 - }, - "end": { - "line": 26, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 789, - "end": 790, - "loc": { - "start": { - "line": 26, - "column": 31 - }, - "end": { - "line": 26, - "column": 32 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "click", - "start": 790, - "end": 797, - "loc": { - "start": { - "line": 26, - "column": 32 - }, - "end": { - "line": 26, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 797, - "end": 798, - "loc": { - "start": { - "line": 26, - "column": 39 - }, - "end": { - "line": 26, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toggle", - "start": 799, - "end": 805, - "loc": { - "start": { - "line": 26, - "column": 41 - }, - "end": { - "line": 26, - "column": 47 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 805, - "end": 806, - "loc": { - "start": { - "line": 26, - "column": 47 - }, - "end": { - "line": 26, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 806, - "end": 807, - "loc": { - "start": { - "line": 26, - "column": 48 - }, - "end": { - "line": 26, - "column": 49 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 810, - "end": 811, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 812, - "end": 813, - "loc": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 813, - "end": 814, - "loc": { - "start": { - "line": 28, - "column": 1 - }, - "end": { - "line": 28, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 814, - "end": 815, - "loc": { - "start": { - "line": 28, - "column": 2 - }, - "end": { - "line": 28, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 815, - "end": 816, - "loc": { - "start": { - "line": 28, - "column": 3 - }, - "end": { - "line": 28, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 816, - "end": 817, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 817, - "end": 817, - "loc": { - "start": { - "line": 28, - "column": 5 - }, - "end": { - "line": 28, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/inner-link.js.json b/docs/ast/source/doc/script/inner-link.js.json deleted file mode 100644 index 94a70f63..00000000 --- a/docs/ast/source/doc/script/inner-link.js.json +++ /dev/null @@ -1,7540 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 938, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 938, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 103, - "end": 705, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 23, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 103, - "end": 704, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 23, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 104, - "end": 701, - "loc": { - "start": { - "line": 3, - "column": 1 - }, - "end": { - "line": 23, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 116, - "end": 701, - "loc": { - "start": { - "line": 3, - "column": 13 - }, - "end": { - "line": 23, - "column": 1 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 120, - "end": 177, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 59 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 124, - "end": 176, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 58 - } - }, - "id": { - "type": "Identifier", - "start": 124, - "end": 131, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 13 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "init": { - "type": "CallExpression", - "start": 134, - "end": 176, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 58 - } - }, - "callee": { - "type": "MemberExpression", - "start": 134, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 35 - } - }, - "object": { - "type": "MemberExpression", - "start": 134, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 29 - } - }, - "object": { - "type": "Identifier", - "start": 134, - "end": 142, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 24 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 143, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 25 - }, - "end": { - "line": 4, - "column": 29 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 148, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 30 - }, - "end": { - "line": 4, - "column": 35 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 154, - "end": 175, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 57 - } - }, - "extra": { - "raw": "/errorLines=([\\d,]+)/" - }, - "pattern": "errorLines=([\\d,]+)", - "flags": "" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 180, - "end": 200, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 22 - } - }, - "test": { - "type": "Identifier", - "start": 184, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 13 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "consequent": { - "type": "ReturnStatement", - "start": 193, - "end": 200, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 22 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "FunctionDeclaration", - "start": 204, - "end": 594, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 16, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 213, - "end": 219, - "loc": { - "start": { - "line": 7, - "column": 11 - }, - "end": { - "line": 7, - "column": 17 - }, - "identifierName": "adjust" - }, - "name": "adjust" - }, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 222, - "end": 594, - "loc": { - "start": { - "line": 7, - "column": 20 - }, - "end": { - "line": 16, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 228, - "end": 252, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 28 - } - }, - "expression": { - "type": "CallExpression", - "start": 228, - "end": 251, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 228, - "end": 243, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 228, - "end": 234, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 10 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 8, - "column": 11 - }, - "end": { - "line": 8, - "column": 19 - }, - "identifierName": "scrollBy" - }, - "name": "scrollBy" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 244, - "end": 245, - "loc": { - "start": { - "line": 8, - "column": 20 - }, - "end": { - "line": 8, - "column": 21 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "UnaryExpression", - "start": 247, - "end": 250, - "loc": { - "start": { - "line": 8, - "column": 23 - }, - "end": { - "line": 8, - "column": 26 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 248, - "end": 250, - "loc": { - "start": { - "line": 8, - "column": 24 - }, - "end": { - "line": 8, - "column": 26 - } - }, - "extra": { - "rawValue": 55, - "raw": "55" - }, - "value": 55 - }, - "extra": { - "parenthesizedArgument": false - } - } - ] - } - }, - { - "type": "VariableDeclaration", - "start": 257, - "end": 311, - "loc": { - "start": { - "line": 9, - "column": 4 - }, - "end": { - "line": 9, - "column": 58 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 261, - "end": 310, - "loc": { - "start": { - "line": 9, - "column": 8 - }, - "end": { - "line": 9, - "column": 57 - } - }, - "id": { - "type": "Identifier", - "start": 261, - "end": 263, - "loc": { - "start": { - "line": 9, - "column": 8 - }, - "end": { - "line": 9, - "column": 10 - }, - "identifierName": "el" - }, - "name": "el" - }, - "init": { - "type": "CallExpression", - "start": 266, - "end": 310, - "loc": { - "start": { - "line": 9, - "column": 13 - }, - "end": { - "line": 9, - "column": 57 - } - }, - "callee": { - "type": "MemberExpression", - "start": 266, - "end": 288, - "loc": { - "start": { - "line": 9, - "column": 13 - }, - "end": { - "line": 9, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 266, - "end": 274, - "loc": { - "start": { - "line": 9, - "column": 13 - }, - "end": { - "line": 9, - "column": 21 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 275, - "end": 288, - "loc": { - "start": { - "line": 9, - "column": 22 - }, - "end": { - "line": 9, - "column": 35 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 289, - "end": 309, - "loc": { - "start": { - "line": 9, - "column": 36 - }, - "end": { - "line": 9, - "column": 56 - } - }, - "extra": { - "rawValue": ".inner-link-active", - "raw": "'.inner-link-active'" - }, - "value": ".inner-link-active" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 316, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 53 - } - }, - "test": { - "type": "Identifier", - "start": 320, - "end": 322, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 10 - }, - "identifierName": "el" - }, - "name": "el" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 324, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 53 - } - }, - "expression": { - "type": "CallExpression", - "start": 324, - "end": 364, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 52 - } - }, - "callee": { - "type": "MemberExpression", - "start": 324, - "end": 343, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 31 - } - }, - "object": { - "type": "MemberExpression", - "start": 324, - "end": 336, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 324, - "end": 326, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 14 - }, - "identifierName": "el" - }, - "name": "el" - }, - "property": { - "type": "Identifier", - "start": 327, - "end": 336, - "loc": { - "start": { - "line": 10, - "column": 15 - }, - "end": { - "line": 10, - "column": 24 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 337, - "end": 343, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 31 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 344, - "end": 363, - "loc": { - "start": { - "line": 10, - "column": 32 - }, - "end": { - "line": 10, - "column": 51 - } - }, - "extra": { - "rawValue": "inner-link-active", - "raw": "'inner-link-active'" - }, - "value": "inner-link-active" - } - ] - }, - "trailingComments": null - }, - "alternate": null, - "trailingComments": [ - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 371, - "end": 436, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 69 - } - } - } - ] - }, - { - "type": "VariableDeclaration", - "start": 441, - "end": 498, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 13, - "column": 61 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 445, - "end": 497, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 60 - } - }, - "id": { - "type": "Identifier", - "start": 445, - "end": 447, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 10 - }, - "identifierName": "id" - }, - "name": "id", - "leadingComments": null - }, - "init": { - "type": "CallExpression", - "start": 450, - "end": 497, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 60 - } - }, - "callee": { - "type": "MemberExpression", - "start": 450, - "end": 471, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 34 - } - }, - "object": { - "type": "MemberExpression", - "start": 450, - "end": 463, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 450, - "end": 458, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 21 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 459, - "end": 463, - "loc": { - "start": { - "line": 13, - "column": 22 - }, - "end": { - "line": 13, - "column": 26 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 464, - "end": 471, - "loc": { - "start": { - "line": 13, - "column": 27 - }, - "end": { - "line": 13, - "column": 34 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 472, - "end": 488, - "loc": { - "start": { - "line": 13, - "column": 35 - }, - "end": { - "line": 13, - "column": 51 - } - }, - "extra": { - "raw": "/([\\[\\].'\"@$])/g" - }, - "pattern": "([\\[\\].'\"@$])", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 490, - "end": 496, - "loc": { - "start": { - "line": 13, - "column": 53 - }, - "end": { - "line": 13, - "column": 59 - } - }, - "extra": { - "rawValue": "\\$1", - "raw": "'\\\\$1'" - }, - "value": "\\$1" - } - ] - }, - "leadingComments": null - } - ], - "kind": "var", - "leadingComments": [ - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 371, - "end": 436, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 69 - } - } - } - ] - }, - { - "type": "VariableDeclaration", - "start": 503, - "end": 539, - "loc": { - "start": { - "line": 14, - "column": 4 - }, - "end": { - "line": 14, - "column": 40 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 507, - "end": 538, - "loc": { - "start": { - "line": 14, - "column": 8 - }, - "end": { - "line": 14, - "column": 39 - } - }, - "id": { - "type": "Identifier", - "start": 507, - "end": 509, - "loc": { - "start": { - "line": 14, - "column": 8 - }, - "end": { - "line": 14, - "column": 10 - }, - "identifierName": "el" - }, - "name": "el" - }, - "init": { - "type": "CallExpression", - "start": 512, - "end": 538, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 512, - "end": 534, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 512, - "end": 520, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 21 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 521, - "end": 534, - "loc": { - "start": { - "line": 14, - "column": 22 - }, - "end": { - "line": 14, - "column": 35 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 535, - "end": 537, - "loc": { - "start": { - "line": 14, - "column": 36 - }, - "end": { - "line": 14, - "column": 38 - }, - "identifierName": "id" - }, - "name": "id" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 544, - "end": 590, - "loc": { - "start": { - "line": 15, - "column": 4 - }, - "end": { - "line": 15, - "column": 50 - } - }, - "test": { - "type": "Identifier", - "start": 548, - "end": 550, - "loc": { - "start": { - "line": 15, - "column": 8 - }, - "end": { - "line": 15, - "column": 10 - }, - "identifierName": "el" - }, - "name": "el" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 552, - "end": 590, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 50 - } - }, - "expression": { - "type": "CallExpression", - "start": 552, - "end": 589, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 49 - } - }, - "callee": { - "type": "MemberExpression", - "start": 552, - "end": 568, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 28 - } - }, - "object": { - "type": "MemberExpression", - "start": 552, - "end": 564, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 552, - "end": 554, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 14 - }, - "identifierName": "el" - }, - "name": "el" - }, - "property": { - "type": "Identifier", - "start": 555, - "end": 564, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 24 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 565, - "end": 568, - "loc": { - "start": { - "line": 15, - "column": 25 - }, - "end": { - "line": 15, - "column": 28 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 569, - "end": 588, - "loc": { - "start": { - "line": 15, - "column": 29 - }, - "end": { - "line": 15, - "column": 48 - } - }, - "extra": { - "rawValue": "inner-link-active", - "raw": "'inner-link-active'" - }, - "value": "inner-link-active" - } - ] - } - }, - "alternate": null - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 598, - "end": 644, - "loc": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 18, - "column": 48 - } - }, - "expression": { - "type": "CallExpression", - "start": 598, - "end": 643, - "loc": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 18, - "column": 47 - } - }, - "callee": { - "type": "MemberExpression", - "start": 598, - "end": 621, - "loc": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 18, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 598, - "end": 604, - "loc": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 18, - "column": 8 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 605, - "end": 621, - "loc": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 25 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 622, - "end": 634, - "loc": { - "start": { - "line": 18, - "column": 26 - }, - "end": { - "line": 18, - "column": 38 - } - }, - "extra": { - "rawValue": "hashchange", - "raw": "'hashchange'" - }, - "value": "hashchange" - }, - { - "type": "Identifier", - "start": 636, - "end": 642, - "loc": { - "start": { - "line": 18, - "column": 40 - }, - "end": { - "line": 18, - "column": 46 - }, - "identifierName": "adjust" - }, - "name": "adjust" - } - ] - } - }, - { - "type": "IfStatement", - "start": 648, - "end": 699, - "loc": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 22, - "column": 3 - } - }, - "test": { - "type": "MemberExpression", - "start": 652, - "end": 665, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 652, - "end": 660, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 14 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 661, - "end": 665, - "loc": { - "start": { - "line": 20, - "column": 15 - }, - "end": { - "line": 20, - "column": 19 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "consequent": { - "type": "BlockStatement", - "start": 667, - "end": 699, - "loc": { - "start": { - "line": 20, - "column": 21 - }, - "end": { - "line": 22, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 673, - "end": 695, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "expression": { - "type": "CallExpression", - "start": 673, - "end": 694, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 25 - } - }, - "callee": { - "type": "Identifier", - "start": 673, - "end": 683, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 14 - }, - "identifierName": "setTimeout" - }, - "name": "setTimeout" - }, - "arguments": [ - { - "type": "Identifier", - "start": 684, - "end": 690, - "loc": { - "start": { - "line": 21, - "column": 15 - }, - "end": { - "line": 21, - "column": 21 - }, - "identifierName": "adjust" - }, - "name": "adjust" - }, - { - "type": "NumericLiteral", - "start": 692, - "end": 693, - "loc": { - "start": { - "line": 21, - "column": 23 - }, - "end": { - "line": 21, - "column": 24 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "leadingComments": null, - "extra": { - "parenthesized": true, - "parenStart": 103 - } - }, - "arguments": [], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " inner link(#foo) can not correctly scroll, because page has fixed header,", - "start": 0, - "end": 76, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 76 - } - } - }, - { - "type": "CommentLine", - "value": " so, I manually scroll.", - "start": 77, - "end": 102, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 25 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 707, - "end": 938, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 707, - "end": 937, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 31, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 708, - "end": 934, - "loc": { - "start": { - "line": 25, - "column": 1 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 720, - "end": 934, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 724, - "end": 775, - "loc": { - "start": { - "line": 26, - "column": 2 - }, - "end": { - "line": 26, - "column": 53 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 728, - "end": 774, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 52 - } - }, - "id": { - "type": "Identifier", - "start": 728, - "end": 731, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 9 - }, - "identifierName": "els" - }, - "name": "els" - }, - "init": { - "type": "CallExpression", - "start": 734, - "end": 774, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 52 - } - }, - "callee": { - "type": "MemberExpression", - "start": 734, - "end": 759, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 37 - } - }, - "object": { - "type": "Identifier", - "start": 734, - "end": 742, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 20 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 743, - "end": 759, - "loc": { - "start": { - "line": 26, - "column": 21 - }, - "end": { - "line": 26, - "column": 37 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 760, - "end": 773, - "loc": { - "start": { - "line": 26, - "column": 38 - }, - "end": { - "line": 26, - "column": 51 - } - }, - "extra": { - "rawValue": "[href^=\"#\"]", - "raw": "'[href^=\"#\"]'" - }, - "value": "[href^=\"#\"]" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 778, - "end": 932, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 30, - "column": 3 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 783, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 7 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 787, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 11 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 787, - "end": 788, - "loc": { - "start": { - "line": 27, - "column": 11 - }, - "end": { - "line": 27, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 791, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 15 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 794, - "end": 808, - "loc": { - "start": { - "line": 27, - "column": 18 - }, - "end": { - "line": 27, - "column": 32 - } - }, - "left": { - "type": "Identifier", - "start": 794, - "end": 795, - "loc": { - "start": { - "line": 27, - "column": 18 - }, - "end": { - "line": 27, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 798, - "end": 808, - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 798, - "end": 801, - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 25 - }, - "identifierName": "els" - }, - "name": "els" - }, - "property": { - "type": "Identifier", - "start": 802, - "end": 808, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 32 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 810, - "end": 813, - "loc": { - "start": { - "line": 27, - "column": 34 - }, - "end": { - "line": 27, - "column": 37 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 810, - "end": 811, - "loc": { - "start": { - "line": 27, - "column": 34 - }, - "end": { - "line": 27, - "column": 35 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 815, - "end": 932, - "loc": { - "start": { - "line": 27, - "column": 39 - }, - "end": { - "line": 30, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 821, - "end": 837, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 20 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 825, - "end": 836, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 19 - } - }, - "id": { - "type": "Identifier", - "start": 825, - "end": 827, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 10 - }, - "identifierName": "el" - }, - "name": "el" - }, - "init": { - "type": "MemberExpression", - "start": 830, - "end": 836, - "loc": { - "start": { - "line": 28, - "column": 13 - }, - "end": { - "line": 28, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 830, - "end": 833, - "loc": { - "start": { - "line": 28, - "column": 13 - }, - "end": { - "line": 28, - "column": 16 - }, - "identifierName": "els" - }, - "name": "els" - }, - "property": { - "type": "Identifier", - "start": 834, - "end": 835, - "loc": { - "start": { - "line": 28, - "column": 17 - }, - "end": { - "line": 28, - "column": 18 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 842, - "end": 892, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 54 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 842, - "end": 891, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 53 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 842, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "object": { - "type": "Identifier", - "start": 842, - "end": 844, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 6 - }, - "identifierName": "el" - }, - "name": "el" - }, - "property": { - "type": "Identifier", - "start": 845, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 7 - }, - "end": { - "line": 29, - "column": 11 - }, - "identifierName": "href" - }, - "name": "href" - }, - "computed": false - }, - "right": { - "type": "BinaryExpression", - "start": 852, - "end": 891, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 53 - } - }, - "left": { - "type": "MemberExpression", - "start": 852, - "end": 865, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 852, - "end": 860, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 22 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 861, - "end": 865, - "loc": { - "start": { - "line": 29, - "column": 23 - }, - "end": { - "line": 29, - "column": 27 - }, - "identifierName": "href" - }, - "name": "href" - }, - "computed": false - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 868, - "end": 891, - "loc": { - "start": { - "line": 29, - "column": 30 - }, - "end": { - "line": 29, - "column": 53 - } - }, - "callee": { - "type": "MemberExpression", - "start": 868, - "end": 883, - "loc": { - "start": { - "line": 29, - "column": 30 - }, - "end": { - "line": 29, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 868, - "end": 870, - "loc": { - "start": { - "line": 29, - "column": 30 - }, - "end": { - "line": 29, - "column": 32 - }, - "identifierName": "el" - }, - "name": "el" - }, - "property": { - "type": "Identifier", - "start": 871, - "end": 883, - "loc": { - "start": { - "line": 29, - "column": 33 - }, - "end": { - "line": 29, - "column": 45 - }, - "identifierName": "getAttribute" - }, - "name": "getAttribute" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 884, - "end": 890, - "loc": { - "start": { - "line": 29, - "column": 46 - }, - "end": { - "line": 29, - "column": 52 - } - }, - "extra": { - "rawValue": "href", - "raw": "'href'" - }, - "value": "href" - } - ] - } - } - }, - "trailingComments": [ - { - "type": "CommentLine", - "value": " because el.href is absolute path", - "start": 893, - "end": 928, - "loc": { - "start": { - "line": 29, - "column": 55 - }, - "end": { - "line": 29, - "column": 90 - } - } - } - ] - } - ], - "directives": [] - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 707 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [ - { - "type": "CommentLine", - "value": " inner link(#foo) can not correctly scroll, because page has fixed header,", - "start": 0, - "end": 76, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 76 - } - } - }, - { - "type": "CommentLine", - "value": " so, I manually scroll.", - "start": 77, - "end": 102, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 25 - } - } - }, - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 371, - "end": 436, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 69 - } - } - }, - { - "type": "CommentLine", - "value": " because el.href is absolute path", - "start": 893, - "end": 928, - "loc": { - "start": { - "line": 29, - "column": 55 - }, - "end": { - "line": 29, - "column": 90 - } - } - } - ], - "tokens": [ - { - "type": "CommentLine", - "value": " inner link(#foo) can not correctly scroll, because page has fixed header,", - "start": 0, - "end": 76, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 76 - } - } - }, - { - "type": "CommentLine", - "value": " so, I manually scroll.", - "start": 77, - "end": 102, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 103, - "end": 104, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 104, - "end": 112, - "loc": { - "start": { - "line": 3, - "column": 1 - }, - "end": { - "line": 3, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 113, - "end": 114, - "loc": { - "start": { - "line": 3, - "column": 10 - }, - "end": { - "line": 3, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 114, - "end": 115, - "loc": { - "start": { - "line": 3, - "column": 11 - }, - "end": { - "line": 3, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 116, - "end": 117, - "loc": { - "start": { - "line": 3, - "column": 13 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 120, - "end": 123, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 124, - "end": 131, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 132, - "end": 133, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 134, - "end": 142, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 142, - "end": 143, - "loc": { - "start": { - "line": 4, - "column": 24 - }, - "end": { - "line": 4, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 143, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 25 - }, - "end": { - "line": 4, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 147, - "end": 148, - "loc": { - "start": { - "line": 4, - "column": 29 - }, - "end": { - "line": 4, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 148, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 30 - }, - "end": { - "line": 4, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 153, - "end": 154, - "loc": { - "start": { - "line": 4, - "column": 35 - }, - "end": { - "line": 4, - "column": 36 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "errorLines=([\\d,]+)", - "flags": "" - }, - "start": 154, - "end": 175, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 175, - "end": 176, - "loc": { - "start": { - "line": 4, - "column": 57 - }, - "end": { - "line": 4, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 176, - "end": 177, - "loc": { - "start": { - "line": 4, - "column": 58 - }, - "end": { - "line": 4, - "column": 59 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 180, - "end": 182, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 183, - "end": 184, - "loc": { - "start": { - "line": 5, - "column": 5 - }, - "end": { - "line": 5, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 184, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 13 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 191, - "end": 192, - "loc": { - "start": { - "line": 5, - "column": 13 - }, - "end": { - "line": 5, - "column": 14 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 193, - "end": 199, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 21 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 199, - "end": 200, - "loc": { - "start": { - "line": 5, - "column": 21 - }, - "end": { - "line": 5, - "column": 22 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 204, - "end": 212, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "adjust", - "start": 213, - "end": 219, - "loc": { - "start": { - "line": 7, - "column": 11 - }, - "end": { - "line": 7, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 219, - "end": 220, - "loc": { - "start": { - "line": 7, - "column": 17 - }, - "end": { - "line": 7, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 220, - "end": 221, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 222, - "end": 223, - "loc": { - "start": { - "line": 7, - "column": 20 - }, - "end": { - "line": 7, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 228, - "end": 234, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 234, - "end": 235, - "loc": { - "start": { - "line": 8, - "column": 10 - }, - "end": { - "line": 8, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "scrollBy", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 8, - "column": 11 - }, - "end": { - "line": 8, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 243, - "end": 244, - "loc": { - "start": { - "line": 8, - "column": 19 - }, - "end": { - "line": 8, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 244, - "end": 245, - "loc": { - "start": { - "line": 8, - "column": 20 - }, - "end": { - "line": 8, - "column": 21 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 245, - "end": 246, - "loc": { - "start": { - "line": 8, - "column": 21 - }, - "end": { - "line": 8, - "column": 22 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 247, - "end": 248, - "loc": { - "start": { - "line": 8, - "column": 23 - }, - "end": { - "line": 8, - "column": 24 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 55, - "start": 248, - "end": 250, - "loc": { - "start": { - "line": 8, - "column": 24 - }, - "end": { - "line": 8, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 250, - "end": 251, - "loc": { - "start": { - "line": 8, - "column": 26 - }, - "end": { - "line": 8, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 251, - "end": 252, - "loc": { - "start": { - "line": 8, - "column": 27 - }, - "end": { - "line": 8, - "column": 28 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 257, - "end": 260, - "loc": { - "start": { - "line": 9, - "column": 4 - }, - "end": { - "line": 9, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 261, - "end": 263, - "loc": { - "start": { - "line": 9, - "column": 8 - }, - "end": { - "line": 9, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 264, - "end": 265, - "loc": { - "start": { - "line": 9, - "column": 11 - }, - "end": { - "line": 9, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 266, - "end": 274, - "loc": { - "start": { - "line": 9, - "column": 13 - }, - "end": { - "line": 9, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 274, - "end": 275, - "loc": { - "start": { - "line": 9, - "column": 21 - }, - "end": { - "line": 9, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 275, - "end": 288, - "loc": { - "start": { - "line": 9, - "column": 22 - }, - "end": { - "line": 9, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 288, - "end": 289, - "loc": { - "start": { - "line": 9, - "column": 35 - }, - "end": { - "line": 9, - "column": 36 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".inner-link-active", - "start": 289, - "end": 309, - "loc": { - "start": { - "line": 9, - "column": 36 - }, - "end": { - "line": 9, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 309, - "end": 310, - "loc": { - "start": { - "line": 9, - "column": 56 - }, - "end": { - "line": 9, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 310, - "end": 311, - "loc": { - "start": { - "line": 9, - "column": 57 - }, - "end": { - "line": 9, - "column": 58 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 316, - "end": 318, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 319, - "end": 320, - "loc": { - "start": { - "line": 10, - "column": 7 - }, - "end": { - "line": 10, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 320, - "end": 322, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 322, - "end": 323, - "loc": { - "start": { - "line": 10, - "column": 10 - }, - "end": { - "line": 10, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 324, - "end": 326, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 326, - "end": 327, - "loc": { - "start": { - "line": 10, - "column": 14 - }, - "end": { - "line": 10, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 327, - "end": 336, - "loc": { - "start": { - "line": 10, - "column": 15 - }, - "end": { - "line": 10, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 336, - "end": 337, - "loc": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 337, - "end": 343, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 343, - "end": 344, - "loc": { - "start": { - "line": 10, - "column": 31 - }, - "end": { - "line": 10, - "column": 32 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "inner-link-active", - "start": 344, - "end": 363, - "loc": { - "start": { - "line": 10, - "column": 32 - }, - "end": { - "line": 10, - "column": 51 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 363, - "end": 364, - "loc": { - "start": { - "line": 10, - "column": 51 - }, - "end": { - "line": 10, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 364, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 52 - }, - "end": { - "line": 10, - "column": 53 - } - } - }, - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 371, - "end": 436, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 69 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 441, - "end": 444, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 13, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 445, - "end": 447, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 448, - "end": 449, - "loc": { - "start": { - "line": 13, - "column": 11 - }, - "end": { - "line": 13, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 450, - "end": 458, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 458, - "end": 459, - "loc": { - "start": { - "line": 13, - "column": 21 - }, - "end": { - "line": 13, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 459, - "end": 463, - "loc": { - "start": { - "line": 13, - "column": 22 - }, - "end": { - "line": 13, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 463, - "end": 464, - "loc": { - "start": { - "line": 13, - "column": 26 - }, - "end": { - "line": 13, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 464, - "end": 471, - "loc": { - "start": { - "line": 13, - "column": 27 - }, - "end": { - "line": 13, - "column": 34 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 471, - "end": 472, - "loc": { - "start": { - "line": 13, - "column": 34 - }, - "end": { - "line": 13, - "column": 35 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "([\\[\\].'\"@$])", - "flags": "g" - }, - "start": 472, - "end": 488, - "loc": { - "start": { - "line": 13, - "column": 35 - }, - "end": { - "line": 13, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 488, - "end": 489, - "loc": { - "start": { - "line": 13, - "column": 51 - }, - "end": { - "line": 13, - "column": 52 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\$1", - "start": 490, - "end": 496, - "loc": { - "start": { - "line": 13, - "column": 53 - }, - "end": { - "line": 13, - "column": 59 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 496, - "end": 497, - "loc": { - "start": { - "line": 13, - "column": 59 - }, - "end": { - "line": 13, - "column": 60 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 497, - "end": 498, - "loc": { - "start": { - "line": 13, - "column": 60 - }, - "end": { - "line": 13, - "column": 61 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 503, - "end": 506, - "loc": { - "start": { - "line": 14, - "column": 4 - }, - "end": { - "line": 14, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 507, - "end": 509, - "loc": { - "start": { - "line": 14, - "column": 8 - }, - "end": { - "line": 14, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 510, - "end": 511, - "loc": { - "start": { - "line": 14, - "column": 11 - }, - "end": { - "line": 14, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 512, - "end": 520, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 520, - "end": 521, - "loc": { - "start": { - "line": 14, - "column": 21 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 521, - "end": 534, - "loc": { - "start": { - "line": 14, - "column": 22 - }, - "end": { - "line": 14, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 534, - "end": 535, - "loc": { - "start": { - "line": 14, - "column": 35 - }, - "end": { - "line": 14, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 535, - "end": 537, - "loc": { - "start": { - "line": 14, - "column": 36 - }, - "end": { - "line": 14, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 537, - "end": 538, - "loc": { - "start": { - "line": 14, - "column": 38 - }, - "end": { - "line": 14, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 538, - "end": 539, - "loc": { - "start": { - "line": 14, - "column": 39 - }, - "end": { - "line": 14, - "column": 40 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 544, - "end": 546, - "loc": { - "start": { - "line": 15, - "column": 4 - }, - "end": { - "line": 15, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 547, - "end": 548, - "loc": { - "start": { - "line": 15, - "column": 7 - }, - "end": { - "line": 15, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 548, - "end": 550, - "loc": { - "start": { - "line": 15, - "column": 8 - }, - "end": { - "line": 15, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 550, - "end": 551, - "loc": { - "start": { - "line": 15, - "column": 10 - }, - "end": { - "line": 15, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 552, - "end": 554, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 554, - "end": 555, - "loc": { - "start": { - "line": 15, - "column": 14 - }, - "end": { - "line": 15, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 555, - "end": 564, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 564, - "end": 565, - "loc": { - "start": { - "line": 15, - "column": 24 - }, - "end": { - "line": 15, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 565, - "end": 568, - "loc": { - "start": { - "line": 15, - "column": 25 - }, - "end": { - "line": 15, - "column": 28 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 568, - "end": 569, - "loc": { - "start": { - "line": 15, - "column": 28 - }, - "end": { - "line": 15, - "column": 29 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "inner-link-active", - "start": 569, - "end": 588, - "loc": { - "start": { - "line": 15, - "column": 29 - }, - "end": { - "line": 15, - "column": 48 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 588, - "end": 589, - "loc": { - "start": { - "line": 15, - "column": 48 - }, - "end": { - "line": 15, - "column": 49 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 589, - "end": 590, - "loc": { - "start": { - "line": 15, - "column": 49 - }, - "end": { - "line": 15, - "column": 50 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 593, - "end": 594, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 3 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 598, - "end": 604, - "loc": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 18, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 604, - "end": 605, - "loc": { - "start": { - "line": 18, - "column": 8 - }, - "end": { - "line": 18, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 605, - "end": 621, - "loc": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 621, - "end": 622, - "loc": { - "start": { - "line": 18, - "column": 25 - }, - "end": { - "line": 18, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "hashchange", - "start": 622, - "end": 634, - "loc": { - "start": { - "line": 18, - "column": 26 - }, - "end": { - "line": 18, - "column": 38 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 634, - "end": 635, - "loc": { - "start": { - "line": 18, - "column": 38 - }, - "end": { - "line": 18, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "adjust", - "start": 636, - "end": 642, - "loc": { - "start": { - "line": 18, - "column": 40 - }, - "end": { - "line": 18, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 642, - "end": 643, - "loc": { - "start": { - "line": 18, - "column": 46 - }, - "end": { - "line": 18, - "column": 47 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 643, - "end": 644, - "loc": { - "start": { - "line": 18, - "column": 47 - }, - "end": { - "line": 18, - "column": 48 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 648, - "end": 650, - "loc": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 20, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 651, - "end": 652, - "loc": { - "start": { - "line": 20, - "column": 5 - }, - "end": { - "line": 20, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 652, - "end": 660, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 660, - "end": 661, - "loc": { - "start": { - "line": 20, - "column": 14 - }, - "end": { - "line": 20, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 661, - "end": 665, - "loc": { - "start": { - "line": 20, - "column": 15 - }, - "end": { - "line": 20, - "column": 19 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 665, - "end": 666, - "loc": { - "start": { - "line": 20, - "column": 19 - }, - "end": { - "line": 20, - "column": 20 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 667, - "end": 668, - "loc": { - "start": { - "line": 20, - "column": 21 - }, - "end": { - "line": 20, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "setTimeout", - "start": 673, - "end": 683, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 683, - "end": 684, - "loc": { - "start": { - "line": 21, - "column": 14 - }, - "end": { - "line": 21, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "adjust", - "start": 684, - "end": 690, - "loc": { - "start": { - "line": 21, - "column": 15 - }, - "end": { - "line": 21, - "column": 21 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 690, - "end": 691, - "loc": { - "start": { - "line": 21, - "column": 21 - }, - "end": { - "line": 21, - "column": 22 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 692, - "end": 693, - "loc": { - "start": { - "line": 21, - "column": 23 - }, - "end": { - "line": 21, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 693, - "end": 694, - "loc": { - "start": { - "line": 21, - "column": 24 - }, - "end": { - "line": 21, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 694, - "end": 695, - "loc": { - "start": { - "line": 21, - "column": 25 - }, - "end": { - "line": 21, - "column": 26 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 698, - "end": 699, - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 700, - "end": 701, - "loc": { - "start": { - "line": 23, - "column": 0 - }, - "end": { - "line": 23, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 701, - "end": 702, - "loc": { - "start": { - "line": 23, - "column": 1 - }, - "end": { - "line": 23, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 702, - "end": 703, - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 703, - "end": 704, - "loc": { - "start": { - "line": 23, - "column": 3 - }, - "end": { - "line": 23, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 704, - "end": 705, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 707, - "end": 708, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 708, - "end": 716, - "loc": { - "start": { - "line": 25, - "column": 1 - }, - "end": { - "line": 25, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 717, - "end": 718, - "loc": { - "start": { - "line": 25, - "column": 10 - }, - "end": { - "line": 25, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 718, - "end": 719, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 720, - "end": 721, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 25, - "column": 14 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 724, - "end": 727, - "loc": { - "start": { - "line": 26, - "column": 2 - }, - "end": { - "line": 26, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "els", - "start": 728, - "end": 731, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 732, - "end": 733, - "loc": { - "start": { - "line": 26, - "column": 10 - }, - "end": { - "line": 26, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 734, - "end": 742, - "loc": { - "start": { - "line": 26, - "column": 12 - }, - "end": { - "line": 26, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 742, - "end": 743, - "loc": { - "start": { - "line": 26, - "column": 20 - }, - "end": { - "line": 26, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 743, - "end": 759, - "loc": { - "start": { - "line": 26, - "column": 21 - }, - "end": { - "line": 26, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 759, - "end": 760, - "loc": { - "start": { - "line": 26, - "column": 37 - }, - "end": { - "line": 26, - "column": 38 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "[href^=\"#\"]", - "start": 760, - "end": 773, - "loc": { - "start": { - "line": 26, - "column": 38 - }, - "end": { - "line": 26, - "column": 51 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 773, - "end": 774, - "loc": { - "start": { - "line": 26, - "column": 51 - }, - "end": { - "line": 26, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 774, - "end": 775, - "loc": { - "start": { - "line": 26, - "column": 52 - }, - "end": { - "line": 26, - "column": 53 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 778, - "end": 781, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 782, - "end": 783, - "loc": { - "start": { - "line": 27, - "column": 6 - }, - "end": { - "line": 27, - "column": 7 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 783, - "end": 786, - "loc": { - "start": { - "line": 27, - "column": 7 - }, - "end": { - "line": 27, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 787, - "end": 788, - "loc": { - "start": { - "line": 27, - "column": 11 - }, - "end": { - "line": 27, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 789, - "end": 790, - "loc": { - "start": { - "line": 27, - "column": 13 - }, - "end": { - "line": 27, - "column": 14 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 791, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 15 - }, - "end": { - "line": 27, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 792, - "end": 793, - "loc": { - "start": { - "line": 27, - "column": 16 - }, - "end": { - "line": 27, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 794, - "end": 795, - "loc": { - "start": { - "line": 27, - "column": 18 - }, - "end": { - "line": 27, - "column": 19 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 796, - "end": 797, - "loc": { - "start": { - "line": 27, - "column": 20 - }, - "end": { - "line": 27, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "els", - "start": 798, - "end": 801, - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 801, - "end": 802, - "loc": { - "start": { - "line": 27, - "column": 25 - }, - "end": { - "line": 27, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 802, - "end": 808, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 808, - "end": 809, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 27, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 810, - "end": 811, - "loc": { - "start": { - "line": 27, - "column": 34 - }, - "end": { - "line": 27, - "column": 35 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 811, - "end": 813, - "loc": { - "start": { - "line": 27, - "column": 35 - }, - "end": { - "line": 27, - "column": 37 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 813, - "end": 814, - "loc": { - "start": { - "line": 27, - "column": 37 - }, - "end": { - "line": 27, - "column": 38 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 815, - "end": 816, - "loc": { - "start": { - "line": 27, - "column": 39 - }, - "end": { - "line": 27, - "column": 40 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 821, - "end": 824, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 825, - "end": 827, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 828, - "end": 829, - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 28, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "els", - "start": 830, - "end": 833, - "loc": { - "start": { - "line": 28, - "column": 13 - }, - "end": { - "line": 28, - "column": 16 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 833, - "end": 834, - "loc": { - "start": { - "line": 28, - "column": 16 - }, - "end": { - "line": 28, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 834, - "end": 835, - "loc": { - "start": { - "line": 28, - "column": 17 - }, - "end": { - "line": 28, - "column": 18 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 835, - "end": 836, - "loc": { - "start": { - "line": 28, - "column": 18 - }, - "end": { - "line": 28, - "column": 19 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 836, - "end": 837, - "loc": { - "start": { - "line": 28, - "column": 19 - }, - "end": { - "line": 28, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 842, - "end": 844, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 6 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 844, - "end": 845, - "loc": { - "start": { - "line": 29, - "column": 6 - }, - "end": { - "line": 29, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "href", - "start": 845, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 7 - }, - "end": { - "line": 29, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 850, - "end": 851, - "loc": { - "start": { - "line": 29, - "column": 12 - }, - "end": { - "line": 29, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 852, - "end": 860, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 860, - "end": 861, - "loc": { - "start": { - "line": 29, - "column": 22 - }, - "end": { - "line": 29, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "href", - "start": 861, - "end": 865, - "loc": { - "start": { - "line": 29, - "column": 23 - }, - "end": { - "line": 29, - "column": 27 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 866, - "end": 867, - "loc": { - "start": { - "line": 29, - "column": 28 - }, - "end": { - "line": 29, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 868, - "end": 870, - "loc": { - "start": { - "line": 29, - "column": 30 - }, - "end": { - "line": 29, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 870, - "end": 871, - "loc": { - "start": { - "line": 29, - "column": 32 - }, - "end": { - "line": 29, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getAttribute", - "start": 871, - "end": 883, - "loc": { - "start": { - "line": 29, - "column": 33 - }, - "end": { - "line": 29, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 883, - "end": 884, - "loc": { - "start": { - "line": 29, - "column": 45 - }, - "end": { - "line": 29, - "column": 46 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "href", - "start": 884, - "end": 890, - "loc": { - "start": { - "line": 29, - "column": 46 - }, - "end": { - "line": 29, - "column": 52 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 890, - "end": 891, - "loc": { - "start": { - "line": 29, - "column": 52 - }, - "end": { - "line": 29, - "column": 53 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 891, - "end": 892, - "loc": { - "start": { - "line": 29, - "column": 53 - }, - "end": { - "line": 29, - "column": 54 - } - } - }, - { - "type": "CommentLine", - "value": " because el.href is absolute path", - "start": 893, - "end": 928, - "loc": { - "start": { - "line": 29, - "column": 55 - }, - "end": { - "line": 29, - "column": 90 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 931, - "end": 932, - "loc": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 933, - "end": 934, - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 934, - "end": 935, - "loc": { - "start": { - "line": 31, - "column": 1 - }, - "end": { - "line": 31, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 935, - "end": 936, - "loc": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 936, - "end": 937, - "loc": { - "start": { - "line": 31, - "column": 3 - }, - "end": { - "line": 31, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 937, - "end": 938, - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 31, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 938, - "end": 938, - "loc": { - "start": { - "line": 31, - "column": 5 - }, - "end": { - "line": 31, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/manual.js.json b/docs/ast/source/doc/script/manual.js.json deleted file mode 100644 index 80f2d9f2..00000000 --- a/docs/ast/source/doc/script/manual.js.json +++ /dev/null @@ -1,3247 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 415, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 11, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 415, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 11, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 415, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 11, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 414, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 11, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 411, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 11, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 411, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 11, - "column": 1 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 17, - "end": 85, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 70 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 21, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 69 - } - }, - "id": { - "type": "Identifier", - "start": 21, - "end": 28, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 13 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "init": { - "type": "CallExpression", - "start": 31, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 16 - }, - "end": { - "line": 2, - "column": 69 - } - }, - "callee": { - "type": "MemberExpression", - "start": 31, - "end": 54, - "loc": { - "start": { - "line": 2, - "column": 16 - }, - "end": { - "line": 2, - "column": 39 - } - }, - "object": { - "type": "MemberExpression", - "start": 31, - "end": 48, - "loc": { - "start": { - "line": 2, - "column": 16 - }, - "end": { - "line": 2, - "column": 33 - } - }, - "object": { - "type": "Identifier", - "start": 31, - "end": 39, - "loc": { - "start": { - "line": 2, - "column": 16 - }, - "end": { - "line": 2, - "column": 24 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 40, - "end": 48, - "loc": { - "start": { - "line": 2, - "column": 25 - }, - "end": { - "line": 2, - "column": 33 - }, - "identifierName": "pathname" - }, - "name": "pathname" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 49, - "end": 54, - "loc": { - "start": { - "line": 2, - "column": 34 - }, - "end": { - "line": 2, - "column": 39 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 55, - "end": 83, - "loc": { - "start": { - "line": 2, - "column": 40 - }, - "end": { - "line": 2, - "column": 68 - } - }, - "extra": { - "raw": "/\\/(manual\\/.*?\\/.*\\.html)$/" - }, - "pattern": "\\/(manual\\/.*?\\/.*\\.html)$", - "flags": "" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 88, - "end": 109, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 23 - } - }, - "test": { - "type": "UnaryExpression", - "start": 92, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 14 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 93, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 14 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 102, - "end": 109, - "loc": { - "start": { - "line": 3, - "column": 16 - }, - "end": { - "line": 3, - "column": 23 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 113, - "end": 142, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 31 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 117, - "end": 141, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 30 - } - }, - "id": { - "type": "Identifier", - "start": 117, - "end": 128, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 17 - }, - "identifierName": "currentName" - }, - "name": "currentName" - }, - "init": { - "type": "MemberExpression", - "start": 131, - "end": 141, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 30 - } - }, - "object": { - "type": "Identifier", - "start": 131, - "end": 138, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 27 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "property": { - "type": "NumericLiteral", - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 5, - "column": 28 - }, - "end": { - "line": 5, - "column": 29 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 145, - "end": 222, - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 79 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 149, - "end": 221, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 78 - } - }, - "id": { - "type": "Identifier", - "start": 149, - "end": 157, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 14 - }, - "identifierName": "cssClass" - }, - "name": "cssClass" - }, - "init": { - "type": "BinaryExpression", - "start": 160, - "end": 221, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 78 - } - }, - "left": { - "type": "BinaryExpression", - "start": 160, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 71 - } - }, - "left": { - "type": "StringLiteral", - "start": 160, - "end": 200, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 57 - } - }, - "extra": { - "rawValue": ".navigation .manual-toc li[data-link=\"", - "raw": "'.navigation .manual-toc li[data-link=\"'" - }, - "value": ".navigation .manual-toc li[data-link=\"" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 203, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 60 - }, - "end": { - "line": 6, - "column": 71 - }, - "identifierName": "currentName" - }, - "name": "currentName" - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 217, - "end": 221, - "loc": { - "start": { - "line": 6, - "column": 74 - }, - "end": { - "line": 6, - "column": 78 - } - }, - "extra": { - "rawValue": "\"]", - "raw": "'\"]'" - }, - "value": "\"]" - } - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 225, - "end": 276, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 53 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 229, - "end": 275, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 52 - } - }, - "id": { - "type": "Identifier", - "start": 229, - "end": 238, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 15 - }, - "identifierName": "styleText" - }, - "name": "styleText" - }, - "init": { - "type": "BinaryExpression", - "start": 241, - "end": 275, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 52 - } - }, - "left": { - "type": "Identifier", - "start": 241, - "end": 249, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 26 - }, - "identifierName": "cssClass" - }, - "name": "cssClass" - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 252, - "end": 275, - "loc": { - "start": { - "line": 7, - "column": 29 - }, - "end": { - "line": 7, - "column": 52 - } - }, - "extra": { - "rawValue": "{ display: block; }\n", - "raw": "'{ display: block; }\\n'" - }, - "value": "{ display: block; }\n" - } - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 279, - "end": 323, - "loc": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 46 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 283, - "end": 322, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 45 - } - }, - "id": { - "type": "Identifier", - "start": 283, - "end": 288, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 11 - }, - "identifierName": "style" - }, - "name": "style" - }, - "init": { - "type": "CallExpression", - "start": 291, - "end": 322, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 45 - } - }, - "callee": { - "type": "MemberExpression", - "start": 291, - "end": 313, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 291, - "end": 299, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 22 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 300, - "end": 313, - "loc": { - "start": { - "line": 8, - "column": 23 - }, - "end": { - "line": 8, - "column": 36 - }, - "identifierName": "createElement" - }, - "name": "createElement" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 314, - "end": 321, - "loc": { - "start": { - "line": 8, - "column": 37 - }, - "end": { - "line": 8, - "column": 44 - } - }, - "extra": { - "rawValue": "style", - "raw": "'style'" - }, - "value": "style" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 326, - "end": 356, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 32 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 326, - "end": 355, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 31 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 326, - "end": 343, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 326, - "end": 331, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 7 - }, - "identifierName": "style" - }, - "name": "style" - }, - "property": { - "type": "Identifier", - "start": 332, - "end": 343, - "loc": { - "start": { - "line": 9, - "column": 8 - }, - "end": { - "line": 9, - "column": 19 - }, - "identifierName": "textContent" - }, - "name": "textContent" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 346, - "end": 355, - "loc": { - "start": { - "line": 9, - "column": 22 - }, - "end": { - "line": 9, - "column": 31 - }, - "identifierName": "styleText" - }, - "name": "styleText" - } - } - }, - { - "type": "ExpressionStatement", - "start": 359, - "end": 409, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 52 - } - }, - "expression": { - "type": "CallExpression", - "start": 359, - "end": 408, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 51 - } - }, - "callee": { - "type": "MemberExpression", - "start": 359, - "end": 401, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 44 - } - }, - "object": { - "type": "CallExpression", - "start": 359, - "end": 389, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "callee": { - "type": "MemberExpression", - "start": 359, - "end": 381, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 359, - "end": 367, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 10 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 368, - "end": 381, - "loc": { - "start": { - "line": 10, - "column": 11 - }, - "end": { - "line": 10, - "column": 24 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 382, - "end": 388, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 31 - } - }, - "extra": { - "rawValue": "head", - "raw": "'head'" - }, - "value": "head" - } - ] - }, - "property": { - "type": "Identifier", - "start": 390, - "end": 401, - "loc": { - "start": { - "line": 10, - "column": 33 - }, - "end": { - "line": 10, - "column": 44 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 402, - "end": 407, - "loc": { - "start": { - "line": 10, - "column": 45 - }, - "end": { - "line": 10, - "column": 50 - }, - "identifierName": "style" - }, - "name": "style" - } - ] - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 17, - "end": 20, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 21, - "end": 28, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 29, - "end": 30, - "loc": { - "start": { - "line": 2, - "column": 14 - }, - "end": { - "line": 2, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 31, - "end": 39, - "loc": { - "start": { - "line": 2, - "column": 16 - }, - "end": { - "line": 2, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 39, - "end": 40, - "loc": { - "start": { - "line": 2, - "column": 24 - }, - "end": { - "line": 2, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "pathname", - "start": 40, - "end": 48, - "loc": { - "start": { - "line": 2, - "column": 25 - }, - "end": { - "line": 2, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 48, - "end": 49, - "loc": { - "start": { - "line": 2, - "column": 33 - }, - "end": { - "line": 2, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 49, - "end": 54, - "loc": { - "start": { - "line": 2, - "column": 34 - }, - "end": { - "line": 2, - "column": 39 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 54, - "end": 55, - "loc": { - "start": { - "line": 2, - "column": 39 - }, - "end": { - "line": 2, - "column": 40 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\/(manual\\/.*?\\/.*\\.html)$", - "flags": "" - }, - "start": 55, - "end": 83, - "loc": { - "start": { - "line": 2, - "column": 40 - }, - "end": { - "line": 2, - "column": 68 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 83, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 68 - }, - "end": { - "line": 2, - "column": 69 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 84, - "end": 85, - "loc": { - "start": { - "line": 2, - "column": 69 - }, - "end": { - "line": 2, - "column": 70 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 88, - "end": 90, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 91, - "end": 92, - "loc": { - "start": { - "line": 3, - "column": 5 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 92, - "end": 93, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 93, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 100, - "end": 101, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 15 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 102, - "end": 108, - "loc": { - "start": { - "line": 3, - "column": 16 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 108, - "end": 109, - "loc": { - "start": { - "line": 3, - "column": 22 - }, - "end": { - "line": 3, - "column": 23 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 113, - "end": 116, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentName", - "start": 117, - "end": 128, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 129, - "end": 130, - "loc": { - "start": { - "line": 5, - "column": 18 - }, - "end": { - "line": 5, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 131, - "end": 138, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 27 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 138, - "end": 139, - "loc": { - "start": { - "line": 5, - "column": 27 - }, - "end": { - "line": 5, - "column": 28 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 5, - "column": 28 - }, - "end": { - "line": 5, - "column": 29 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 140, - "end": 141, - "loc": { - "start": { - "line": 5, - "column": 29 - }, - "end": { - "line": 5, - "column": 30 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 141, - "end": 142, - "loc": { - "start": { - "line": 5, - "column": 30 - }, - "end": { - "line": 5, - "column": 31 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 145, - "end": 148, - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cssClass", - "start": 149, - "end": 157, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 158, - "end": 159, - "loc": { - "start": { - "line": 6, - "column": 15 - }, - "end": { - "line": 6, - "column": 16 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".navigation .manual-toc li[data-link=\"", - "start": 160, - "end": 200, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 57 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 201, - "end": 202, - "loc": { - "start": { - "line": 6, - "column": 58 - }, - "end": { - "line": 6, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentName", - "start": 203, - "end": 214, - "loc": { - "start": { - "line": 6, - "column": 60 - }, - "end": { - "line": 6, - "column": 71 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 215, - "end": 216, - "loc": { - "start": { - "line": 6, - "column": 72 - }, - "end": { - "line": 6, - "column": 73 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\"]", - "start": 217, - "end": 221, - "loc": { - "start": { - "line": 6, - "column": 74 - }, - "end": { - "line": 6, - "column": 78 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 221, - "end": 222, - "loc": { - "start": { - "line": 6, - "column": 78 - }, - "end": { - "line": 6, - "column": 79 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 225, - "end": 228, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "styleText", - "start": 229, - "end": 238, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 239, - "end": 240, - "loc": { - "start": { - "line": 7, - "column": 16 - }, - "end": { - "line": 7, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cssClass", - "start": 241, - "end": 249, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 26 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 250, - "end": 251, - "loc": { - "start": { - "line": 7, - "column": 27 - }, - "end": { - "line": 7, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "{ display: block; }\n", - "start": 252, - "end": 275, - "loc": { - "start": { - "line": 7, - "column": 29 - }, - "end": { - "line": 7, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 275, - "end": 276, - "loc": { - "start": { - "line": 7, - "column": 52 - }, - "end": { - "line": 7, - "column": 53 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 279, - "end": 282, - "loc": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 283, - "end": 288, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 289, - "end": 290, - "loc": { - "start": { - "line": 8, - "column": 12 - }, - "end": { - "line": 8, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 291, - "end": 299, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 299, - "end": 300, - "loc": { - "start": { - "line": 8, - "column": 22 - }, - "end": { - "line": 8, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createElement", - "start": 300, - "end": 313, - "loc": { - "start": { - "line": 8, - "column": 23 - }, - "end": { - "line": 8, - "column": 36 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 313, - "end": 314, - "loc": { - "start": { - "line": 8, - "column": 36 - }, - "end": { - "line": 8, - "column": 37 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "style", - "start": 314, - "end": 321, - "loc": { - "start": { - "line": 8, - "column": 37 - }, - "end": { - "line": 8, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 321, - "end": 322, - "loc": { - "start": { - "line": 8, - "column": 44 - }, - "end": { - "line": 8, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 322, - "end": 323, - "loc": { - "start": { - "line": 8, - "column": 45 - }, - "end": { - "line": 8, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 326, - "end": 331, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 7 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 331, - "end": 332, - "loc": { - "start": { - "line": 9, - "column": 7 - }, - "end": { - "line": 9, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "textContent", - "start": 332, - "end": 343, - "loc": { - "start": { - "line": 9, - "column": 8 - }, - "end": { - "line": 9, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 344, - "end": 345, - "loc": { - "start": { - "line": 9, - "column": 20 - }, - "end": { - "line": 9, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "styleText", - "start": 346, - "end": 355, - "loc": { - "start": { - "line": 9, - "column": 22 - }, - "end": { - "line": 9, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 355, - "end": 356, - "loc": { - "start": { - "line": 9, - "column": 31 - }, - "end": { - "line": 9, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 359, - "end": 367, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 367, - "end": 368, - "loc": { - "start": { - "line": 10, - "column": 10 - }, - "end": { - "line": 10, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 368, - "end": 381, - "loc": { - "start": { - "line": 10, - "column": 11 - }, - "end": { - "line": 10, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 381, - "end": 382, - "loc": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "head", - "start": 382, - "end": 388, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 31 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 388, - "end": 389, - "loc": { - "start": { - "line": 10, - "column": 31 - }, - "end": { - "line": 10, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 389, - "end": 390, - "loc": { - "start": { - "line": 10, - "column": 32 - }, - "end": { - "line": 10, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 390, - "end": 401, - "loc": { - "start": { - "line": 10, - "column": 33 - }, - "end": { - "line": 10, - "column": 44 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 401, - "end": 402, - "loc": { - "start": { - "line": 10, - "column": 44 - }, - "end": { - "line": 10, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 402, - "end": 407, - "loc": { - "start": { - "line": 10, - "column": 45 - }, - "end": { - "line": 10, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 407, - "end": 408, - "loc": { - "start": { - "line": 10, - "column": 50 - }, - "end": { - "line": 10, - "column": 51 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 408, - "end": 409, - "loc": { - "start": { - "line": 10, - "column": 51 - }, - "end": { - "line": 10, - "column": 52 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 410, - "end": 411, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 11, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 411, - "end": 412, - "loc": { - "start": { - "line": 11, - "column": 1 - }, - "end": { - "line": 11, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 412, - "end": 413, - "loc": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 413, - "end": 414, - "loc": { - "start": { - "line": 11, - "column": 3 - }, - "end": { - "line": 11, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 414, - "end": 415, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 415, - "end": 415, - "loc": { - "start": { - "line": 11, - "column": 5 - }, - "end": { - "line": 11, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/patch-for-local.js.json b/docs/ast/source/doc/script/patch-for-local.js.json deleted file mode 100644 index 74e189d3..00000000 --- a/docs/ast/source/doc/script/patch-for-local.js.json +++ /dev/null @@ -1,2229 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 208, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 208, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 208, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 207, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 8, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 204, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 8, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 204, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 8, - "column": 1 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 17, - "end": 202, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "test": { - "type": "BinaryExpression", - "start": 21, - "end": 50, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 35 - } - }, - "left": { - "type": "MemberExpression", - "start": 21, - "end": 38, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 23 - } - }, - "object": { - "type": "Identifier", - "start": 21, - "end": 29, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 14 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 30, - "end": 38, - "loc": { - "start": { - "line": 2, - "column": 15 - }, - "end": { - "line": 2, - "column": 23 - }, - "identifierName": "protocol" - }, - "name": "protocol" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 43, - "end": 50, - "loc": { - "start": { - "line": 2, - "column": 28 - }, - "end": { - "line": 2, - "column": 35 - } - }, - "extra": { - "rawValue": "file:", - "raw": "'file:'" - }, - "value": "file:" - } - }, - "consequent": { - "type": "BlockStatement", - "start": 52, - "end": 202, - "loc": { - "start": { - "line": 2, - "column": 37 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 58, - "end": 111, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 57 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 62, - "end": 110, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 56 - } - }, - "id": { - "type": "Identifier", - "start": 62, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 12 - }, - "identifierName": "elms" - }, - "name": "elms" - }, - "init": { - "type": "CallExpression", - "start": 69, - "end": 110, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 56 - } - }, - "callee": { - "type": "MemberExpression", - "start": 69, - "end": 94, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 69, - "end": 77, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 23 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 78, - "end": 94, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 40 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 95, - "end": 109, - "loc": { - "start": { - "line": 3, - "column": 41 - }, - "end": { - "line": 3, - "column": 55 - } - }, - "extra": { - "rawValue": "a[href=\"./\"]", - "raw": "'a[href=\"./\"]'" - }, - "value": "a[href=\"./\"]" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 116, - "end": 198, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 6, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 121, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 9 - }, - "end": { - "line": 4, - "column": 18 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 125, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 18 - } - }, - "id": { - "type": "Identifier", - "start": 125, - "end": 126, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 14 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 129, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 18 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 132, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 35 - } - }, - "left": { - "type": "Identifier", - "start": 132, - "end": 133, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 21 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 136, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 24 - }, - "end": { - "line": 4, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 136, - "end": 140, - "loc": { - "start": { - "line": 4, - "column": 24 - }, - "end": { - "line": 4, - "column": 28 - }, - "identifierName": "elms" - }, - "name": "elms" - }, - "property": { - "type": "Identifier", - "start": 141, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 29 - }, - "end": { - "line": 4, - "column": 35 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 149, - "end": 152, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 40 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 149, - "end": 150, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 38 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 154, - "end": 198, - "loc": { - "start": { - "line": 4, - "column": 42 - }, - "end": { - "line": 6, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 162, - "end": 192, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 36 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 162, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 35 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 162, - "end": 174, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 18 - } - }, - "object": { - "type": "MemberExpression", - "start": 162, - "end": 169, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 13 - } - }, - "object": { - "type": "Identifier", - "start": 162, - "end": 166, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 10 - }, - "identifierName": "elms" - }, - "name": "elms" - }, - "property": { - "type": "Identifier", - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 170, - "end": 174, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 18 - }, - "identifierName": "href" - }, - "name": "href" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 177, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 21 - }, - "end": { - "line": 5, - "column": 35 - } - }, - "extra": { - "rawValue": "./index.html", - "raw": "'./index.html'" - }, - "value": "./index.html" - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 17, - "end": 19, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 20, - "end": 21, - "loc": { - "start": { - "line": 2, - "column": 5 - }, - "end": { - "line": 2, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 21, - "end": 29, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 29, - "end": 30, - "loc": { - "start": { - "line": 2, - "column": 14 - }, - "end": { - "line": 2, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "protocol", - "start": 30, - "end": 38, - "loc": { - "start": { - "line": 2, - "column": 15 - }, - "end": { - "line": 2, - "column": 23 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 39, - "end": 42, - "loc": { - "start": { - "line": 2, - "column": 24 - }, - "end": { - "line": 2, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file:", - "start": 43, - "end": 50, - "loc": { - "start": { - "line": 2, - "column": 28 - }, - "end": { - "line": 2, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 50, - "end": 51, - "loc": { - "start": { - "line": 2, - "column": 35 - }, - "end": { - "line": 2, - "column": 36 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 52, - "end": 53, - "loc": { - "start": { - "line": 2, - "column": 37 - }, - "end": { - "line": 2, - "column": 38 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 58, - "end": 61, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "elms", - "start": 62, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 67, - "end": 68, - "loc": { - "start": { - "line": 3, - "column": 13 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 69, - "end": 77, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 77, - "end": 78, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 78, - "end": 94, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 94, - "end": 95, - "loc": { - "start": { - "line": 3, - "column": 40 - }, - "end": { - "line": 3, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "a[href=\"./\"]", - "start": 95, - "end": 109, - "loc": { - "start": { - "line": 3, - "column": 41 - }, - "end": { - "line": 3, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 109, - "end": 110, - "loc": { - "start": { - "line": 3, - "column": 55 - }, - "end": { - "line": 3, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 110, - "end": 111, - "loc": { - "start": { - "line": 3, - "column": 56 - }, - "end": { - "line": 3, - "column": 57 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 116, - "end": 119, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 120, - "end": 121, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 9 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 121, - "end": 124, - "loc": { - "start": { - "line": 4, - "column": 9 - }, - "end": { - "line": 4, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 125, - "end": 126, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 127, - "end": 128, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 129, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 130, - "end": 131, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 132, - "end": 133, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 21 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 134, - "end": 135, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "elms", - "start": 136, - "end": 140, - "loc": { - "start": { - "line": 4, - "column": 24 - }, - "end": { - "line": 4, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 140, - "end": 141, - "loc": { - "start": { - "line": 4, - "column": 28 - }, - "end": { - "line": 4, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 141, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 29 - }, - "end": { - "line": 4, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 147, - "end": 148, - "loc": { - "start": { - "line": 4, - "column": 35 - }, - "end": { - "line": 4, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 149, - "end": 150, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 38 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 150, - "end": 152, - "loc": { - "start": { - "line": 4, - "column": 38 - }, - "end": { - "line": 4, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 152, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 40 - }, - "end": { - "line": 4, - "column": 41 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 154, - "end": 155, - "loc": { - "start": { - "line": 4, - "column": 42 - }, - "end": { - "line": 4, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "elms", - "start": 162, - "end": 166, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 10 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 166, - "end": 167, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 12 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 168, - "end": 169, - "loc": { - "start": { - "line": 5, - "column": 12 - }, - "end": { - "line": 5, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 169, - "end": 170, - "loc": { - "start": { - "line": 5, - "column": 13 - }, - "end": { - "line": 5, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "href", - "start": 170, - "end": 174, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 175, - "end": 176, - "loc": { - "start": { - "line": 5, - "column": 19 - }, - "end": { - "line": 5, - "column": 20 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./index.html", - "start": 177, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 21 - }, - "end": { - "line": 5, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 191, - "end": 192, - "loc": { - "start": { - "line": 5, - "column": 35 - }, - "end": { - "line": 5, - "column": 36 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 197, - "end": 198, - "loc": { - "start": { - "line": 6, - "column": 4 - }, - "end": { - "line": 6, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 201, - "end": 202, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 203, - "end": 204, - "loc": { - "start": { - "line": 8, - "column": 0 - }, - "end": { - "line": 8, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 204, - "end": 205, - "loc": { - "start": { - "line": 8, - "column": 1 - }, - "end": { - "line": 8, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 205, - "end": 206, - "loc": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 206, - "end": 207, - "loc": { - "start": { - "line": 8, - "column": 3 - }, - "end": { - "line": 8, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 207, - "end": 208, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 208, - "end": 208, - "loc": { - "start": { - "line": 8, - "column": 5 - }, - "end": { - "line": 8, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/prettify/prettify.js.json b/docs/ast/source/doc/script/prettify/prettify.js.json deleted file mode 100644 index 0a748676..00000000 --- a/docs/ast/source/doc/script/prettify/prettify.js.json +++ /dev/null @@ -1,196894 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 16837, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 164, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 16837, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 164, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "VariableDeclaration", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 4 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "id": { - "type": "Identifier", - "start": 4, - "end": 5, - "loc": { - "start": { - "line": 1, - "column": 4 - }, - "end": { - "line": 1, - "column": 5 - }, - "identifierName": "q" - }, - "name": "q" - }, - "init": { - "type": "NullLiteral", - "start": 8, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 8 - }, - "end": { - "line": 1, - "column": 12 - } - } - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 13, - "end": 52, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 52 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 13, - "end": 51, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 51 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 13, - "end": 46, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 46 - } - }, - "object": { - "type": "Identifier", - "start": 13, - "end": 19, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 19 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 20, - "end": 46, - "loc": { - "start": { - "line": 1, - "column": 20 - }, - "end": { - "line": 1, - "column": 46 - }, - "identifierName": "PR_SHOULD_USE_CONTINUATION" - }, - "name": "PR_SHOULD_USE_CONTINUATION" - }, - "computed": false - }, - "right": { - "type": "UnaryExpression", - "start": 49, - "end": 51, - "loc": { - "start": { - "line": 1, - "column": 49 - }, - "end": { - "line": 1, - "column": 51 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 50, - "end": 51, - "loc": { - "start": { - "line": 1, - "column": 50 - }, - "end": { - "line": 1, - "column": 51 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 53, - "end": 16837, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 164, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 53, - "end": 16836, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 164, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 54, - "end": 16833, - "loc": { - "start": { - "line": 2, - "column": 1 - }, - "end": { - "line": 164, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 66, - "end": 16833, - "loc": { - "start": { - "line": 2, - "column": 13 - }, - "end": { - "line": 164, - "column": 1 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 70, - "end": 2961, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 30, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 79, - "end": 80, - "loc": { - "start": { - "line": 3, - "column": 11 - }, - "end": { - "line": 3, - "column": 12 - }, - "identifierName": "L" - }, - "name": "L" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 81, - "end": 82, - "loc": { - "start": { - "line": 3, - "column": 13 - }, - "end": { - "line": 3, - "column": 14 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 84, - "end": 2961, - "loc": { - "start": { - "line": 3, - "column": 16 - }, - "end": { - "line": 30, - "column": 3 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 90, - "end": 334, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 6, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 99, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 14 - }, - "identifierName": "m" - }, - "name": "m" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 101, - "end": 102, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 104, - "end": 334, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 6, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 112, - "end": 136, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 30 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 116, - "end": 135, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 29 - } - }, - "id": { - "type": "Identifier", - "start": 116, - "end": 117, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "CallExpression", - "start": 120, - "end": 135, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 29 - } - }, - "callee": { - "type": "MemberExpression", - "start": 120, - "end": 132, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 120, - "end": 121, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 122, - "end": 132, - "loc": { - "start": { - "line": 5, - "column": 16 - }, - "end": { - "line": 5, - "column": 26 - }, - "identifierName": "charCodeAt" - }, - "name": "charCodeAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 133, - "end": 134, - "loc": { - "start": { - "line": 5, - "column": 27 - }, - "end": { - "line": 5, - "column": 28 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 136, - "end": 159, - "loc": { - "start": { - "line": 5, - "column": 30 - }, - "end": { - "line": 5, - "column": 53 - } - }, - "test": { - "type": "BinaryExpression", - "start": 140, - "end": 148, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "left": { - "type": "Identifier", - "start": 140, - "end": 141, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 35 - }, - "identifierName": "f" - }, - "name": "f" - }, - "operator": "!==", - "right": { - "type": "NumericLiteral", - "start": 146, - "end": 148, - "loc": { - "start": { - "line": 5, - "column": 40 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "extra": { - "rawValue": 92, - "raw": "92" - }, - "value": 92 - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 150, - "end": 159, - "loc": { - "start": { - "line": 5, - "column": 44 - }, - "end": { - "line": 5, - "column": 53 - } - }, - "argument": { - "type": "Identifier", - "start": 157, - "end": 158, - "loc": { - "start": { - "line": 5, - "column": 51 - }, - "end": { - "line": 5, - "column": 52 - }, - "identifierName": "f" - }, - "name": "f" - } - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 159, - "end": 179, - "loc": { - "start": { - "line": 5, - "column": 53 - }, - "end": { - "line": 5, - "column": 73 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 163, - "end": 178, - "loc": { - "start": { - "line": 5, - "column": 57 - }, - "end": { - "line": 5, - "column": 72 - } - }, - "id": { - "type": "Identifier", - "start": 163, - "end": 164, - "loc": { - "start": { - "line": 5, - "column": 57 - }, - "end": { - "line": 5, - "column": 58 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": { - "type": "CallExpression", - "start": 167, - "end": 178, - "loc": { - "start": { - "line": 5, - "column": 61 - }, - "end": { - "line": 5, - "column": 72 - } - }, - "callee": { - "type": "MemberExpression", - "start": 167, - "end": 175, - "loc": { - "start": { - "line": 5, - "column": 61 - }, - "end": { - "line": 5, - "column": 69 - } - }, - "object": { - "type": "Identifier", - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 61 - }, - "end": { - "line": 5, - "column": 62 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 169, - "end": 175, - "loc": { - "start": { - "line": 5, - "column": 63 - }, - "end": { - "line": 5, - "column": 69 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 176, - "end": 177, - "loc": { - "start": { - "line": 5, - "column": 70 - }, - "end": { - "line": 5, - "column": 71 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ReturnStatement", - "start": 179, - "end": 328, - "loc": { - "start": { - "line": 5, - "column": 73 - }, - "end": { - "line": 5, - "column": 222 - } - }, - "argument": { - "type": "ConditionalExpression", - "start": 186, - "end": 327, - "loc": { - "start": { - "line": 5, - "column": 80 - }, - "end": { - "line": 5, - "column": 221 - } - }, - "test": { - "type": "AssignmentExpression", - "start": 187, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 81 - }, - "end": { - "line": 5, - "column": 89 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 187, - "end": 188, - "loc": { - "start": { - "line": 5, - "column": 81 - }, - "end": { - "line": 5, - "column": 82 - }, - "identifierName": "f" - }, - "name": "f" - }, - "right": { - "type": "MemberExpression", - "start": 191, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 85 - }, - "end": { - "line": 5, - "column": 89 - } - }, - "object": { - "type": "Identifier", - "start": 191, - "end": 192, - "loc": { - "start": { - "line": 5, - "column": 85 - }, - "end": { - "line": 5, - "column": 86 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "Identifier", - "start": 193, - "end": 194, - "loc": { - "start": { - "line": 5, - "column": 87 - }, - "end": { - "line": 5, - "column": 88 - }, - "identifierName": "b" - }, - "name": "b" - }, - "computed": true - }, - "extra": { - "parenthesized": true, - "parenStart": 186 - } - }, - "consequent": { - "type": "Identifier", - "start": 199, - "end": 200, - "loc": { - "start": { - "line": 5, - "column": 93 - }, - "end": { - "line": 5, - "column": 94 - }, - "identifierName": "f" - }, - "name": "f" - }, - "alternate": { - "type": "ConditionalExpression", - "start": 203, - "end": 327, - "loc": { - "start": { - "line": 5, - "column": 97 - }, - "end": { - "line": 5, - "column": 221 - } - }, - "test": { - "type": "LogicalExpression", - "start": 203, - "end": 223, - "loc": { - "start": { - "line": 5, - "column": 97 - }, - "end": { - "line": 5, - "column": 117 - } - }, - "left": { - "type": "BinaryExpression", - "start": 203, - "end": 211, - "loc": { - "start": { - "line": 5, - "column": 97 - }, - "end": { - "line": 5, - "column": 105 - } - }, - "left": { - "type": "StringLiteral", - "start": 203, - "end": 206, - "loc": { - "start": { - "line": 5, - "column": 97 - }, - "end": { - "line": 5, - "column": 100 - } - }, - "extra": { - "rawValue": "0", - "raw": "\"0\"" - }, - "value": "0" - }, - "operator": "<=", - "right": { - "type": "Identifier", - "start": 210, - "end": 211, - "loc": { - "start": { - "line": 5, - "column": 104 - }, - "end": { - "line": 5, - "column": 105 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 215, - "end": 223, - "loc": { - "start": { - "line": 5, - "column": 109 - }, - "end": { - "line": 5, - "column": 117 - } - }, - "left": { - "type": "Identifier", - "start": 215, - "end": 216, - "loc": { - "start": { - "line": 5, - "column": 109 - }, - "end": { - "line": 5, - "column": 110 - }, - "identifierName": "b" - }, - "name": "b" - }, - "operator": "<=", - "right": { - "type": "StringLiteral", - "start": 220, - "end": 223, - "loc": { - "start": { - "line": 5, - "column": 114 - }, - "end": { - "line": 5, - "column": 117 - } - }, - "extra": { - "rawValue": "7", - "raw": "\"7\"" - }, - "value": "7" - } - } - }, - "consequent": { - "type": "CallExpression", - "start": 226, - "end": 253, - "loc": { - "start": { - "line": 5, - "column": 120 - }, - "end": { - "line": 5, - "column": 147 - } - }, - "callee": { - "type": "Identifier", - "start": 226, - "end": 234, - "loc": { - "start": { - "line": 5, - "column": 120 - }, - "end": { - "line": 5, - "column": 128 - }, - "identifierName": "parseInt" - }, - "name": "parseInt" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 235, - "end": 249, - "loc": { - "start": { - "line": 5, - "column": 129 - }, - "end": { - "line": 5, - "column": 143 - } - }, - "callee": { - "type": "MemberExpression", - "start": 235, - "end": 246, - "loc": { - "start": { - "line": 5, - "column": 129 - }, - "end": { - "line": 5, - "column": 140 - } - }, - "object": { - "type": "Identifier", - "start": 235, - "end": 236, - "loc": { - "start": { - "line": 5, - "column": 129 - }, - "end": { - "line": 5, - "column": 130 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 237, - "end": 246, - "loc": { - "start": { - "line": 5, - "column": 131 - }, - "end": { - "line": 5, - "column": 140 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 247, - "end": 248, - "loc": { - "start": { - "line": 5, - "column": 141 - }, - "end": { - "line": 5, - "column": 142 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - }, - { - "type": "NumericLiteral", - "start": 251, - "end": 252, - "loc": { - "start": { - "line": 5, - "column": 145 - }, - "end": { - "line": 5, - "column": 146 - } - }, - "extra": { - "rawValue": 8, - "raw": "8" - }, - "value": 8 - } - ] - }, - "alternate": { - "type": "ConditionalExpression", - "start": 256, - "end": 327, - "loc": { - "start": { - "line": 5, - "column": 150 - }, - "end": { - "line": 5, - "column": 221 - } - }, - "test": { - "type": "LogicalExpression", - "start": 256, - "end": 278, - "loc": { - "start": { - "line": 5, - "column": 150 - }, - "end": { - "line": 5, - "column": 172 - } - }, - "left": { - "type": "BinaryExpression", - "start": 256, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 150 - }, - "end": { - "line": 5, - "column": 159 - } - }, - "left": { - "type": "Identifier", - "start": 256, - "end": 257, - "loc": { - "start": { - "line": 5, - "column": 150 - }, - "end": { - "line": 5, - "column": 151 - }, - "identifierName": "b" - }, - "name": "b" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 262, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 156 - }, - "end": { - "line": 5, - "column": 159 - } - }, - "extra": { - "rawValue": "u", - "raw": "\"u\"" - }, - "value": "u" - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 269, - "end": 278, - "loc": { - "start": { - "line": 5, - "column": 163 - }, - "end": { - "line": 5, - "column": 172 - } - }, - "left": { - "type": "Identifier", - "start": 269, - "end": 270, - "loc": { - "start": { - "line": 5, - "column": 163 - }, - "end": { - "line": 5, - "column": 164 - }, - "identifierName": "b" - }, - "name": "b" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 275, - "end": 278, - "loc": { - "start": { - "line": 5, - "column": 169 - }, - "end": { - "line": 5, - "column": 172 - } - }, - "extra": { - "rawValue": "x", - "raw": "\"x\"" - }, - "value": "x" - } - } - }, - "consequent": { - "type": "CallExpression", - "start": 281, - "end": 309, - "loc": { - "start": { - "line": 5, - "column": 175 - }, - "end": { - "line": 5, - "column": 203 - } - }, - "callee": { - "type": "Identifier", - "start": 281, - "end": 289, - "loc": { - "start": { - "line": 5, - "column": 175 - }, - "end": { - "line": 5, - "column": 183 - }, - "identifierName": "parseInt" - }, - "name": "parseInt" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 290, - "end": 304, - "loc": { - "start": { - "line": 5, - "column": 184 - }, - "end": { - "line": 5, - "column": 198 - } - }, - "callee": { - "type": "MemberExpression", - "start": 290, - "end": 301, - "loc": { - "start": { - "line": 5, - "column": 184 - }, - "end": { - "line": 5, - "column": 195 - } - }, - "object": { - "type": "Identifier", - "start": 290, - "end": 291, - "loc": { - "start": { - "line": 5, - "column": 184 - }, - "end": { - "line": 5, - "column": 185 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 292, - "end": 301, - "loc": { - "start": { - "line": 5, - "column": 186 - }, - "end": { - "line": 5, - "column": 195 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 302, - "end": 303, - "loc": { - "start": { - "line": 5, - "column": 196 - }, - "end": { - "line": 5, - "column": 197 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - ] - }, - { - "type": "NumericLiteral", - "start": 306, - "end": 308, - "loc": { - "start": { - "line": 5, - "column": 200 - }, - "end": { - "line": 5, - "column": 202 - } - }, - "extra": { - "rawValue": 16, - "raw": "16" - }, - "value": 16 - } - ] - }, - "alternate": { - "type": "CallExpression", - "start": 312, - "end": 327, - "loc": { - "start": { - "line": 5, - "column": 206 - }, - "end": { - "line": 5, - "column": 221 - } - }, - "callee": { - "type": "MemberExpression", - "start": 312, - "end": 324, - "loc": { - "start": { - "line": 5, - "column": 206 - }, - "end": { - "line": 5, - "column": 218 - } - }, - "object": { - "type": "Identifier", - "start": 312, - "end": 313, - "loc": { - "start": { - "line": 5, - "column": 206 - }, - "end": { - "line": 5, - "column": 207 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 314, - "end": 324, - "loc": { - "start": { - "line": 5, - "column": 208 - }, - "end": { - "line": 5, - "column": 218 - }, - "identifierName": "charCodeAt" - }, - "name": "charCodeAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 325, - "end": 326, - "loc": { - "start": { - "line": 5, - "column": 219 - }, - "end": { - "line": 5, - "column": 220 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - } - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 334, - "end": 528, - "loc": { - "start": { - "line": 6, - "column": 5 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 343, - "end": 344, - "loc": { - "start": { - "line": 6, - "column": 14 - }, - "end": { - "line": 6, - "column": 15 - }, - "identifierName": "e" - }, - "name": "e" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 345, - "end": 346, - "loc": { - "start": { - "line": 6, - "column": 16 - }, - "end": { - "line": 6, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 348, - "end": 528, - "loc": { - "start": { - "line": 6, - "column": 19 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 356, - "end": 418, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 68 - } - }, - "test": { - "type": "BinaryExpression", - "start": 360, - "end": 366, - "loc": { - "start": { - "line": 7, - "column": 10 - }, - "end": { - "line": 7, - "column": 16 - } - }, - "left": { - "type": "Identifier", - "start": 360, - "end": 361, - "loc": { - "start": { - "line": 7, - "column": 10 - }, - "end": { - "line": 7, - "column": 11 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "<", - "right": { - "type": "NumericLiteral", - "start": 364, - "end": 366, - "loc": { - "start": { - "line": 7, - "column": 14 - }, - "end": { - "line": 7, - "column": 16 - } - }, - "extra": { - "rawValue": 32, - "raw": "32" - }, - "value": 32 - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 368, - "end": 418, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 68 - } - }, - "argument": { - "type": "BinaryExpression", - "start": 375, - "end": 417, - "loc": { - "start": { - "line": 7, - "column": 25 - }, - "end": { - "line": 7, - "column": 67 - } - }, - "left": { - "type": "ConditionalExpression", - "start": 376, - "end": 399, - "loc": { - "start": { - "line": 7, - "column": 26 - }, - "end": { - "line": 7, - "column": 49 - } - }, - "test": { - "type": "BinaryExpression", - "start": 376, - "end": 382, - "loc": { - "start": { - "line": 7, - "column": 26 - }, - "end": { - "line": 7, - "column": 32 - } - }, - "left": { - "type": "Identifier", - "start": 376, - "end": 377, - "loc": { - "start": { - "line": 7, - "column": 26 - }, - "end": { - "line": 7, - "column": 27 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "<", - "right": { - "type": "NumericLiteral", - "start": 380, - "end": 382, - "loc": { - "start": { - "line": 7, - "column": 30 - }, - "end": { - "line": 7, - "column": 32 - } - }, - "extra": { - "rawValue": 16, - "raw": "16" - }, - "value": 16 - } - }, - "consequent": { - "type": "StringLiteral", - "start": 385, - "end": 391, - "loc": { - "start": { - "line": 7, - "column": 35 - }, - "end": { - "line": 7, - "column": 41 - } - }, - "extra": { - "rawValue": "\\x0", - "raw": "\"\\\\x0\"" - }, - "value": "\\x0" - }, - "alternate": { - "type": "StringLiteral", - "start": 394, - "end": 399, - "loc": { - "start": { - "line": 7, - "column": 44 - }, - "end": { - "line": 7, - "column": 49 - } - }, - "extra": { - "rawValue": "\\x", - "raw": "\"\\\\x\"" - }, - "value": "\\x" - }, - "extra": { - "parenthesized": true, - "parenStart": 375 - } - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 403, - "end": 417, - "loc": { - "start": { - "line": 7, - "column": 53 - }, - "end": { - "line": 7, - "column": 67 - } - }, - "callee": { - "type": "MemberExpression", - "start": 403, - "end": 413, - "loc": { - "start": { - "line": 7, - "column": 53 - }, - "end": { - "line": 7, - "column": 63 - } - }, - "object": { - "type": "Identifier", - "start": 403, - "end": 404, - "loc": { - "start": { - "line": 7, - "column": 53 - }, - "end": { - "line": 7, - "column": 54 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 405, - "end": 413, - "loc": { - "start": { - "line": 7, - "column": 55 - }, - "end": { - "line": 7, - "column": 63 - }, - "identifierName": "toString" - }, - "name": "toString" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 414, - "end": 416, - "loc": { - "start": { - "line": 7, - "column": 64 - }, - "end": { - "line": 7, - "column": 66 - } - }, - "extra": { - "rawValue": 16, - "raw": "16" - }, - "value": 16 - } - ] - } - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 418, - "end": 445, - "loc": { - "start": { - "line": 7, - "column": 68 - }, - "end": { - "line": 7, - "column": 95 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 418, - "end": 444, - "loc": { - "start": { - "line": 7, - "column": 68 - }, - "end": { - "line": 7, - "column": 94 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 418, - "end": 419, - "loc": { - "start": { - "line": 7, - "column": 68 - }, - "end": { - "line": 7, - "column": 69 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "CallExpression", - "start": 422, - "end": 444, - "loc": { - "start": { - "line": 7, - "column": 72 - }, - "end": { - "line": 7, - "column": 94 - } - }, - "callee": { - "type": "MemberExpression", - "start": 422, - "end": 441, - "loc": { - "start": { - "line": 7, - "column": 72 - }, - "end": { - "line": 7, - "column": 91 - } - }, - "object": { - "type": "Identifier", - "start": 422, - "end": 428, - "loc": { - "start": { - "line": 7, - "column": 72 - }, - "end": { - "line": 7, - "column": 78 - }, - "identifierName": "String" - }, - "name": "String" - }, - "property": { - "type": "Identifier", - "start": 429, - "end": 441, - "loc": { - "start": { - "line": 7, - "column": 79 - }, - "end": { - "line": 7, - "column": 91 - }, - "identifierName": "fromCharCode" - }, - "name": "fromCharCode" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 442, - "end": 443, - "loc": { - "start": { - "line": 7, - "column": 92 - }, - "end": { - "line": 7, - "column": 93 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - } - }, - { - "type": "IfStatement", - "start": 445, - "end": 513, - "loc": { - "start": { - "line": 7, - "column": 95 - }, - "end": { - "line": 7, - "column": 163 - } - }, - "test": { - "type": "LogicalExpression", - "start": 449, - "end": 498, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 148 - } - }, - "left": { - "type": "LogicalExpression", - "start": 449, - "end": 485, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 135 - } - }, - "left": { - "type": "LogicalExpression", - "start": 449, - "end": 472, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 122 - } - }, - "left": { - "type": "BinaryExpression", - "start": 449, - "end": 459, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 109 - } - }, - "left": { - "type": "Identifier", - "start": 449, - "end": 450, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 100 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 455, - "end": 459, - "loc": { - "start": { - "line": 7, - "column": 105 - }, - "end": { - "line": 7, - "column": 109 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 463, - "end": 472, - "loc": { - "start": { - "line": 7, - "column": 113 - }, - "end": { - "line": 7, - "column": 122 - } - }, - "left": { - "type": "Identifier", - "start": 463, - "end": 464, - "loc": { - "start": { - "line": 7, - "column": 113 - }, - "end": { - "line": 7, - "column": 114 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 469, - "end": 472, - "loc": { - "start": { - "line": 7, - "column": 119 - }, - "end": { - "line": 7, - "column": 122 - } - }, - "extra": { - "rawValue": "-", - "raw": "\"-\"" - }, - "value": "-" - } - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 476, - "end": 485, - "loc": { - "start": { - "line": 7, - "column": 126 - }, - "end": { - "line": 7, - "column": 135 - } - }, - "left": { - "type": "Identifier", - "start": 476, - "end": 477, - "loc": { - "start": { - "line": 7, - "column": 126 - }, - "end": { - "line": 7, - "column": 127 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 482, - "end": 485, - "loc": { - "start": { - "line": 7, - "column": 132 - }, - "end": { - "line": 7, - "column": 135 - } - }, - "extra": { - "rawValue": "[", - "raw": "\"[\"" - }, - "value": "[" - } - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 489, - "end": 498, - "loc": { - "start": { - "line": 7, - "column": 139 - }, - "end": { - "line": 7, - "column": 148 - } - }, - "left": { - "type": "Identifier", - "start": 489, - "end": 490, - "loc": { - "start": { - "line": 7, - "column": 139 - }, - "end": { - "line": 7, - "column": 140 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 495, - "end": 498, - "loc": { - "start": { - "line": 7, - "column": 145 - }, - "end": { - "line": 7, - "column": 148 - } - }, - "extra": { - "rawValue": "]", - "raw": "\"]\"" - }, - "value": "]" - } - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 500, - "end": 513, - "loc": { - "start": { - "line": 7, - "column": 150 - }, - "end": { - "line": 7, - "column": 163 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 500, - "end": 512, - "loc": { - "start": { - "line": 7, - "column": 150 - }, - "end": { - "line": 7, - "column": 162 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 500, - "end": 501, - "loc": { - "start": { - "line": 7, - "column": 150 - }, - "end": { - "line": 7, - "column": 151 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "BinaryExpression", - "start": 504, - "end": 512, - "loc": { - "start": { - "line": 7, - "column": 154 - }, - "end": { - "line": 7, - "column": 162 - } - }, - "left": { - "type": "StringLiteral", - "start": 504, - "end": 508, - "loc": { - "start": { - "line": 7, - "column": 154 - }, - "end": { - "line": 7, - "column": 158 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 511, - "end": 512, - "loc": { - "start": { - "line": 7, - "column": 161 - }, - "end": { - "line": 7, - "column": 162 - }, - "identifierName": "a" - }, - "name": "a" - } - } - } - }, - "alternate": null - }, - { - "type": "ReturnStatement", - "start": 513, - "end": 522, - "loc": { - "start": { - "line": 7, - "column": 163 - }, - "end": { - "line": 7, - "column": 172 - } - }, - "argument": { - "type": "Identifier", - "start": 520, - "end": 521, - "loc": { - "start": { - "line": 7, - "column": 170 - }, - "end": { - "line": 7, - "column": 171 - }, - "identifierName": "a" - }, - "name": "a" - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 528, - "end": 1544, - "loc": { - "start": { - "line": 8, - "column": 5 - }, - "end": { - "line": 17, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 537, - "end": 538, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 15 - }, - "identifierName": "h" - }, - "name": "h" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 539, - "end": 540, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 542, - "end": 1544, - "loc": { - "start": { - "line": 8, - "column": 19 - }, - "end": { - "line": 17, - "column": 5 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 550, - "end": 1136, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 14, - "column": 7 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 555, - "end": 744, - "loc": { - "start": { - "line": 9, - "column": 11 - }, - "end": { - "line": 9, - "column": 200 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 559, - "end": 681, - "loc": { - "start": { - "line": 9, - "column": 15 - }, - "end": { - "line": 9, - "column": 137 - } - }, - "id": { - "type": "Identifier", - "start": 559, - "end": 560, - "loc": { - "start": { - "line": 9, - "column": 15 - }, - "end": { - "line": 9, - "column": 16 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "CallExpression", - "start": 563, - "end": 681, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 137 - } - }, - "callee": { - "type": "MemberExpression", - "start": 563, - "end": 597, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 53 - } - }, - "object": { - "type": "CallExpression", - "start": 563, - "end": 591, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 47 - } - }, - "callee": { - "type": "MemberExpression", - "start": 563, - "end": 574, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 30 - } - }, - "object": { - "type": "Identifier", - "start": 563, - "end": 564, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 20 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 565, - "end": 574, - "loc": { - "start": { - "line": 9, - "column": 21 - }, - "end": { - "line": 9, - "column": 30 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 575, - "end": 576, - "loc": { - "start": { - "line": 9, - "column": 31 - }, - "end": { - "line": 9, - "column": 32 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - { - "type": "BinaryExpression", - "start": 578, - "end": 590, - "loc": { - "start": { - "line": 9, - "column": 34 - }, - "end": { - "line": 9, - "column": 46 - } - }, - "left": { - "type": "MemberExpression", - "start": 578, - "end": 586, - "loc": { - "start": { - "line": 9, - "column": 34 - }, - "end": { - "line": 9, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 578, - "end": 579, - "loc": { - "start": { - "line": 9, - "column": 34 - }, - "end": { - "line": 9, - "column": 35 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 580, - "end": 586, - "loc": { - "start": { - "line": 9, - "column": 36 - }, - "end": { - "line": 9, - "column": 42 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "-", - "right": { - "type": "NumericLiteral", - "start": 589, - "end": 590, - "loc": { - "start": { - "line": 9, - "column": 45 - }, - "end": { - "line": 9, - "column": 46 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - } - ] - }, - "property": { - "type": "Identifier", - "start": 592, - "end": 597, - "loc": { - "start": { - "line": 9, - "column": 48 - }, - "end": { - "line": 9, - "column": 53 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 598, - "end": 680, - "loc": { - "start": { - "line": 9, - "column": 54 - }, - "end": { - "line": 9, - "column": 136 - } - }, - "extra": { - "raw": "/\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\S\\s]|[^\\\\]/g" - }, - "pattern": "\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\S\\s]|[^\\\\]", - "flags": "g" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 683, - "end": 689, - "loc": { - "start": { - "line": 9, - "column": 139 - }, - "end": { - "line": 9, - "column": 145 - } - }, - "id": { - "type": "Identifier", - "start": 683, - "end": 684, - "loc": { - "start": { - "line": 9, - "column": 139 - }, - "end": { - "line": 9, - "column": 140 - }, - "identifierName": "a" - }, - "name": "a" - }, - "init": { - "type": "ArrayExpression", - "start": 687, - "end": 689, - "loc": { - "start": { - "line": 9, - "column": 143 - }, - "end": { - "line": 9, - "column": 145 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 691, - "end": 697, - "loc": { - "start": { - "line": 9, - "column": 147 - }, - "end": { - "line": 9, - "column": 153 - } - }, - "id": { - "type": "Identifier", - "start": 691, - "end": 692, - "loc": { - "start": { - "line": 9, - "column": 147 - }, - "end": { - "line": 9, - "column": 148 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": { - "type": "ArrayExpression", - "start": 695, - "end": 697, - "loc": { - "start": { - "line": 9, - "column": 151 - }, - "end": { - "line": 9, - "column": 153 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 699, - "end": 715, - "loc": { - "start": { - "line": 9, - "column": 155 - }, - "end": { - "line": 9, - "column": 171 - } - }, - "id": { - "type": "Identifier", - "start": 699, - "end": 700, - "loc": { - "start": { - "line": 9, - "column": 155 - }, - "end": { - "line": 9, - "column": 156 - }, - "identifierName": "o" - }, - "name": "o" - }, - "init": { - "type": "BinaryExpression", - "start": 703, - "end": 715, - "loc": { - "start": { - "line": 9, - "column": 159 - }, - "end": { - "line": 9, - "column": 171 - } - }, - "left": { - "type": "MemberExpression", - "start": 703, - "end": 707, - "loc": { - "start": { - "line": 9, - "column": 159 - }, - "end": { - "line": 9, - "column": 163 - } - }, - "object": { - "type": "Identifier", - "start": 703, - "end": 704, - "loc": { - "start": { - "line": 9, - "column": 159 - }, - "end": { - "line": 9, - "column": 160 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "NumericLiteral", - "start": 705, - "end": 706, - "loc": { - "start": { - "line": 9, - "column": 161 - }, - "end": { - "line": 9, - "column": 162 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 712, - "end": 715, - "loc": { - "start": { - "line": 9, - "column": 168 - }, - "end": { - "line": 9, - "column": 171 - } - }, - "extra": { - "rawValue": "^", - "raw": "\"^\"" - }, - "value": "^" - } - } - }, - { - "type": "VariableDeclarator", - "start": 717, - "end": 730, - "loc": { - "start": { - "line": 9, - "column": 173 - }, - "end": { - "line": 9, - "column": 186 - } - }, - "id": { - "type": "Identifier", - "start": 717, - "end": 718, - "loc": { - "start": { - "line": 9, - "column": 173 - }, - "end": { - "line": 9, - "column": 174 - }, - "identifierName": "c" - }, - "name": "c" - }, - "init": { - "type": "ConditionalExpression", - "start": 721, - "end": 730, - "loc": { - "start": { - "line": 9, - "column": 177 - }, - "end": { - "line": 9, - "column": 186 - } - }, - "test": { - "type": "Identifier", - "start": 721, - "end": 722, - "loc": { - "start": { - "line": 9, - "column": 177 - }, - "end": { - "line": 9, - "column": 178 - }, - "identifierName": "o" - }, - "name": "o" - }, - "consequent": { - "type": "NumericLiteral", - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 9, - "column": 181 - }, - "end": { - "line": 9, - "column": 182 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "alternate": { - "type": "NumericLiteral", - "start": 729, - "end": 730, - "loc": { - "start": { - "line": 9, - "column": 185 - }, - "end": { - "line": 9, - "column": 186 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - }, - { - "type": "VariableDeclarator", - "start": 732, - "end": 744, - "loc": { - "start": { - "line": 9, - "column": 188 - }, - "end": { - "line": 9, - "column": 200 - } - }, - "id": { - "type": "Identifier", - "start": 732, - "end": 733, - "loc": { - "start": { - "line": 9, - "column": 188 - }, - "end": { - "line": 9, - "column": 189 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "MemberExpression", - "start": 736, - "end": 744, - "loc": { - "start": { - "line": 9, - "column": 192 - }, - "end": { - "line": 9, - "column": 200 - } - }, - "object": { - "type": "Identifier", - "start": 736, - "end": 737, - "loc": { - "start": { - "line": 9, - "column": 192 - }, - "end": { - "line": 9, - "column": 193 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 738, - "end": 744, - "loc": { - "start": { - "line": 9, - "column": 194 - }, - "end": { - "line": 9, - "column": 200 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 746, - "end": 751, - "loc": { - "start": { - "line": 9, - "column": 202 - }, - "end": { - "line": 9, - "column": 207 - } - }, - "left": { - "type": "Identifier", - "start": 746, - "end": 747, - "loc": { - "start": { - "line": 9, - "column": 202 - }, - "end": { - "line": 9, - "column": 203 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 750, - "end": 751, - "loc": { - "start": { - "line": 9, - "column": 206 - }, - "end": { - "line": 9, - "column": 207 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "update": { - "type": "UpdateExpression", - "start": 753, - "end": 756, - "loc": { - "start": { - "line": 9, - "column": 209 - }, - "end": { - "line": 9, - "column": 212 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 755, - "end": 756, - "loc": { - "start": { - "line": 9, - "column": 211 - }, - "end": { - "line": 9, - "column": 212 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 758, - "end": 1136, - "loc": { - "start": { - "line": 9, - "column": 214 - }, - "end": { - "line": 14, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 768, - "end": 781, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 21 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 772, - "end": 780, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 772, - "end": 773, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 13 - }, - "identifierName": "j" - }, - "name": "j" - }, - "init": { - "type": "MemberExpression", - "start": 776, - "end": 780, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 776, - "end": 777, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 17 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 778, - "end": 779, - "loc": { - "start": { - "line": 10, - "column": 18 - }, - "end": { - "line": 10, - "column": 19 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 781, - "end": 1128, - "loc": { - "start": { - "line": 10, - "column": 21 - }, - "end": { - "line": 13, - "column": 9 - } - }, - "test": { - "type": "CallExpression", - "start": 785, - "end": 804, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 44 - } - }, - "callee": { - "type": "MemberExpression", - "start": 785, - "end": 801, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 41 - } - }, - "object": { - "type": "RegExpLiteral", - "start": 785, - "end": 796, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 36 - } - }, - "extra": { - "raw": "/\\\\[bdsw]/i" - }, - "pattern": "\\\\[bdsw]", - "flags": "i" - }, - "property": { - "type": "Identifier", - "start": 797, - "end": 801, - "loc": { - "start": { - "line": 10, - "column": 37 - }, - "end": { - "line": 10, - "column": 41 - }, - "identifierName": "test" - }, - "name": "test" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 802, - "end": 803, - "loc": { - "start": { - "line": 10, - "column": 42 - }, - "end": { - "line": 10, - "column": 43 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - }, - "consequent": { - "type": "ExpressionStatement", - "start": 806, - "end": 816, - "loc": { - "start": { - "line": 10, - "column": 46 - }, - "end": { - "line": 10, - "column": 56 - } - }, - "expression": { - "type": "CallExpression", - "start": 806, - "end": 815, - "loc": { - "start": { - "line": 10, - "column": 46 - }, - "end": { - "line": 10, - "column": 55 - } - }, - "callee": { - "type": "MemberExpression", - "start": 806, - "end": 812, - "loc": { - "start": { - "line": 10, - "column": 46 - }, - "end": { - "line": 10, - "column": 52 - } - }, - "object": { - "type": "Identifier", - "start": 806, - "end": 807, - "loc": { - "start": { - "line": 10, - "column": 46 - }, - "end": { - "line": 10, - "column": 47 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 808, - "end": 812, - "loc": { - "start": { - "line": 10, - "column": 48 - }, - "end": { - "line": 10, - "column": 52 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 813, - "end": 814, - "loc": { - "start": { - "line": 10, - "column": 53 - }, - "end": { - "line": 10, - "column": 54 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - } - }, - "alternate": { - "type": "BlockStatement", - "start": 821, - "end": 1128, - "loc": { - "start": { - "line": 10, - "column": 61 - }, - "end": { - "line": 13, - "column": 9 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 833, - "end": 863, - "loc": { - "start": { - "line": 11, - "column": 10 - }, - "end": { - "line": 12, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 837, - "end": 845, - "loc": { - "start": { - "line": 11, - "column": 14 - }, - "end": { - "line": 11, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 837, - "end": 838, - "loc": { - "start": { - "line": 11, - "column": 14 - }, - "end": { - "line": 11, - "column": 15 - }, - "identifierName": "j" - }, - "name": "j" - }, - "init": { - "type": "CallExpression", - "start": 841, - "end": 845, - "loc": { - "start": { - "line": 11, - "column": 18 - }, - "end": { - "line": 11, - "column": 22 - } - }, - "callee": { - "type": "Identifier", - "start": 841, - "end": 842, - "loc": { - "start": { - "line": 11, - "column": 18 - }, - "end": { - "line": 11, - "column": 19 - }, - "identifierName": "m" - }, - "name": "m" - }, - "arguments": [ - { - "type": "Identifier", - "start": 843, - "end": 844, - "loc": { - "start": { - "line": 11, - "column": 20 - }, - "end": { - "line": 11, - "column": 21 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 861, - "end": 862, - "loc": { - "start": { - "line": 12, - "column": 14 - }, - "end": { - "line": 12, - "column": 15 - } - }, - "id": { - "type": "Identifier", - "start": 861, - "end": 862, - "loc": { - "start": { - "line": 12, - "column": 14 - }, - "end": { - "line": 12, - "column": 15 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 863, - "end": 929, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 82 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 863, - "end": 928, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 81 - } - }, - "test": { - "type": "LogicalExpression", - "start": 863, - "end": 892, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 45 - } - }, - "left": { - "type": "BinaryExpression", - "start": 863, - "end": 872, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 25 - } - }, - "left": { - "type": "BinaryExpression", - "start": 863, - "end": 868, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 21 - } - }, - "left": { - "type": "Identifier", - "start": 863, - "end": 864, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 17 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 867, - "end": 868, - "loc": { - "start": { - "line": 12, - "column": 20 - }, - "end": { - "line": 12, - "column": 21 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 871, - "end": 872, - "loc": { - "start": { - "line": 12, - "column": 24 - }, - "end": { - "line": 12, - "column": 25 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 876, - "end": 892, - "loc": { - "start": { - "line": 12, - "column": 29 - }, - "end": { - "line": 12, - "column": 45 - } - }, - "left": { - "type": "StringLiteral", - "start": 876, - "end": 879, - "loc": { - "start": { - "line": 12, - "column": 29 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "extra": { - "rawValue": "-", - "raw": "\"-\"" - }, - "value": "-" - }, - "operator": "===", - "right": { - "type": "MemberExpression", - "start": 884, - "end": 892, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 884, - "end": 885, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 38 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "BinaryExpression", - "start": 886, - "end": 891, - "loc": { - "start": { - "line": 12, - "column": 39 - }, - "end": { - "line": 12, - "column": 44 - } - }, - "left": { - "type": "Identifier", - "start": 886, - "end": 887, - "loc": { - "start": { - "line": 12, - "column": 39 - }, - "end": { - "line": 12, - "column": 40 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 890, - "end": 891, - "loc": { - "start": { - "line": 12, - "column": 43 - }, - "end": { - "line": 12, - "column": 44 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - } - } - }, - "consequent": { - "type": "SequenceExpression", - "start": 896, - "end": 919, - "loc": { - "start": { - "line": 12, - "column": 49 - }, - "end": { - "line": 12, - "column": 72 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 896, - "end": 911, - "loc": { - "start": { - "line": 12, - "column": 49 - }, - "end": { - "line": 12, - "column": 64 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 896, - "end": 897, - "loc": { - "start": { - "line": 12, - "column": 49 - }, - "end": { - "line": 12, - "column": 50 - }, - "identifierName": "d" - }, - "name": "d" - }, - "right": { - "type": "CallExpression", - "start": 900, - "end": 911, - "loc": { - "start": { - "line": 12, - "column": 53 - }, - "end": { - "line": 12, - "column": 64 - } - }, - "callee": { - "type": "Identifier", - "start": 900, - "end": 901, - "loc": { - "start": { - "line": 12, - "column": 53 - }, - "end": { - "line": 12, - "column": 54 - }, - "identifierName": "m" - }, - "name": "m" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 902, - "end": 910, - "loc": { - "start": { - "line": 12, - "column": 55 - }, - "end": { - "line": 12, - "column": 63 - } - }, - "object": { - "type": "Identifier", - "start": 902, - "end": 903, - "loc": { - "start": { - "line": 12, - "column": 55 - }, - "end": { - "line": 12, - "column": 56 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "BinaryExpression", - "start": 904, - "end": 909, - "loc": { - "start": { - "line": 12, - "column": 57 - }, - "end": { - "line": 12, - "column": 62 - } - }, - "left": { - "type": "Identifier", - "start": 904, - "end": 905, - "loc": { - "start": { - "line": 12, - "column": 57 - }, - "end": { - "line": 12, - "column": 58 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 908, - "end": 909, - "loc": { - "start": { - "line": 12, - "column": 61 - }, - "end": { - "line": 12, - "column": 62 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - }, - "computed": true - } - ] - } - }, - { - "type": "AssignmentExpression", - "start": 913, - "end": 919, - "loc": { - "start": { - "line": 12, - "column": 66 - }, - "end": { - "line": 12, - "column": 72 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 913, - "end": 914, - "loc": { - "start": { - "line": 12, - "column": 66 - }, - "end": { - "line": 12, - "column": 67 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 918, - "end": 919, - "loc": { - "start": { - "line": 12, - "column": 71 - }, - "end": { - "line": 12, - "column": 72 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 895 - } - }, - "alternate": { - "type": "AssignmentExpression", - "start": 923, - "end": 928, - "loc": { - "start": { - "line": 12, - "column": 76 - }, - "end": { - "line": 12, - "column": 81 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 923, - "end": 924, - "loc": { - "start": { - "line": 12, - "column": 76 - }, - "end": { - "line": 12, - "column": 77 - }, - "identifierName": "d" - }, - "name": "d" - }, - "right": { - "type": "Identifier", - "start": 927, - "end": 928, - "loc": { - "start": { - "line": 12, - "column": 80 - }, - "end": { - "line": 12, - "column": 81 - }, - "identifierName": "j" - }, - "name": "j" - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 929, - "end": 944, - "loc": { - "start": { - "line": 12, - "column": 82 - }, - "end": { - "line": 12, - "column": 97 - } - }, - "expression": { - "type": "CallExpression", - "start": 929, - "end": 943, - "loc": { - "start": { - "line": 12, - "column": 82 - }, - "end": { - "line": 12, - "column": 96 - } - }, - "callee": { - "type": "MemberExpression", - "start": 929, - "end": 935, - "loc": { - "start": { - "line": 12, - "column": 82 - }, - "end": { - "line": 12, - "column": 88 - } - }, - "object": { - "type": "Identifier", - "start": 929, - "end": 930, - "loc": { - "start": { - "line": 12, - "column": 82 - }, - "end": { - "line": 12, - "column": 83 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 931, - "end": 935, - "loc": { - "start": { - "line": 12, - "column": 84 - }, - "end": { - "line": 12, - "column": 88 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 936, - "end": 942, - "loc": { - "start": { - "line": 12, - "column": 89 - }, - "end": { - "line": 12, - "column": 95 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 937, - "end": 938, - "loc": { - "start": { - "line": 12, - "column": 90 - }, - "end": { - "line": 12, - "column": 91 - }, - "identifierName": "j" - }, - "name": "j" - }, - { - "type": "Identifier", - "start": 940, - "end": 941, - "loc": { - "start": { - "line": 12, - "column": 93 - }, - "end": { - "line": 12, - "column": 94 - }, - "identifierName": "d" - }, - "name": "d" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 944, - "end": 1118, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 271 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 944, - "end": 1117, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 270 - } - }, - "left": { - "type": "LogicalExpression", - "start": 944, - "end": 961, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 114 - } - }, - "left": { - "type": "BinaryExpression", - "start": 944, - "end": 950, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 103 - } - }, - "left": { - "type": "Identifier", - "start": 944, - "end": 945, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 98 - }, - "identifierName": "d" - }, - "name": "d" - }, - "operator": "<", - "right": { - "type": "NumericLiteral", - "start": 948, - "end": 950, - "loc": { - "start": { - "line": 12, - "column": 101 - }, - "end": { - "line": 12, - "column": 103 - } - }, - "extra": { - "rawValue": 65, - "raw": "65" - }, - "value": 65 - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 954, - "end": 961, - "loc": { - "start": { - "line": 12, - "column": 107 - }, - "end": { - "line": 12, - "column": 114 - } - }, - "left": { - "type": "Identifier", - "start": 954, - "end": 955, - "loc": { - "start": { - "line": 12, - "column": 107 - }, - "end": { - "line": 12, - "column": 108 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": ">", - "right": { - "type": "NumericLiteral", - "start": 958, - "end": 961, - "loc": { - "start": { - "line": 12, - "column": 111 - }, - "end": { - "line": 12, - "column": 114 - } - }, - "extra": { - "rawValue": 122, - "raw": "122" - }, - "value": 122 - } - } - }, - "operator": "||", - "right": { - "type": "SequenceExpression", - "start": 966, - "end": 1116, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 269 - } - }, - "expressions": [ - { - "type": "LogicalExpression", - "start": 966, - "end": 1038, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 191 - } - }, - "left": { - "type": "LogicalExpression", - "start": 966, - "end": 982, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 135 - } - }, - "left": { - "type": "BinaryExpression", - "start": 966, - "end": 972, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 125 - } - }, - "left": { - "type": "Identifier", - "start": 966, - "end": 967, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 120 - }, - "identifierName": "d" - }, - "name": "d" - }, - "operator": "<", - "right": { - "type": "NumericLiteral", - "start": 970, - "end": 972, - "loc": { - "start": { - "line": 12, - "column": 123 - }, - "end": { - "line": 12, - "column": 125 - } - }, - "extra": { - "rawValue": 65, - "raw": "65" - }, - "value": 65 - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 976, - "end": 982, - "loc": { - "start": { - "line": 12, - "column": 129 - }, - "end": { - "line": 12, - "column": 135 - } - }, - "left": { - "type": "Identifier", - "start": 976, - "end": 977, - "loc": { - "start": { - "line": 12, - "column": 129 - }, - "end": { - "line": 12, - "column": 130 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": ">", - "right": { - "type": "NumericLiteral", - "start": 980, - "end": 982, - "loc": { - "start": { - "line": 12, - "column": 133 - }, - "end": { - "line": 12, - "column": 135 - } - }, - "extra": { - "rawValue": 90, - "raw": "90" - }, - "value": 90 - } - } - }, - "operator": "||", - "right": { - "type": "CallExpression", - "start": 986, - "end": 1038, - "loc": { - "start": { - "line": 12, - "column": 139 - }, - "end": { - "line": 12, - "column": 191 - } - }, - "callee": { - "type": "MemberExpression", - "start": 986, - "end": 992, - "loc": { - "start": { - "line": 12, - "column": 139 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "object": { - "type": "Identifier", - "start": 986, - "end": 987, - "loc": { - "start": { - "line": 12, - "column": 139 - }, - "end": { - "line": 12, - "column": 140 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 988, - "end": 992, - "loc": { - "start": { - "line": 12, - "column": 141 - }, - "end": { - "line": 12, - "column": 145 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 993, - "end": 1037, - "loc": { - "start": { - "line": 12, - "column": 146 - }, - "end": { - "line": 12, - "column": 190 - } - }, - "elements": [ - { - "type": "BinaryExpression", - "start": 994, - "end": 1014, - "loc": { - "start": { - "line": 12, - "column": 147 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "left": { - "type": "CallExpression", - "start": 994, - "end": 1009, - "loc": { - "start": { - "line": 12, - "column": 147 - }, - "end": { - "line": 12, - "column": 162 - } - }, - "callee": { - "type": "MemberExpression", - "start": 994, - "end": 1002, - "loc": { - "start": { - "line": 12, - "column": 147 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "object": { - "type": "Identifier", - "start": 994, - "end": 998, - "loc": { - "start": { - "line": 12, - "column": 147 - }, - "end": { - "line": 12, - "column": 151 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 999, - "end": 1002, - "loc": { - "start": { - "line": 12, - "column": 152 - }, - "end": { - "line": 12, - "column": 155 - }, - "identifierName": "max" - }, - "name": "max" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 1003, - "end": 1005, - "loc": { - "start": { - "line": 12, - "column": 156 - }, - "end": { - "line": 12, - "column": 158 - } - }, - "extra": { - "rawValue": 65, - "raw": "65" - }, - "value": 65 - }, - { - "type": "Identifier", - "start": 1007, - "end": 1008, - "loc": { - "start": { - "line": 12, - "column": 160 - }, - "end": { - "line": 12, - "column": 161 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 1012, - "end": 1014, - "loc": { - "start": { - "line": 12, - "column": 165 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "extra": { - "rawValue": 32, - "raw": "32" - }, - "value": 32 - } - }, - { - "type": "BinaryExpression", - "start": 1016, - "end": 1036, - "loc": { - "start": { - "line": 12, - "column": 169 - }, - "end": { - "line": 12, - "column": 189 - } - }, - "left": { - "type": "CallExpression", - "start": 1016, - "end": 1031, - "loc": { - "start": { - "line": 12, - "column": 169 - }, - "end": { - "line": 12, - "column": 184 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1016, - "end": 1024, - "loc": { - "start": { - "line": 12, - "column": 169 - }, - "end": { - "line": 12, - "column": 177 - } - }, - "object": { - "type": "Identifier", - "start": 1016, - "end": 1020, - "loc": { - "start": { - "line": 12, - "column": 169 - }, - "end": { - "line": 12, - "column": 173 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 1021, - "end": 1024, - "loc": { - "start": { - "line": 12, - "column": 174 - }, - "end": { - "line": 12, - "column": 177 - }, - "identifierName": "min" - }, - "name": "min" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 1025, - "end": 1026, - "loc": { - "start": { - "line": 12, - "column": 178 - }, - "end": { - "line": 12, - "column": 179 - }, - "identifierName": "d" - }, - "name": "d" - }, - { - "type": "NumericLiteral", - "start": 1028, - "end": 1030, - "loc": { - "start": { - "line": 12, - "column": 181 - }, - "end": { - "line": 12, - "column": 183 - } - }, - "extra": { - "rawValue": 90, - "raw": "90" - }, - "value": 90 - } - ] - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 1034, - "end": 1036, - "loc": { - "start": { - "line": 12, - "column": 187 - }, - "end": { - "line": 12, - "column": 189 - } - }, - "extra": { - "rawValue": 32, - "raw": "32" - }, - "value": 32 - } - } - ] - } - ] - } - }, - { - "type": "LogicalExpression", - "start": 1040, - "end": 1116, - "loc": { - "start": { - "line": 12, - "column": 193 - }, - "end": { - "line": 12, - "column": 269 - } - }, - "left": { - "type": "LogicalExpression", - "start": 1040, - "end": 1057, - "loc": { - "start": { - "line": 12, - "column": 193 - }, - "end": { - "line": 12, - "column": 210 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1040, - "end": 1046, - "loc": { - "start": { - "line": 12, - "column": 193 - }, - "end": { - "line": 12, - "column": 199 - } - }, - "left": { - "type": "Identifier", - "start": 1040, - "end": 1041, - "loc": { - "start": { - "line": 12, - "column": 193 - }, - "end": { - "line": 12, - "column": 194 - }, - "identifierName": "d" - }, - "name": "d" - }, - "operator": "<", - "right": { - "type": "NumericLiteral", - "start": 1044, - "end": 1046, - "loc": { - "start": { - "line": 12, - "column": 197 - }, - "end": { - "line": 12, - "column": 199 - } - }, - "extra": { - "rawValue": 97, - "raw": "97" - }, - "value": 97 - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 1050, - "end": 1057, - "loc": { - "start": { - "line": 12, - "column": 203 - }, - "end": { - "line": 12, - "column": 210 - } - }, - "left": { - "type": "Identifier", - "start": 1050, - "end": 1051, - "loc": { - "start": { - "line": 12, - "column": 203 - }, - "end": { - "line": 12, - "column": 204 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": ">", - "right": { - "type": "NumericLiteral", - "start": 1054, - "end": 1057, - "loc": { - "start": { - "line": 12, - "column": 207 - }, - "end": { - "line": 12, - "column": 210 - } - }, - "extra": { - "rawValue": 122, - "raw": "122" - }, - "value": 122 - } - } - }, - "operator": "||", - "right": { - "type": "CallExpression", - "start": 1061, - "end": 1116, - "loc": { - "start": { - "line": 12, - "column": 214 - }, - "end": { - "line": 12, - "column": 269 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1061, - "end": 1067, - "loc": { - "start": { - "line": 12, - "column": 214 - }, - "end": { - "line": 12, - "column": 220 - } - }, - "object": { - "type": "Identifier", - "start": 1061, - "end": 1062, - "loc": { - "start": { - "line": 12, - "column": 214 - }, - "end": { - "line": 12, - "column": 215 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1063, - "end": 1067, - "loc": { - "start": { - "line": 12, - "column": 216 - }, - "end": { - "line": 12, - "column": 220 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 1068, - "end": 1115, - "loc": { - "start": { - "line": 12, - "column": 221 - }, - "end": { - "line": 12, - "column": 268 - } - }, - "elements": [ - { - "type": "BinaryExpression", - "start": 1069, - "end": 1090, - "loc": { - "start": { - "line": 12, - "column": 222 - }, - "end": { - "line": 12, - "column": 243 - } - }, - "left": { - "type": "CallExpression", - "start": 1069, - "end": 1084, - "loc": { - "start": { - "line": 12, - "column": 222 - }, - "end": { - "line": 12, - "column": 237 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1069, - "end": 1077, - "loc": { - "start": { - "line": 12, - "column": 222 - }, - "end": { - "line": 12, - "column": 230 - } - }, - "object": { - "type": "Identifier", - "start": 1069, - "end": 1073, - "loc": { - "start": { - "line": 12, - "column": 222 - }, - "end": { - "line": 12, - "column": 226 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 1074, - "end": 1077, - "loc": { - "start": { - "line": 12, - "column": 227 - }, - "end": { - "line": 12, - "column": 230 - }, - "identifierName": "max" - }, - "name": "max" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 1078, - "end": 1080, - "loc": { - "start": { - "line": 12, - "column": 231 - }, - "end": { - "line": 12, - "column": 233 - } - }, - "extra": { - "rawValue": 97, - "raw": "97" - }, - "value": 97 - }, - { - "type": "Identifier", - "start": 1082, - "end": 1083, - "loc": { - "start": { - "line": 12, - "column": 235 - }, - "end": { - "line": 12, - "column": 236 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - }, - "operator": "&", - "right": { - "type": "UnaryExpression", - "start": 1087, - "end": 1090, - "loc": { - "start": { - "line": 12, - "column": 240 - }, - "end": { - "line": 12, - "column": 243 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1088, - "end": 1090, - "loc": { - "start": { - "line": 12, - "column": 241 - }, - "end": { - "line": 12, - "column": 243 - } - }, - "extra": { - "rawValue": 33, - "raw": "33" - }, - "value": 33 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "BinaryExpression", - "start": 1092, - "end": 1114, - "loc": { - "start": { - "line": 12, - "column": 245 - }, - "end": { - "line": 12, - "column": 267 - } - }, - "left": { - "type": "CallExpression", - "start": 1092, - "end": 1108, - "loc": { - "start": { - "line": 12, - "column": 245 - }, - "end": { - "line": 12, - "column": 261 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1092, - "end": 1100, - "loc": { - "start": { - "line": 12, - "column": 245 - }, - "end": { - "line": 12, - "column": 253 - } - }, - "object": { - "type": "Identifier", - "start": 1092, - "end": 1096, - "loc": { - "start": { - "line": 12, - "column": 245 - }, - "end": { - "line": 12, - "column": 249 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 1097, - "end": 1100, - "loc": { - "start": { - "line": 12, - "column": 250 - }, - "end": { - "line": 12, - "column": 253 - }, - "identifierName": "min" - }, - "name": "min" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 1101, - "end": 1102, - "loc": { - "start": { - "line": 12, - "column": 254 - }, - "end": { - "line": 12, - "column": 255 - }, - "identifierName": "d" - }, - "name": "d" - }, - { - "type": "NumericLiteral", - "start": 1104, - "end": 1107, - "loc": { - "start": { - "line": 12, - "column": 257 - }, - "end": { - "line": 12, - "column": 260 - } - }, - "extra": { - "rawValue": 122, - "raw": "122" - }, - "value": 122 - } - ] - }, - "operator": "&", - "right": { - "type": "UnaryExpression", - "start": 1111, - "end": 1114, - "loc": { - "start": { - "line": 12, - "column": 264 - }, - "end": { - "line": 12, - "column": 267 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1112, - "end": 1114, - "loc": { - "start": { - "line": 12, - "column": 265 - }, - "end": { - "line": 12, - "column": 267 - } - }, - "extra": { - "rawValue": 33, - "raw": "33" - }, - "value": 33 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 965 - } - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 1136, - "end": 1213, - "loc": { - "start": { - "line": 14, - "column": 7 - }, - "end": { - "line": 16, - "column": 9 - } - }, - "expression": { - "type": "CallExpression", - "start": 1136, - "end": 1212, - "loc": { - "start": { - "line": 14, - "column": 7 - }, - "end": { - "line": 16, - "column": 8 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1136, - "end": 1142, - "loc": { - "start": { - "line": 14, - "column": 7 - }, - "end": { - "line": 14, - "column": 13 - } - }, - "object": { - "type": "Identifier", - "start": 1136, - "end": 1137, - "loc": { - "start": { - "line": 14, - "column": 7 - }, - "end": { - "line": 14, - "column": 8 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1138, - "end": 1142, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 13 - }, - "identifierName": "sort" - }, - "name": "sort" - }, - "computed": false - }, - "arguments": [ - { - "type": "FunctionExpression", - "start": 1143, - "end": 1211, - "loc": { - "start": { - "line": 14, - "column": 14 - }, - "end": { - "line": 16, - "column": 7 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 1153, - "end": 1154, - "loc": { - "start": { - "line": 14, - "column": 24 - }, - "end": { - "line": 14, - "column": 25 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 1156, - "end": 1157, - "loc": { - "start": { - "line": 14, - "column": 27 - }, - "end": { - "line": 14, - "column": 28 - }, - "identifierName": "f" - }, - "name": "f" - } - ], - "body": { - "type": "BlockStatement", - "start": 1159, - "end": 1211, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 16, - "column": 7 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 1169, - "end": 1203, - "loc": { - "start": { - "line": 15, - "column": 8 - }, - "end": { - "line": 15, - "column": 42 - } - }, - "argument": { - "type": "LogicalExpression", - "start": 1176, - "end": 1202, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 41 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1176, - "end": 1187, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 26 - } - }, - "left": { - "type": "MemberExpression", - "start": 1176, - "end": 1180, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 1176, - "end": 1177, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "NumericLiteral", - "start": 1178, - "end": 1179, - "loc": { - "start": { - "line": 15, - "column": 17 - }, - "end": { - "line": 15, - "column": 18 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "operator": "-", - "right": { - "type": "MemberExpression", - "start": 1183, - "end": 1187, - "loc": { - "start": { - "line": 15, - "column": 22 - }, - "end": { - "line": 15, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 1183, - "end": 1184, - "loc": { - "start": { - "line": 15, - "column": 22 - }, - "end": { - "line": 15, - "column": 23 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "NumericLiteral", - "start": 1185, - "end": 1186, - "loc": { - "start": { - "line": 15, - "column": 24 - }, - "end": { - "line": 15, - "column": 25 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 1191, - "end": 1202, - "loc": { - "start": { - "line": 15, - "column": 30 - }, - "end": { - "line": 15, - "column": 41 - } - }, - "left": { - "type": "MemberExpression", - "start": 1191, - "end": 1195, - "loc": { - "start": { - "line": 15, - "column": 30 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 1191, - "end": 1192, - "loc": { - "start": { - "line": 15, - "column": 30 - }, - "end": { - "line": 15, - "column": 31 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "NumericLiteral", - "start": 1193, - "end": 1194, - "loc": { - "start": { - "line": 15, - "column": 32 - }, - "end": { - "line": 15, - "column": 33 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "operator": "-", - "right": { - "type": "MemberExpression", - "start": 1198, - "end": 1202, - "loc": { - "start": { - "line": 15, - "column": 37 - }, - "end": { - "line": 15, - "column": 41 - } - }, - "object": { - "type": "Identifier", - "start": 1198, - "end": 1199, - "loc": { - "start": { - "line": 15, - "column": 37 - }, - "end": { - "line": 15, - "column": 38 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "NumericLiteral", - "start": 1200, - "end": 1201, - "loc": { - "start": { - "line": 15, - "column": 39 - }, - "end": { - "line": 15, - "column": 40 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - } - } - } - ], - "directives": [] - } - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 1213, - "end": 1220, - "loc": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 16 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1213, - "end": 1219, - "loc": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 15 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1213, - "end": 1214, - "loc": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 10 - }, - "identifierName": "f" - }, - "name": "f" - }, - "right": { - "type": "ArrayExpression", - "start": 1217, - "end": 1219, - "loc": { - "start": { - "line": 16, - "column": 13 - }, - "end": { - "line": 16, - "column": 15 - } - }, - "elements": [] - } - } - }, - { - "type": "ExpressionStatement", - "start": 1220, - "end": 1235, - "loc": { - "start": { - "line": 16, - "column": 16 - }, - "end": { - "line": 16, - "column": 31 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1220, - "end": 1234, - "loc": { - "start": { - "line": 16, - "column": 16 - }, - "end": { - "line": 16, - "column": 30 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1220, - "end": 1221, - "loc": { - "start": { - "line": 16, - "column": 16 - }, - "end": { - "line": 16, - "column": 17 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "ArrayExpression", - "start": 1224, - "end": 1234, - "loc": { - "start": { - "line": 16, - "column": 20 - }, - "end": { - "line": 16, - "column": 30 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 1225, - "end": 1228, - "loc": { - "start": { - "line": 16, - "column": 21 - }, - "end": { - "line": 16, - "column": 24 - }, - "identifierName": "NaN" - }, - "name": "NaN" - }, - { - "type": "Identifier", - "start": 1230, - "end": 1233, - "loc": { - "start": { - "line": 16, - "column": 26 - }, - "end": { - "line": 16, - "column": 29 - }, - "identifierName": "NaN" - }, - "name": "NaN" - } - ] - } - } - }, - { - "type": "ForStatement", - "start": 1235, - "end": 1339, - "loc": { - "start": { - "line": 16, - "column": 31 - }, - "end": { - "line": 16, - "column": 135 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 1240, - "end": 1245, - "loc": { - "start": { - "line": 16, - "column": 36 - }, - "end": { - "line": 16, - "column": 41 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1240, - "end": 1241, - "loc": { - "start": { - "line": 16, - "column": 36 - }, - "end": { - "line": 16, - "column": 37 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 1244, - "end": 1245, - "loc": { - "start": { - "line": 16, - "column": 40 - }, - "end": { - "line": 16, - "column": 41 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1247, - "end": 1259, - "loc": { - "start": { - "line": 16, - "column": 43 - }, - "end": { - "line": 16, - "column": 55 - } - }, - "left": { - "type": "Identifier", - "start": 1247, - "end": 1248, - "loc": { - "start": { - "line": 16, - "column": 43 - }, - "end": { - "line": 16, - "column": 44 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 1251, - "end": 1259, - "loc": { - "start": { - "line": 16, - "column": 47 - }, - "end": { - "line": 16, - "column": 55 - } - }, - "object": { - "type": "Identifier", - "start": 1251, - "end": 1252, - "loc": { - "start": { - "line": 16, - "column": 47 - }, - "end": { - "line": 16, - "column": 48 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1253, - "end": 1259, - "loc": { - "start": { - "line": 16, - "column": 49 - }, - "end": { - "line": 16, - "column": 55 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 1261, - "end": 1264, - "loc": { - "start": { - "line": 16, - "column": 57 - }, - "end": { - "line": 16, - "column": 60 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1263, - "end": 1264, - "loc": { - "start": { - "line": 16, - "column": 59 - }, - "end": { - "line": 16, - "column": 60 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 1266, - "end": 1339, - "loc": { - "start": { - "line": 16, - "column": 62 - }, - "end": { - "line": 16, - "column": 135 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 1266, - "end": 1338, - "loc": { - "start": { - "line": 16, - "column": 62 - }, - "end": { - "line": 16, - "column": 134 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 1266, - "end": 1274, - "loc": { - "start": { - "line": 16, - "column": 62 - }, - "end": { - "line": 16, - "column": 70 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1266, - "end": 1267, - "loc": { - "start": { - "line": 16, - "column": 62 - }, - "end": { - "line": 16, - "column": 63 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "MemberExpression", - "start": 1270, - "end": 1274, - "loc": { - "start": { - "line": 16, - "column": 66 - }, - "end": { - "line": 16, - "column": 70 - } - }, - "object": { - "type": "Identifier", - "start": 1270, - "end": 1271, - "loc": { - "start": { - "line": 16, - "column": 66 - }, - "end": { - "line": 16, - "column": 67 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1272, - "end": 1273, - "loc": { - "start": { - "line": 16, - "column": 68 - }, - "end": { - "line": 16, - "column": 69 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - { - "type": "ConditionalExpression", - "start": 1276, - "end": 1338, - "loc": { - "start": { - "line": 16, - "column": 72 - }, - "end": { - "line": 16, - "column": 134 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1276, - "end": 1292, - "loc": { - "start": { - "line": 16, - "column": 72 - }, - "end": { - "line": 16, - "column": 88 - } - }, - "left": { - "type": "MemberExpression", - "start": 1276, - "end": 1280, - "loc": { - "start": { - "line": 16, - "column": 72 - }, - "end": { - "line": 16, - "column": 76 - } - }, - "object": { - "type": "Identifier", - "start": 1276, - "end": 1277, - "loc": { - "start": { - "line": 16, - "column": 72 - }, - "end": { - "line": 16, - "column": 73 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1278, - "end": 1279, - "loc": { - "start": { - "line": 16, - "column": 74 - }, - "end": { - "line": 16, - "column": 75 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "operator": "<=", - "right": { - "type": "BinaryExpression", - "start": 1284, - "end": 1292, - "loc": { - "start": { - "line": 16, - "column": 80 - }, - "end": { - "line": 16, - "column": 88 - } - }, - "left": { - "type": "MemberExpression", - "start": 1284, - "end": 1288, - "loc": { - "start": { - "line": 16, - "column": 80 - }, - "end": { - "line": 16, - "column": 84 - } - }, - "object": { - "type": "Identifier", - "start": 1284, - "end": 1285, - "loc": { - "start": { - "line": 16, - "column": 80 - }, - "end": { - "line": 16, - "column": 81 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "NumericLiteral", - "start": 1286, - "end": 1287, - "loc": { - "start": { - "line": 16, - "column": 82 - }, - "end": { - "line": 16, - "column": 83 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 1291, - "end": 1292, - "loc": { - "start": { - "line": 16, - "column": 87 - }, - "end": { - "line": 16, - "column": 88 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - } - }, - "consequent": { - "type": "AssignmentExpression", - "start": 1295, - "end": 1322, - "loc": { - "start": { - "line": 16, - "column": 91 - }, - "end": { - "line": 16, - "column": 118 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1295, - "end": 1299, - "loc": { - "start": { - "line": 16, - "column": 91 - }, - "end": { - "line": 16, - "column": 95 - } - }, - "object": { - "type": "Identifier", - "start": 1295, - "end": 1296, - "loc": { - "start": { - "line": 16, - "column": 91 - }, - "end": { - "line": 16, - "column": 92 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "NumericLiteral", - "start": 1297, - "end": 1298, - "loc": { - "start": { - "line": 16, - "column": 93 - }, - "end": { - "line": 16, - "column": 94 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "right": { - "type": "CallExpression", - "start": 1302, - "end": 1322, - "loc": { - "start": { - "line": 16, - "column": 98 - }, - "end": { - "line": 16, - "column": 118 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1302, - "end": 1310, - "loc": { - "start": { - "line": 16, - "column": 98 - }, - "end": { - "line": 16, - "column": 106 - } - }, - "object": { - "type": "Identifier", - "start": 1302, - "end": 1306, - "loc": { - "start": { - "line": 16, - "column": 98 - }, - "end": { - "line": 16, - "column": 102 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 1307, - "end": 1310, - "loc": { - "start": { - "line": 16, - "column": 103 - }, - "end": { - "line": 16, - "column": 106 - }, - "identifierName": "max" - }, - "name": "max" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 1311, - "end": 1315, - "loc": { - "start": { - "line": 16, - "column": 107 - }, - "end": { - "line": 16, - "column": 111 - } - }, - "object": { - "type": "Identifier", - "start": 1311, - "end": 1312, - "loc": { - "start": { - "line": 16, - "column": 107 - }, - "end": { - "line": 16, - "column": 108 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "NumericLiteral", - "start": 1313, - "end": 1314, - "loc": { - "start": { - "line": 16, - "column": 109 - }, - "end": { - "line": 16, - "column": 110 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - { - "type": "MemberExpression", - "start": 1317, - "end": 1321, - "loc": { - "start": { - "line": 16, - "column": 113 - }, - "end": { - "line": 16, - "column": 117 - } - }, - "object": { - "type": "Identifier", - "start": 1317, - "end": 1318, - "loc": { - "start": { - "line": 16, - "column": 113 - }, - "end": { - "line": 16, - "column": 114 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1319, - "end": 1320, - "loc": { - "start": { - "line": 16, - "column": 115 - }, - "end": { - "line": 16, - "column": 116 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - ] - } - }, - "alternate": { - "type": "CallExpression", - "start": 1325, - "end": 1338, - "loc": { - "start": { - "line": 16, - "column": 121 - }, - "end": { - "line": 16, - "column": 134 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1325, - "end": 1331, - "loc": { - "start": { - "line": 16, - "column": 121 - }, - "end": { - "line": 16, - "column": 127 - } - }, - "object": { - "type": "Identifier", - "start": 1325, - "end": 1326, - "loc": { - "start": { - "line": 16, - "column": 121 - }, - "end": { - "line": 16, - "column": 122 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1327, - "end": 1331, - "loc": { - "start": { - "line": 16, - "column": 123 - }, - "end": { - "line": 16, - "column": 127 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "AssignmentExpression", - "start": 1332, - "end": 1337, - "loc": { - "start": { - "line": 16, - "column": 128 - }, - "end": { - "line": 16, - "column": 133 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1332, - "end": 1333, - "loc": { - "start": { - "line": 16, - "column": 128 - }, - "end": { - "line": 16, - "column": 129 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "Identifier", - "start": 1336, - "end": 1337, - "loc": { - "start": { - "line": 16, - "column": 132 - }, - "end": { - "line": 16, - "column": 133 - }, - "identifierName": "i" - }, - "name": "i" - } - } - ] - } - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 1339, - "end": 1349, - "loc": { - "start": { - "line": 16, - "column": 135 - }, - "end": { - "line": 16, - "column": 145 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1339, - "end": 1348, - "loc": { - "start": { - "line": 16, - "column": 135 - }, - "end": { - "line": 16, - "column": 144 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1339, - "end": 1340, - "loc": { - "start": { - "line": 16, - "column": 135 - }, - "end": { - "line": 16, - "column": 136 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "ArrayExpression", - "start": 1343, - "end": 1348, - "loc": { - "start": { - "line": 16, - "column": 139 - }, - "end": { - "line": 16, - "column": 144 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 1344, - "end": 1347, - "loc": { - "start": { - "line": 16, - "column": 140 - }, - "end": { - "line": 16, - "column": 143 - } - }, - "extra": { - "rawValue": "[", - "raw": "\"[\"" - }, - "value": "[" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 1349, - "end": 1366, - "loc": { - "start": { - "line": 16, - "column": 145 - }, - "end": { - "line": 16, - "column": 162 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 1349, - "end": 1365, - "loc": { - "start": { - "line": 16, - "column": 145 - }, - "end": { - "line": 16, - "column": 161 - } - }, - "left": { - "type": "Identifier", - "start": 1349, - "end": 1350, - "loc": { - "start": { - "line": 16, - "column": 145 - }, - "end": { - "line": 16, - "column": 146 - }, - "identifierName": "o" - }, - "name": "o" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 1354, - "end": 1365, - "loc": { - "start": { - "line": 16, - "column": 150 - }, - "end": { - "line": 16, - "column": 161 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1354, - "end": 1360, - "loc": { - "start": { - "line": 16, - "column": 150 - }, - "end": { - "line": 16, - "column": 156 - } - }, - "object": { - "type": "Identifier", - "start": 1354, - "end": 1355, - "loc": { - "start": { - "line": 16, - "column": 150 - }, - "end": { - "line": 16, - "column": 151 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1356, - "end": 1360, - "loc": { - "start": { - "line": 16, - "column": 152 - }, - "end": { - "line": 16, - "column": 156 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1361, - "end": 1364, - "loc": { - "start": { - "line": 16, - "column": 157 - }, - "end": { - "line": 16, - "column": 160 - } - }, - "extra": { - "rawValue": "^", - "raw": "\"^\"" - }, - "value": "^" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 1366, - "end": 1385, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 181 - } - }, - "expression": { - "type": "CallExpression", - "start": 1366, - "end": 1384, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 180 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1366, - "end": 1378, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 174 - } - }, - "object": { - "type": "MemberExpression", - "start": 1366, - "end": 1372, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 168 - } - }, - "object": { - "type": "Identifier", - "start": 1366, - "end": 1367, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 163 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1368, - "end": 1372, - "loc": { - "start": { - "line": 16, - "column": 164 - }, - "end": { - "line": 16, - "column": 168 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1373, - "end": 1378, - "loc": { - "start": { - "line": 16, - "column": 169 - }, - "end": { - "line": 16, - "column": 174 - }, - "identifierName": "apply" - }, - "name": "apply" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 1379, - "end": 1380, - "loc": { - "start": { - "line": 16, - "column": 175 - }, - "end": { - "line": 16, - "column": 176 - }, - "identifierName": "b" - }, - "name": "b" - }, - { - "type": "Identifier", - "start": 1382, - "end": 1383, - "loc": { - "start": { - "line": 16, - "column": 178 - }, - "end": { - "line": 16, - "column": 179 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - }, - { - "type": "ForStatement", - "start": 1385, - "end": 1508, - "loc": { - "start": { - "line": 16, - "column": 181 - }, - "end": { - "line": 16, - "column": 304 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 1390, - "end": 1395, - "loc": { - "start": { - "line": 16, - "column": 186 - }, - "end": { - "line": 16, - "column": 191 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1390, - "end": 1391, - "loc": { - "start": { - "line": 16, - "column": 186 - }, - "end": { - "line": 16, - "column": 187 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 1394, - "end": 1395, - "loc": { - "start": { - "line": 16, - "column": 190 - }, - "end": { - "line": 16, - "column": 191 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1397, - "end": 1409, - "loc": { - "start": { - "line": 16, - "column": 193 - }, - "end": { - "line": 16, - "column": 205 - } - }, - "left": { - "type": "Identifier", - "start": 1397, - "end": 1398, - "loc": { - "start": { - "line": 16, - "column": 193 - }, - "end": { - "line": 16, - "column": 194 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 1401, - "end": 1409, - "loc": { - "start": { - "line": 16, - "column": 197 - }, - "end": { - "line": 16, - "column": 205 - } - }, - "object": { - "type": "Identifier", - "start": 1401, - "end": 1402, - "loc": { - "start": { - "line": 16, - "column": 197 - }, - "end": { - "line": 16, - "column": 198 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1403, - "end": 1409, - "loc": { - "start": { - "line": 16, - "column": 199 - }, - "end": { - "line": 16, - "column": 205 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 1411, - "end": 1414, - "loc": { - "start": { - "line": 16, - "column": 207 - }, - "end": { - "line": 16, - "column": 210 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1413, - "end": 1414, - "loc": { - "start": { - "line": 16, - "column": 209 - }, - "end": { - "line": 16, - "column": 210 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 1416, - "end": 1508, - "loc": { - "start": { - "line": 16, - "column": 212 - }, - "end": { - "line": 16, - "column": 304 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 1416, - "end": 1507, - "loc": { - "start": { - "line": 16, - "column": 212 - }, - "end": { - "line": 16, - "column": 303 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 1416, - "end": 1424, - "loc": { - "start": { - "line": 16, - "column": 212 - }, - "end": { - "line": 16, - "column": 220 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1416, - "end": 1417, - "loc": { - "start": { - "line": 16, - "column": 212 - }, - "end": { - "line": 16, - "column": 213 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "MemberExpression", - "start": 1420, - "end": 1424, - "loc": { - "start": { - "line": 16, - "column": 216 - }, - "end": { - "line": 16, - "column": 220 - } - }, - "object": { - "type": "Identifier", - "start": 1420, - "end": 1421, - "loc": { - "start": { - "line": 16, - "column": 216 - }, - "end": { - "line": 16, - "column": 217 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1422, - "end": 1423, - "loc": { - "start": { - "line": 16, - "column": 218 - }, - "end": { - "line": 16, - "column": 219 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - { - "type": "CallExpression", - "start": 1426, - "end": 1441, - "loc": { - "start": { - "line": 16, - "column": 222 - }, - "end": { - "line": 16, - "column": 237 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1426, - "end": 1432, - "loc": { - "start": { - "line": 16, - "column": 222 - }, - "end": { - "line": 16, - "column": 228 - } - }, - "object": { - "type": "Identifier", - "start": 1426, - "end": 1427, - "loc": { - "start": { - "line": 16, - "column": 222 - }, - "end": { - "line": 16, - "column": 223 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1428, - "end": 1432, - "loc": { - "start": { - "line": 16, - "column": 224 - }, - "end": { - "line": 16, - "column": 228 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "CallExpression", - "start": 1433, - "end": 1440, - "loc": { - "start": { - "line": 16, - "column": 229 - }, - "end": { - "line": 16, - "column": 236 - } - }, - "callee": { - "type": "Identifier", - "start": 1433, - "end": 1434, - "loc": { - "start": { - "line": 16, - "column": 229 - }, - "end": { - "line": 16, - "column": 230 - }, - "identifierName": "e" - }, - "name": "e" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 1435, - "end": 1439, - "loc": { - "start": { - "line": 16, - "column": 231 - }, - "end": { - "line": 16, - "column": 235 - } - }, - "object": { - "type": "Identifier", - "start": 1435, - "end": 1436, - "loc": { - "start": { - "line": 16, - "column": 231 - }, - "end": { - "line": 16, - "column": 232 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1437, - "end": 1438, - "loc": { - "start": { - "line": 16, - "column": 233 - }, - "end": { - "line": 16, - "column": 234 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - ] - } - ] - }, - { - "type": "LogicalExpression", - "start": 1443, - "end": 1507, - "loc": { - "start": { - "line": 16, - "column": 239 - }, - "end": { - "line": 16, - "column": 303 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1443, - "end": 1454, - "loc": { - "start": { - "line": 16, - "column": 239 - }, - "end": { - "line": 16, - "column": 250 - } - }, - "left": { - "type": "MemberExpression", - "start": 1443, - "end": 1447, - "loc": { - "start": { - "line": 16, - "column": 239 - }, - "end": { - "line": 16, - "column": 243 - } - }, - "object": { - "type": "Identifier", - "start": 1443, - "end": 1444, - "loc": { - "start": { - "line": 16, - "column": 239 - }, - "end": { - "line": 16, - "column": 240 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1445, - "end": 1446, - "loc": { - "start": { - "line": 16, - "column": 241 - }, - "end": { - "line": 16, - "column": 242 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "operator": ">", - "right": { - "type": "MemberExpression", - "start": 1450, - "end": 1454, - "loc": { - "start": { - "line": 16, - "column": 246 - }, - "end": { - "line": 16, - "column": 250 - } - }, - "object": { - "type": "Identifier", - "start": 1450, - "end": 1451, - "loc": { - "start": { - "line": 16, - "column": 246 - }, - "end": { - "line": 16, - "column": 247 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1452, - "end": 1453, - "loc": { - "start": { - "line": 16, - "column": 248 - }, - "end": { - "line": 16, - "column": 249 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - }, - "operator": "&&", - "right": { - "type": "SequenceExpression", - "start": 1459, - "end": 1506, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 302 - } - }, - "expressions": [ - { - "type": "LogicalExpression", - "start": 1459, - "end": 1489, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 285 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1459, - "end": 1474, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 270 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1459, - "end": 1467, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 263 - } - }, - "left": { - "type": "MemberExpression", - "start": 1459, - "end": 1463, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 259 - } - }, - "object": { - "type": "Identifier", - "start": 1459, - "end": 1460, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 256 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1461, - "end": 1462, - "loc": { - "start": { - "line": 16, - "column": 257 - }, - "end": { - "line": 16, - "column": 258 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 1466, - "end": 1467, - "loc": { - "start": { - "line": 16, - "column": 262 - }, - "end": { - "line": 16, - "column": 263 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "operator": ">", - "right": { - "type": "MemberExpression", - "start": 1470, - "end": 1474, - "loc": { - "start": { - "line": 16, - "column": 266 - }, - "end": { - "line": 16, - "column": 270 - } - }, - "object": { - "type": "Identifier", - "start": 1470, - "end": 1471, - "loc": { - "start": { - "line": 16, - "column": 266 - }, - "end": { - "line": 16, - "column": 267 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1472, - "end": 1473, - "loc": { - "start": { - "line": 16, - "column": 268 - }, - "end": { - "line": 16, - "column": 269 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 1478, - "end": 1489, - "loc": { - "start": { - "line": 16, - "column": 274 - }, - "end": { - "line": 16, - "column": 285 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1478, - "end": 1484, - "loc": { - "start": { - "line": 16, - "column": 274 - }, - "end": { - "line": 16, - "column": 280 - } - }, - "object": { - "type": "Identifier", - "start": 1478, - "end": 1479, - "loc": { - "start": { - "line": 16, - "column": 274 - }, - "end": { - "line": 16, - "column": 275 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1480, - "end": 1484, - "loc": { - "start": { - "line": 16, - "column": 276 - }, - "end": { - "line": 16, - "column": 280 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1485, - "end": 1488, - "loc": { - "start": { - "line": 16, - "column": 281 - }, - "end": { - "line": 16, - "column": 284 - } - }, - "extra": { - "rawValue": "-", - "raw": "\"-\"" - }, - "value": "-" - } - ] - } - }, - { - "type": "CallExpression", - "start": 1491, - "end": 1506, - "loc": { - "start": { - "line": 16, - "column": 287 - }, - "end": { - "line": 16, - "column": 302 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1491, - "end": 1497, - "loc": { - "start": { - "line": 16, - "column": 287 - }, - "end": { - "line": 16, - "column": 293 - } - }, - "object": { - "type": "Identifier", - "start": 1491, - "end": 1492, - "loc": { - "start": { - "line": 16, - "column": 287 - }, - "end": { - "line": 16, - "column": 288 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1493, - "end": 1497, - "loc": { - "start": { - "line": 16, - "column": 289 - }, - "end": { - "line": 16, - "column": 293 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "CallExpression", - "start": 1498, - "end": 1505, - "loc": { - "start": { - "line": 16, - "column": 294 - }, - "end": { - "line": 16, - "column": 301 - } - }, - "callee": { - "type": "Identifier", - "start": 1498, - "end": 1499, - "loc": { - "start": { - "line": 16, - "column": 294 - }, - "end": { - "line": 16, - "column": 295 - }, - "identifierName": "e" - }, - "name": "e" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 1500, - "end": 1504, - "loc": { - "start": { - "line": 16, - "column": 296 - }, - "end": { - "line": 16, - "column": 300 - } - }, - "object": { - "type": "Identifier", - "start": 1500, - "end": 1501, - "loc": { - "start": { - "line": 16, - "column": 296 - }, - "end": { - "line": 16, - "column": 297 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 1502, - "end": 1503, - "loc": { - "start": { - "line": 16, - "column": 298 - }, - "end": { - "line": 16, - "column": 299 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - ] - } - ] - } - ], - "extra": { - "parenthesized": true, - "parenStart": 1458 - } - } - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 1508, - "end": 1520, - "loc": { - "start": { - "line": 16, - "column": 304 - }, - "end": { - "line": 16, - "column": 316 - } - }, - "expression": { - "type": "CallExpression", - "start": 1508, - "end": 1519, - "loc": { - "start": { - "line": 16, - "column": 304 - }, - "end": { - "line": 16, - "column": 315 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1508, - "end": 1514, - "loc": { - "start": { - "line": 16, - "column": 304 - }, - "end": { - "line": 16, - "column": 310 - } - }, - "object": { - "type": "Identifier", - "start": 1508, - "end": 1509, - "loc": { - "start": { - "line": 16, - "column": 304 - }, - "end": { - "line": 16, - "column": 305 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1510, - "end": 1514, - "loc": { - "start": { - "line": 16, - "column": 306 - }, - "end": { - "line": 16, - "column": 310 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1515, - "end": 1518, - "loc": { - "start": { - "line": 16, - "column": 311 - }, - "end": { - "line": 16, - "column": 314 - } - }, - "extra": { - "rawValue": "]", - "raw": "\"]\"" - }, - "value": "]" - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 1520, - "end": 1538, - "loc": { - "start": { - "line": 16, - "column": 316 - }, - "end": { - "line": 16, - "column": 334 - } - }, - "argument": { - "type": "CallExpression", - "start": 1527, - "end": 1537, - "loc": { - "start": { - "line": 16, - "column": 323 - }, - "end": { - "line": 16, - "column": 333 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1527, - "end": 1533, - "loc": { - "start": { - "line": 16, - "column": 323 - }, - "end": { - "line": 16, - "column": 329 - } - }, - "object": { - "type": "Identifier", - "start": 1527, - "end": 1528, - "loc": { - "start": { - "line": 16, - "column": 323 - }, - "end": { - "line": 16, - "column": 324 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 1529, - "end": 1533, - "loc": { - "start": { - "line": 16, - "column": 325 - }, - "end": { - "line": 16, - "column": 329 - }, - "identifierName": "join" - }, - "name": "join" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1534, - "end": 1536, - "loc": { - "start": { - "line": 16, - "column": 330 - }, - "end": { - "line": 16, - "column": 332 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 1544, - "end": 2473, - "loc": { - "start": { - "line": 17, - "column": 5 - }, - "end": { - "line": 23, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 1553, - "end": 1554, - "loc": { - "start": { - "line": 17, - "column": 14 - }, - "end": { - "line": 17, - "column": 15 - }, - "identifierName": "y" - }, - "name": "y" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 1555, - "end": 1556, - "loc": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 1558, - "end": 2473, - "loc": { - "start": { - "line": 17, - "column": 19 - }, - "end": { - "line": 23, - "column": 5 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 1566, - "end": 1869, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 20, - "column": 7 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 1571, - "end": 1735, - "loc": { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 175 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1575, - "end": 1699, - "loc": { - "start": { - "line": 18, - "column": 15 - }, - "end": { - "line": 18, - "column": 139 - } - }, - "id": { - "type": "Identifier", - "start": 1575, - "end": 1576, - "loc": { - "start": { - "line": 18, - "column": 15 - }, - "end": { - "line": 18, - "column": 16 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "CallExpression", - "start": 1579, - "end": 1699, - "loc": { - "start": { - "line": 18, - "column": 19 - }, - "end": { - "line": 18, - "column": 139 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1579, - "end": 1593, - "loc": { - "start": { - "line": 18, - "column": 19 - }, - "end": { - "line": 18, - "column": 33 - } - }, - "object": { - "type": "MemberExpression", - "start": 1579, - "end": 1587, - "loc": { - "start": { - "line": 18, - "column": 19 - }, - "end": { - "line": 18, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 1579, - "end": 1580, - "loc": { - "start": { - "line": 18, - "column": 19 - }, - "end": { - "line": 18, - "column": 20 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 1581, - "end": 1587, - "loc": { - "start": { - "line": 18, - "column": 21 - }, - "end": { - "line": 18, - "column": 27 - }, - "identifierName": "source" - }, - "name": "source" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1588, - "end": 1593, - "loc": { - "start": { - "line": 18, - "column": 28 - }, - "end": { - "line": 18, - "column": 33 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 1594, - "end": 1698, - "loc": { - "start": { - "line": 18, - "column": 34 - }, - "end": { - "line": 18, - "column": 138 - } - }, - "extra": { - "raw": "/\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*]|\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\\\d+|\\\\[^\\dux]|\\(\\?[!:=]|[()^]|[^()[\\\\^]+/g" - }, - "pattern": "\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*]|\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\\\d+|\\\\[^\\dux]|\\(\\?[!:=]|[()^]|[^()[\\\\^]+", - "flags": "g" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 1701, - "end": 1713, - "loc": { - "start": { - "line": 18, - "column": 141 - }, - "end": { - "line": 18, - "column": 153 - } - }, - "id": { - "type": "Identifier", - "start": 1701, - "end": 1702, - "loc": { - "start": { - "line": 18, - "column": 141 - }, - "end": { - "line": 18, - "column": 142 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": { - "type": "MemberExpression", - "start": 1705, - "end": 1713, - "loc": { - "start": { - "line": 18, - "column": 145 - }, - "end": { - "line": 18, - "column": 153 - } - }, - "object": { - "type": "Identifier", - "start": 1705, - "end": 1706, - "loc": { - "start": { - "line": 18, - "column": 145 - }, - "end": { - "line": 18, - "column": 146 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1707, - "end": 1713, - "loc": { - "start": { - "line": 18, - "column": 147 - }, - "end": { - "line": 18, - "column": 153 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - { - "type": "VariableDeclarator", - "start": 1715, - "end": 1721, - "loc": { - "start": { - "line": 18, - "column": 155 - }, - "end": { - "line": 18, - "column": 161 - } - }, - "id": { - "type": "Identifier", - "start": 1715, - "end": 1716, - "loc": { - "start": { - "line": 18, - "column": 155 - }, - "end": { - "line": 18, - "column": 156 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "ArrayExpression", - "start": 1719, - "end": 1721, - "loc": { - "start": { - "line": 18, - "column": 159 - }, - "end": { - "line": 18, - "column": 161 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 1723, - "end": 1728, - "loc": { - "start": { - "line": 18, - "column": 163 - }, - "end": { - "line": 18, - "column": 168 - } - }, - "id": { - "type": "Identifier", - "start": 1723, - "end": 1724, - "loc": { - "start": { - "line": 18, - "column": 163 - }, - "end": { - "line": 18, - "column": 164 - }, - "identifierName": "c" - }, - "name": "c" - }, - "init": { - "type": "NumericLiteral", - "start": 1727, - "end": 1728, - "loc": { - "start": { - "line": 18, - "column": 167 - }, - "end": { - "line": 18, - "column": 168 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 1730, - "end": 1735, - "loc": { - "start": { - "line": 18, - "column": 170 - }, - "end": { - "line": 18, - "column": 175 - } - }, - "id": { - "type": "Identifier", - "start": 1730, - "end": 1731, - "loc": { - "start": { - "line": 18, - "column": 170 - }, - "end": { - "line": 18, - "column": 171 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 1734, - "end": 1735, - "loc": { - "start": { - "line": 18, - "column": 174 - }, - "end": { - "line": 18, - "column": 175 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 1737, - "end": 1742, - "loc": { - "start": { - "line": 18, - "column": 177 - }, - "end": { - "line": 18, - "column": 182 - } - }, - "left": { - "type": "Identifier", - "start": 1737, - "end": 1738, - "loc": { - "start": { - "line": 18, - "column": 177 - }, - "end": { - "line": 18, - "column": 178 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 1741, - "end": 1742, - "loc": { - "start": { - "line": 18, - "column": 181 - }, - "end": { - "line": 18, - "column": 182 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "update": { - "type": "UpdateExpression", - "start": 1744, - "end": 1747, - "loc": { - "start": { - "line": 18, - "column": 184 - }, - "end": { - "line": 18, - "column": 187 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1746, - "end": 1747, - "loc": { - "start": { - "line": 18, - "column": 186 - }, - "end": { - "line": 18, - "column": 187 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 1749, - "end": 1869, - "loc": { - "start": { - "line": 18, - "column": 189 - }, - "end": { - "line": 20, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 1759, - "end": 1772, - "loc": { - "start": { - "line": 19, - "column": 8 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1763, - "end": 1771, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 1763, - "end": 1764, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 13 - }, - "identifierName": "j" - }, - "name": "j" - }, - "init": { - "type": "MemberExpression", - "start": 1767, - "end": 1771, - "loc": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 1767, - "end": 1768, - "loc": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 17 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1769, - "end": 1770, - "loc": { - "start": { - "line": 19, - "column": 18 - }, - "end": { - "line": 19, - "column": 19 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 1772, - "end": 1861, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 110 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 1772, - "end": 1860, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 109 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1772, - "end": 1781, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 30 - } - }, - "left": { - "type": "Identifier", - "start": 1772, - "end": 1773, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 22 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 1778, - "end": 1781, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 30 - } - }, - "extra": { - "rawValue": "(", - "raw": "\"(\"" - }, - "value": "(" - } - }, - "consequent": { - "type": "UpdateExpression", - "start": 1784, - "end": 1787, - "loc": { - "start": { - "line": 19, - "column": 33 - }, - "end": { - "line": 19, - "column": 36 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1786, - "end": 1787, - "loc": { - "start": { - "line": 19, - "column": 35 - }, - "end": { - "line": 19, - "column": 36 - }, - "identifierName": "i" - }, - "name": "i" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "alternate": { - "type": "LogicalExpression", - "start": 1790, - "end": 1860, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 109 - } - }, - "left": { - "type": "LogicalExpression", - "start": 1790, - "end": 1845, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 94 - } - }, - "left": { - "type": "LogicalExpression", - "start": 1790, - "end": 1835, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 84 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1790, - "end": 1810, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 59 - } - }, - "left": { - "type": "StringLiteral", - "start": 1790, - "end": 1794, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 43 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - }, - "operator": "===", - "right": { - "type": "CallExpression", - "start": 1799, - "end": 1810, - "loc": { - "start": { - "line": 19, - "column": 48 - }, - "end": { - "line": 19, - "column": 59 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1799, - "end": 1807, - "loc": { - "start": { - "line": 19, - "column": 48 - }, - "end": { - "line": 19, - "column": 56 - } - }, - "object": { - "type": "Identifier", - "start": 1799, - "end": 1800, - "loc": { - "start": { - "line": 19, - "column": 48 - }, - "end": { - "line": 19, - "column": 49 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 1801, - "end": 1807, - "loc": { - "start": { - "line": 19, - "column": 50 - }, - "end": { - "line": 19, - "column": 56 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 1808, - "end": 1809, - "loc": { - "start": { - "line": 19, - "column": 57 - }, - "end": { - "line": 19, - "column": 58 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 1815, - "end": 1834, - "loc": { - "start": { - "line": 19, - "column": 64 - }, - "end": { - "line": 19, - "column": 83 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1815, - "end": 1816, - "loc": { - "start": { - "line": 19, - "column": 64 - }, - "end": { - "line": 19, - "column": 65 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "UnaryExpression", - "start": 1819, - "end": 1834, - "loc": { - "start": { - "line": 19, - "column": 68 - }, - "end": { - "line": 19, - "column": 83 - } - }, - "operator": "+", - "prefix": true, - "argument": { - "type": "CallExpression", - "start": 1820, - "end": 1834, - "loc": { - "start": { - "line": 19, - "column": 69 - }, - "end": { - "line": 19, - "column": 83 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1820, - "end": 1831, - "loc": { - "start": { - "line": 19, - "column": 69 - }, - "end": { - "line": 19, - "column": 80 - } - }, - "object": { - "type": "Identifier", - "start": 1820, - "end": 1821, - "loc": { - "start": { - "line": 19, - "column": 69 - }, - "end": { - "line": 19, - "column": 70 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 1822, - "end": 1831, - "loc": { - "start": { - "line": 19, - "column": 71 - }, - "end": { - "line": 19, - "column": 80 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 1832, - "end": 1833, - "loc": { - "start": { - "line": 19, - "column": 81 - }, - "end": { - "line": 19, - "column": 82 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - }, - "extra": { - "parenthesizedArgument": false - } - }, - "extra": { - "parenthesized": true, - "parenStart": 1814 - } - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 1839, - "end": 1845, - "loc": { - "start": { - "line": 19, - "column": 88 - }, - "end": { - "line": 19, - "column": 94 - } - }, - "left": { - "type": "Identifier", - "start": 1839, - "end": 1840, - "loc": { - "start": { - "line": 19, - "column": 88 - }, - "end": { - "line": 19, - "column": 89 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": "<=", - "right": { - "type": "Identifier", - "start": 1844, - "end": 1845, - "loc": { - "start": { - "line": 19, - "column": 93 - }, - "end": { - "line": 19, - "column": 94 - }, - "identifierName": "i" - }, - "name": "i" - } - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 1850, - "end": 1859, - "loc": { - "start": { - "line": 19, - "column": 99 - }, - "end": { - "line": 19, - "column": 108 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1850, - "end": 1854, - "loc": { - "start": { - "line": 19, - "column": 99 - }, - "end": { - "line": 19, - "column": 103 - } - }, - "object": { - "type": "Identifier", - "start": 1850, - "end": 1851, - "loc": { - "start": { - "line": 19, - "column": 99 - }, - "end": { - "line": 19, - "column": 100 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 1852, - "end": 1853, - "loc": { - "start": { - "line": 19, - "column": 101 - }, - "end": { - "line": 19, - "column": 102 - }, - "identifierName": "j" - }, - "name": "j" - }, - "computed": true - }, - "right": { - "type": "UnaryExpression", - "start": 1857, - "end": 1859, - "loc": { - "start": { - "line": 19, - "column": 106 - }, - "end": { - "line": 19, - "column": 108 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1858, - "end": 1859, - "loc": { - "start": { - "line": 19, - "column": 107 - }, - "end": { - "line": 19, - "column": 108 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - }, - "extra": { - "parenthesized": true, - "parenStart": 1849 - } - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "ForStatement", - "start": 1869, - "end": 1928, - "loc": { - "start": { - "line": 20, - "column": 7 - }, - "end": { - "line": 20, - "column": 66 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 1874, - "end": 1879, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 17 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1874, - "end": 1875, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 13 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 1878, - "end": 1879, - "loc": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 17 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1881, - "end": 1893, - "loc": { - "start": { - "line": 20, - "column": 19 - }, - "end": { - "line": 20, - "column": 31 - } - }, - "left": { - "type": "Identifier", - "start": 1881, - "end": 1882, - "loc": { - "start": { - "line": 20, - "column": 19 - }, - "end": { - "line": 20, - "column": 20 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 1885, - "end": 1893, - "loc": { - "start": { - "line": 20, - "column": 23 - }, - "end": { - "line": 20, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 1885, - "end": 1886, - "loc": { - "start": { - "line": 20, - "column": 23 - }, - "end": { - "line": 20, - "column": 24 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 1887, - "end": 1893, - "loc": { - "start": { - "line": 20, - "column": 25 - }, - "end": { - "line": 20, - "column": 31 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 1895, - "end": 1898, - "loc": { - "start": { - "line": 20, - "column": 33 - }, - "end": { - "line": 20, - "column": 36 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1897, - "end": 1898, - "loc": { - "start": { - "line": 20, - "column": 35 - }, - "end": { - "line": 20, - "column": 36 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 1900, - "end": 1928, - "loc": { - "start": { - "line": 20, - "column": 38 - }, - "end": { - "line": 20, - "column": 66 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 1900, - "end": 1927, - "loc": { - "start": { - "line": 20, - "column": 38 - }, - "end": { - "line": 20, - "column": 65 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1900, - "end": 1911, - "loc": { - "start": { - "line": 20, - "column": 38 - }, - "end": { - "line": 20, - "column": 49 - } - }, - "left": { - "type": "UnaryExpression", - "start": 1900, - "end": 1902, - "loc": { - "start": { - "line": 20, - "column": 38 - }, - "end": { - "line": 20, - "column": 40 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1901, - "end": 1902, - "loc": { - "start": { - "line": 20, - "column": 39 - }, - "end": { - "line": 20, - "column": 40 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": "===", - "right": { - "type": "MemberExpression", - "start": 1907, - "end": 1911, - "loc": { - "start": { - "line": 20, - "column": 45 - }, - "end": { - "line": 20, - "column": 49 - } - }, - "object": { - "type": "Identifier", - "start": 1907, - "end": 1908, - "loc": { - "start": { - "line": 20, - "column": 45 - }, - "end": { - "line": 20, - "column": 46 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 1909, - "end": 1910, - "loc": { - "start": { - "line": 20, - "column": 47 - }, - "end": { - "line": 20, - "column": 48 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 1916, - "end": 1926, - "loc": { - "start": { - "line": 20, - "column": 54 - }, - "end": { - "line": 20, - "column": 64 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1916, - "end": 1920, - "loc": { - "start": { - "line": 20, - "column": 54 - }, - "end": { - "line": 20, - "column": 58 - } - }, - "object": { - "type": "Identifier", - "start": 1916, - "end": 1917, - "loc": { - "start": { - "line": 20, - "column": 54 - }, - "end": { - "line": 20, - "column": 55 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 1918, - "end": 1919, - "loc": { - "start": { - "line": 20, - "column": 56 - }, - "end": { - "line": 20, - "column": 57 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "UpdateExpression", - "start": 1923, - "end": 1926, - "loc": { - "start": { - "line": 20, - "column": 61 - }, - "end": { - "line": 20, - "column": 64 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1925, - "end": 1926, - "loc": { - "start": { - "line": 20, - "column": 63 - }, - "end": { - "line": 20, - "column": 64 - }, - "identifierName": "t" - }, - "name": "t" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "extra": { - "parenthesized": true, - "parenStart": 1915 - } - } - } - } - }, - { - "type": "ForStatement", - "start": 1928, - "end": 2101, - "loc": { - "start": { - "line": 20, - "column": 66 - }, - "end": { - "line": 20, - "column": 239 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 1933, - "end": 1942, - "loc": { - "start": { - "line": 20, - "column": 71 - }, - "end": { - "line": 20, - "column": 80 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1933, - "end": 1934, - "loc": { - "start": { - "line": 20, - "column": 71 - }, - "end": { - "line": 20, - "column": 72 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "AssignmentExpression", - "start": 1937, - "end": 1942, - "loc": { - "start": { - "line": 20, - "column": 75 - }, - "end": { - "line": 20, - "column": 80 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1937, - "end": 1938, - "loc": { - "start": { - "line": 20, - "column": 75 - }, - "end": { - "line": 20, - "column": 76 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 1941, - "end": 1942, - "loc": { - "start": { - "line": 20, - "column": 79 - }, - "end": { - "line": 20, - "column": 80 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - }, - "test": { - "type": "BinaryExpression", - "start": 1944, - "end": 1949, - "loc": { - "start": { - "line": 20, - "column": 82 - }, - "end": { - "line": 20, - "column": 87 - } - }, - "left": { - "type": "Identifier", - "start": 1944, - "end": 1945, - "loc": { - "start": { - "line": 20, - "column": 82 - }, - "end": { - "line": 20, - "column": 83 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 1948, - "end": 1949, - "loc": { - "start": { - "line": 20, - "column": 86 - }, - "end": { - "line": 20, - "column": 87 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "update": { - "type": "UpdateExpression", - "start": 1951, - "end": 1954, - "loc": { - "start": { - "line": 20, - "column": 89 - }, - "end": { - "line": 20, - "column": 92 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1953, - "end": 1954, - "loc": { - "start": { - "line": 20, - "column": 91 - }, - "end": { - "line": 20, - "column": 92 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 1956, - "end": 2101, - "loc": { - "start": { - "line": 20, - "column": 94 - }, - "end": { - "line": 20, - "column": 239 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 1956, - "end": 2100, - "loc": { - "start": { - "line": 20, - "column": 94 - }, - "end": { - "line": 20, - "column": 238 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 1956, - "end": 1964, - "loc": { - "start": { - "line": 20, - "column": 94 - }, - "end": { - "line": 20, - "column": 102 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1956, - "end": 1957, - "loc": { - "start": { - "line": 20, - "column": 94 - }, - "end": { - "line": 20, - "column": 95 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "MemberExpression", - "start": 1960, - "end": 1964, - "loc": { - "start": { - "line": 20, - "column": 98 - }, - "end": { - "line": 20, - "column": 102 - } - }, - "object": { - "type": "Identifier", - "start": 1960, - "end": 1961, - "loc": { - "start": { - "line": 20, - "column": 98 - }, - "end": { - "line": 20, - "column": 99 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 1962, - "end": 1963, - "loc": { - "start": { - "line": 20, - "column": 100 - }, - "end": { - "line": 20, - "column": 101 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - { - "type": "ConditionalExpression", - "start": 1966, - "end": 2100, - "loc": { - "start": { - "line": 20, - "column": 104 - }, - "end": { - "line": 20, - "column": 238 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1966, - "end": 1975, - "loc": { - "start": { - "line": 20, - "column": 104 - }, - "end": { - "line": 20, - "column": 113 - } - }, - "left": { - "type": "Identifier", - "start": 1966, - "end": 1967, - "loc": { - "start": { - "line": 20, - "column": 104 - }, - "end": { - "line": 20, - "column": 105 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 1972, - "end": 1975, - "loc": { - "start": { - "line": 20, - "column": 110 - }, - "end": { - "line": 20, - "column": 113 - } - }, - "extra": { - "rawValue": "(", - "raw": "\"(\"" - }, - "value": "(" - } - }, - "consequent": { - "type": "SequenceExpression", - "start": 1979, - "end": 2017, - "loc": { - "start": { - "line": 20, - "column": 117 - }, - "end": { - "line": 20, - "column": 155 - } - }, - "expressions": [ - { - "type": "UpdateExpression", - "start": 1979, - "end": 1982, - "loc": { - "start": { - "line": 20, - "column": 117 - }, - "end": { - "line": 20, - "column": 120 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 1981, - "end": 1982, - "loc": { - "start": { - "line": 20, - "column": 119 - }, - "end": { - "line": 20, - "column": 120 - }, - "identifierName": "i" - }, - "name": "i" - }, - "extra": { - "parenthesizedArgument": false - } - }, - { - "type": "LogicalExpression", - "start": 1984, - "end": 2017, - "loc": { - "start": { - "line": 20, - "column": 122 - }, - "end": { - "line": 20, - "column": 155 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1984, - "end": 1999, - "loc": { - "start": { - "line": 20, - "column": 122 - }, - "end": { - "line": 20, - "column": 137 - } - }, - "left": { - "type": "MemberExpression", - "start": 1984, - "end": 1988, - "loc": { - "start": { - "line": 20, - "column": 122 - }, - "end": { - "line": 20, - "column": 126 - } - }, - "object": { - "type": "Identifier", - "start": 1984, - "end": 1985, - "loc": { - "start": { - "line": 20, - "column": 122 - }, - "end": { - "line": 20, - "column": 123 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 1986, - "end": 1987, - "loc": { - "start": { - "line": 20, - "column": 124 - }, - "end": { - "line": 20, - "column": 125 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "operator": "===", - "right": { - "type": "UnaryExpression", - "start": 1993, - "end": 1999, - "loc": { - "start": { - "line": 20, - "column": 131 - }, - "end": { - "line": 20, - "column": 137 - } - }, - "operator": "void", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1998, - "end": 1999, - "loc": { - "start": { - "line": 20, - "column": 136 - }, - "end": { - "line": 20, - "column": 137 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 2004, - "end": 2016, - "loc": { - "start": { - "line": 20, - "column": 142 - }, - "end": { - "line": 20, - "column": 154 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2004, - "end": 2008, - "loc": { - "start": { - "line": 20, - "column": 142 - }, - "end": { - "line": 20, - "column": 146 - } - }, - "object": { - "type": "Identifier", - "start": 2004, - "end": 2005, - "loc": { - "start": { - "line": 20, - "column": 142 - }, - "end": { - "line": 20, - "column": 143 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2006, - "end": 2007, - "loc": { - "start": { - "line": 20, - "column": 144 - }, - "end": { - "line": 20, - "column": 145 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "StringLiteral", - "start": 2011, - "end": 2016, - "loc": { - "start": { - "line": 20, - "column": 149 - }, - "end": { - "line": 20, - "column": 154 - } - }, - "extra": { - "rawValue": "(?:", - "raw": "\"(?:\"" - }, - "value": "(?:" - }, - "extra": { - "parenthesized": true, - "parenStart": 2003 - } - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 1978 - } - }, - "alternate": { - "type": "LogicalExpression", - "start": 2021, - "end": 2100, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 238 - } - }, - "left": { - "type": "LogicalExpression", - "start": 2021, - "end": 2076, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 214 - } - }, - "left": { - "type": "LogicalExpression", - "start": 2021, - "end": 2066, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 204 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2021, - "end": 2041, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 179 - } - }, - "left": { - "type": "StringLiteral", - "start": 2021, - "end": 2025, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 163 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - }, - "operator": "===", - "right": { - "type": "CallExpression", - "start": 2030, - "end": 2041, - "loc": { - "start": { - "line": 20, - "column": 168 - }, - "end": { - "line": 20, - "column": 179 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2030, - "end": 2038, - "loc": { - "start": { - "line": 20, - "column": 168 - }, - "end": { - "line": 20, - "column": 176 - } - }, - "object": { - "type": "Identifier", - "start": 2030, - "end": 2031, - "loc": { - "start": { - "line": 20, - "column": 168 - }, - "end": { - "line": 20, - "column": 169 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 2032, - "end": 2038, - "loc": { - "start": { - "line": 20, - "column": 170 - }, - "end": { - "line": 20, - "column": 176 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 2039, - "end": 2040, - "loc": { - "start": { - "line": 20, - "column": 177 - }, - "end": { - "line": 20, - "column": 178 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 2046, - "end": 2065, - "loc": { - "start": { - "line": 20, - "column": 184 - }, - "end": { - "line": 20, - "column": 203 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2046, - "end": 2047, - "loc": { - "start": { - "line": 20, - "column": 184 - }, - "end": { - "line": 20, - "column": 185 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "UnaryExpression", - "start": 2050, - "end": 2065, - "loc": { - "start": { - "line": 20, - "column": 188 - }, - "end": { - "line": 20, - "column": 203 - } - }, - "operator": "+", - "prefix": true, - "argument": { - "type": "CallExpression", - "start": 2051, - "end": 2065, - "loc": { - "start": { - "line": 20, - "column": 189 - }, - "end": { - "line": 20, - "column": 203 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2051, - "end": 2062, - "loc": { - "start": { - "line": 20, - "column": 189 - }, - "end": { - "line": 20, - "column": 200 - } - }, - "object": { - "type": "Identifier", - "start": 2051, - "end": 2052, - "loc": { - "start": { - "line": 20, - "column": 189 - }, - "end": { - "line": 20, - "column": 190 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 2053, - "end": 2062, - "loc": { - "start": { - "line": 20, - "column": 191 - }, - "end": { - "line": 20, - "column": 200 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 2063, - "end": 2064, - "loc": { - "start": { - "line": 20, - "column": 201 - }, - "end": { - "line": 20, - "column": 202 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - }, - "extra": { - "parenthesizedArgument": false - } - }, - "extra": { - "parenthesized": true, - "parenStart": 2045 - } - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 2070, - "end": 2076, - "loc": { - "start": { - "line": 20, - "column": 208 - }, - "end": { - "line": 20, - "column": 214 - } - }, - "left": { - "type": "Identifier", - "start": 2070, - "end": 2071, - "loc": { - "start": { - "line": 20, - "column": 208 - }, - "end": { - "line": 20, - "column": 209 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": "<=", - "right": { - "type": "Identifier", - "start": 2075, - "end": 2076, - "loc": { - "start": { - "line": 20, - "column": 213 - }, - "end": { - "line": 20, - "column": 214 - }, - "identifierName": "i" - }, - "name": "i" - } - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 2081, - "end": 2099, - "loc": { - "start": { - "line": 20, - "column": 219 - }, - "end": { - "line": 20, - "column": 237 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2081, - "end": 2085, - "loc": { - "start": { - "line": 20, - "column": 219 - }, - "end": { - "line": 20, - "column": 223 - } - }, - "object": { - "type": "Identifier", - "start": 2081, - "end": 2082, - "loc": { - "start": { - "line": 20, - "column": 219 - }, - "end": { - "line": 20, - "column": 220 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2083, - "end": 2084, - "loc": { - "start": { - "line": 20, - "column": 221 - }, - "end": { - "line": 20, - "column": 222 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "BinaryExpression", - "start": 2088, - "end": 2099, - "loc": { - "start": { - "line": 20, - "column": 226 - }, - "end": { - "line": 20, - "column": 237 - } - }, - "left": { - "type": "StringLiteral", - "start": 2088, - "end": 2092, - "loc": { - "start": { - "line": 20, - "column": 226 - }, - "end": { - "line": 20, - "column": 230 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 2095, - "end": 2099, - "loc": { - "start": { - "line": 20, - "column": 233 - }, - "end": { - "line": 20, - "column": 237 - } - }, - "object": { - "type": "Identifier", - "start": 2095, - "end": 2096, - "loc": { - "start": { - "line": 20, - "column": 233 - }, - "end": { - "line": 20, - "column": 234 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 2097, - "end": 2098, - "loc": { - "start": { - "line": 20, - "column": 235 - }, - "end": { - "line": 20, - "column": 236 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - } - }, - "extra": { - "parenthesized": true, - "parenStart": 2080 - } - } - } - } - ] - } - } - }, - { - "type": "ForStatement", - "start": 2101, - "end": 2177, - "loc": { - "start": { - "line": 20, - "column": 239 - }, - "end": { - "line": 20, - "column": 315 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 2106, - "end": 2115, - "loc": { - "start": { - "line": 20, - "column": 244 - }, - "end": { - "line": 20, - "column": 253 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2106, - "end": 2107, - "loc": { - "start": { - "line": 20, - "column": 244 - }, - "end": { - "line": 20, - "column": 245 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "AssignmentExpression", - "start": 2110, - "end": 2115, - "loc": { - "start": { - "line": 20, - "column": 248 - }, - "end": { - "line": 20, - "column": 253 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2110, - "end": 2111, - "loc": { - "start": { - "line": 20, - "column": 248 - }, - "end": { - "line": 20, - "column": 249 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 2114, - "end": 2115, - "loc": { - "start": { - "line": 20, - "column": 252 - }, - "end": { - "line": 20, - "column": 253 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - }, - "test": { - "type": "BinaryExpression", - "start": 2117, - "end": 2122, - "loc": { - "start": { - "line": 20, - "column": 255 - }, - "end": { - "line": 20, - "column": 260 - } - }, - "left": { - "type": "Identifier", - "start": 2117, - "end": 2118, - "loc": { - "start": { - "line": 20, - "column": 255 - }, - "end": { - "line": 20, - "column": 256 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 2121, - "end": 2122, - "loc": { - "start": { - "line": 20, - "column": 259 - }, - "end": { - "line": 20, - "column": 260 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "update": { - "type": "UpdateExpression", - "start": 2124, - "end": 2127, - "loc": { - "start": { - "line": 20, - "column": 262 - }, - "end": { - "line": 20, - "column": 265 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 2126, - "end": 2127, - "loc": { - "start": { - "line": 20, - "column": 264 - }, - "end": { - "line": 20, - "column": 265 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 2129, - "end": 2177, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 315 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 2129, - "end": 2176, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 314 - } - }, - "left": { - "type": "LogicalExpression", - "start": 2129, - "end": 2161, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 299 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2129, - "end": 2141, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 279 - } - }, - "left": { - "type": "StringLiteral", - "start": 2129, - "end": 2132, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 270 - } - }, - "extra": { - "rawValue": "^", - "raw": "\"^\"" - }, - "value": "^" - }, - "operator": "===", - "right": { - "type": "MemberExpression", - "start": 2137, - "end": 2141, - "loc": { - "start": { - "line": 20, - "column": 275 - }, - "end": { - "line": 20, - "column": 279 - } - }, - "object": { - "type": "Identifier", - "start": 2137, - "end": 2138, - "loc": { - "start": { - "line": 20, - "column": 275 - }, - "end": { - "line": 20, - "column": 276 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2139, - "end": 2140, - "loc": { - "start": { - "line": 20, - "column": 277 - }, - "end": { - "line": 20, - "column": 278 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 2145, - "end": 2161, - "loc": { - "start": { - "line": 20, - "column": 283 - }, - "end": { - "line": 20, - "column": 299 - } - }, - "left": { - "type": "StringLiteral", - "start": 2145, - "end": 2148, - "loc": { - "start": { - "line": 20, - "column": 283 - }, - "end": { - "line": 20, - "column": 286 - } - }, - "extra": { - "rawValue": "^", - "raw": "\"^\"" - }, - "value": "^" - }, - "operator": "!==", - "right": { - "type": "MemberExpression", - "start": 2153, - "end": 2161, - "loc": { - "start": { - "line": 20, - "column": 291 - }, - "end": { - "line": 20, - "column": 299 - } - }, - "object": { - "type": "Identifier", - "start": 2153, - "end": 2154, - "loc": { - "start": { - "line": 20, - "column": 291 - }, - "end": { - "line": 20, - "column": 292 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "BinaryExpression", - "start": 2155, - "end": 2160, - "loc": { - "start": { - "line": 20, - "column": 293 - }, - "end": { - "line": 20, - "column": 298 - } - }, - "left": { - "type": "Identifier", - "start": 2155, - "end": 2156, - "loc": { - "start": { - "line": 20, - "column": 293 - }, - "end": { - "line": 20, - "column": 294 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 2159, - "end": 2160, - "loc": { - "start": { - "line": 20, - "column": 297 - }, - "end": { - "line": 20, - "column": 298 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - } - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 2166, - "end": 2175, - "loc": { - "start": { - "line": 20, - "column": 304 - }, - "end": { - "line": 20, - "column": 313 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2166, - "end": 2170, - "loc": { - "start": { - "line": 20, - "column": 304 - }, - "end": { - "line": 20, - "column": 308 - } - }, - "object": { - "type": "Identifier", - "start": 2166, - "end": 2167, - "loc": { - "start": { - "line": 20, - "column": 304 - }, - "end": { - "line": 20, - "column": 305 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2168, - "end": 2169, - "loc": { - "start": { - "line": 20, - "column": 306 - }, - "end": { - "line": 20, - "column": 307 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "StringLiteral", - "start": 2173, - "end": 2175, - "loc": { - "start": { - "line": 20, - "column": 311 - }, - "end": { - "line": 20, - "column": 313 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - }, - "extra": { - "parenthesized": true, - "parenStart": 2165 - } - } - } - } - }, - { - "type": "IfStatement", - "start": 2177, - "end": 2449, - "loc": { - "start": { - "line": 20, - "column": 315 - }, - "end": { - "line": 22, - "column": 10 - } - }, - "test": { - "type": "LogicalExpression", - "start": 2181, - "end": 2198, - "loc": { - "start": { - "line": 20, - "column": 319 - }, - "end": { - "line": 20, - "column": 336 - } - }, - "left": { - "type": "MemberExpression", - "start": 2181, - "end": 2193, - "loc": { - "start": { - "line": 20, - "column": 319 - }, - "end": { - "line": 20, - "column": 331 - } - }, - "object": { - "type": "Identifier", - "start": 2181, - "end": 2182, - "loc": { - "start": { - "line": 20, - "column": 319 - }, - "end": { - "line": 20, - "column": 320 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2183, - "end": 2193, - "loc": { - "start": { - "line": 20, - "column": 321 - }, - "end": { - "line": 20, - "column": 331 - }, - "identifierName": "ignoreCase" - }, - "name": "ignoreCase" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "Identifier", - "start": 2197, - "end": 2198, - "loc": { - "start": { - "line": 20, - "column": 335 - }, - "end": { - "line": 20, - "column": 336 - }, - "identifierName": "s" - }, - "name": "s" - } - }, - "consequent": { - "type": "ForStatement", - "start": 2200, - "end": 2449, - "loc": { - "start": { - "line": 20, - "column": 338 - }, - "end": { - "line": 22, - "column": 10 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 2205, - "end": 2210, - "loc": { - "start": { - "line": 20, - "column": 343 - }, - "end": { - "line": 20, - "column": 348 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2205, - "end": 2206, - "loc": { - "start": { - "line": 20, - "column": 343 - }, - "end": { - "line": 20, - "column": 344 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 2209, - "end": 2210, - "loc": { - "start": { - "line": 20, - "column": 347 - }, - "end": { - "line": 20, - "column": 348 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "test": { - "type": "BinaryExpression", - "start": 2212, - "end": 2217, - "loc": { - "start": { - "line": 20, - "column": 350 - }, - "end": { - "line": 20, - "column": 355 - } - }, - "left": { - "type": "Identifier", - "start": 2212, - "end": 2213, - "loc": { - "start": { - "line": 20, - "column": 350 - }, - "end": { - "line": 20, - "column": 351 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 2216, - "end": 2217, - "loc": { - "start": { - "line": 20, - "column": 354 - }, - "end": { - "line": 20, - "column": 355 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "update": { - "type": "UpdateExpression", - "start": 2219, - "end": 2222, - "loc": { - "start": { - "line": 20, - "column": 357 - }, - "end": { - "line": 20, - "column": 360 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 2221, - "end": 2222, - "loc": { - "start": { - "line": 20, - "column": 359 - }, - "end": { - "line": 20, - "column": 360 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 2224, - "end": 2449, - "loc": { - "start": { - "line": 20, - "column": 362 - }, - "end": { - "line": 22, - "column": 10 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 2224, - "end": 2448, - "loc": { - "start": { - "line": 20, - "column": 362 - }, - "end": { - "line": 22, - "column": 9 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 2224, - "end": 2232, - "loc": { - "start": { - "line": 20, - "column": 362 - }, - "end": { - "line": 20, - "column": 370 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2224, - "end": 2225, - "loc": { - "start": { - "line": 20, - "column": 362 - }, - "end": { - "line": 20, - "column": 363 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "MemberExpression", - "start": 2228, - "end": 2232, - "loc": { - "start": { - "line": 20, - "column": 366 - }, - "end": { - "line": 20, - "column": 370 - } - }, - "object": { - "type": "Identifier", - "start": 2228, - "end": 2229, - "loc": { - "start": { - "line": 20, - "column": 366 - }, - "end": { - "line": 20, - "column": 367 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2230, - "end": 2231, - "loc": { - "start": { - "line": 20, - "column": 368 - }, - "end": { - "line": 20, - "column": 369 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - { - "type": "AssignmentExpression", - "start": 2234, - "end": 2249, - "loc": { - "start": { - "line": 20, - "column": 372 - }, - "end": { - "line": 20, - "column": 387 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2234, - "end": 2235, - "loc": { - "start": { - "line": 20, - "column": 372 - }, - "end": { - "line": 20, - "column": 373 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "CallExpression", - "start": 2238, - "end": 2249, - "loc": { - "start": { - "line": 20, - "column": 376 - }, - "end": { - "line": 20, - "column": 387 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2238, - "end": 2246, - "loc": { - "start": { - "line": 20, - "column": 376 - }, - "end": { - "line": 20, - "column": 384 - } - }, - "object": { - "type": "Identifier", - "start": 2238, - "end": 2239, - "loc": { - "start": { - "line": 20, - "column": 376 - }, - "end": { - "line": 20, - "column": 377 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 2240, - "end": 2246, - "loc": { - "start": { - "line": 20, - "column": 378 - }, - "end": { - "line": 20, - "column": 384 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 2247, - "end": 2248, - "loc": { - "start": { - "line": 20, - "column": 385 - }, - "end": { - "line": 20, - "column": 386 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - }, - { - "type": "ConditionalExpression", - "start": 2251, - "end": 2448, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 22, - "column": 9 - } - }, - "test": { - "type": "LogicalExpression", - "start": 2251, - "end": 2277, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 20, - "column": 415 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2251, - "end": 2264, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 20, - "column": 402 - } - }, - "left": { - "type": "MemberExpression", - "start": 2251, - "end": 2259, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 20, - "column": 397 - } - }, - "object": { - "type": "Identifier", - "start": 2251, - "end": 2252, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 20, - "column": 390 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 2253, - "end": 2259, - "loc": { - "start": { - "line": 20, - "column": 391 - }, - "end": { - "line": 20, - "column": 397 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 2263, - "end": 2264, - "loc": { - "start": { - "line": 20, - "column": 401 - }, - "end": { - "line": 20, - "column": 402 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 2268, - "end": 2277, - "loc": { - "start": { - "line": 20, - "column": 406 - }, - "end": { - "line": 20, - "column": 415 - } - }, - "left": { - "type": "Identifier", - "start": 2268, - "end": 2269, - "loc": { - "start": { - "line": 20, - "column": 406 - }, - "end": { - "line": 20, - "column": 407 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 2274, - "end": 2277, - "loc": { - "start": { - "line": 20, - "column": 412 - }, - "end": { - "line": 20, - "column": 415 - } - }, - "extra": { - "rawValue": "[", - "raw": "\"[\"" - }, - "value": "[" - } - } - }, - "consequent": { - "type": "AssignmentExpression", - "start": 2280, - "end": 2291, - "loc": { - "start": { - "line": 20, - "column": 418 - }, - "end": { - "line": 20, - "column": 429 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2280, - "end": 2284, - "loc": { - "start": { - "line": 20, - "column": 418 - }, - "end": { - "line": 20, - "column": 422 - } - }, - "object": { - "type": "Identifier", - "start": 2280, - "end": 2281, - "loc": { - "start": { - "line": 20, - "column": 418 - }, - "end": { - "line": 20, - "column": 419 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2282, - "end": 2283, - "loc": { - "start": { - "line": 20, - "column": 420 - }, - "end": { - "line": 20, - "column": 421 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "CallExpression", - "start": 2287, - "end": 2291, - "loc": { - "start": { - "line": 20, - "column": 425 - }, - "end": { - "line": 20, - "column": 429 - } - }, - "callee": { - "type": "Identifier", - "start": 2287, - "end": 2288, - "loc": { - "start": { - "line": 20, - "column": 425 - }, - "end": { - "line": 20, - "column": 426 - }, - "identifierName": "h" - }, - "name": "h" - }, - "arguments": [ - { - "type": "Identifier", - "start": 2289, - "end": 2290, - "loc": { - "start": { - "line": 20, - "column": 427 - }, - "end": { - "line": 20, - "column": 428 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - } - }, - "alternate": { - "type": "LogicalExpression", - "start": 2294, - "end": 2448, - "loc": { - "start": { - "line": 20, - "column": 432 - }, - "end": { - "line": 22, - "column": 9 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2294, - "end": 2304, - "loc": { - "start": { - "line": 20, - "column": 432 - }, - "end": { - "line": 20, - "column": 442 - } - }, - "left": { - "type": "Identifier", - "start": 2294, - "end": 2295, - "loc": { - "start": { - "line": 20, - "column": 432 - }, - "end": { - "line": 20, - "column": 433 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "!==", - "right": { - "type": "StringLiteral", - "start": 2300, - "end": 2304, - "loc": { - "start": { - "line": 20, - "column": 438 - }, - "end": { - "line": 20, - "column": 442 - } - }, - "extra": { - "rawValue": "\\", - "raw": "\"\\\\\"" - }, - "value": "\\" - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 2309, - "end": 2447, - "loc": { - "start": { - "line": 20, - "column": 447 - }, - "end": { - "line": 22, - "column": 8 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2309, - "end": 2313, - "loc": { - "start": { - "line": 20, - "column": 447 - }, - "end": { - "line": 20, - "column": 451 - } - }, - "object": { - "type": "Identifier", - "start": 2309, - "end": 2310, - "loc": { - "start": { - "line": 20, - "column": 447 - }, - "end": { - "line": 20, - "column": 448 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2311, - "end": 2312, - "loc": { - "start": { - "line": 20, - "column": 449 - }, - "end": { - "line": 20, - "column": 450 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - }, - "right": { - "type": "CallExpression", - "start": 2316, - "end": 2447, - "loc": { - "start": { - "line": 20, - "column": 454 - }, - "end": { - "line": 22, - "column": 8 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2316, - "end": 2325, - "loc": { - "start": { - "line": 20, - "column": 454 - }, - "end": { - "line": 20, - "column": 463 - } - }, - "object": { - "type": "Identifier", - "start": 2316, - "end": 2317, - "loc": { - "start": { - "line": 20, - "column": 454 - }, - "end": { - "line": 20, - "column": 455 - }, - "identifierName": "j" - }, - "name": "j" - }, - "property": { - "type": "Identifier", - "start": 2318, - "end": 2325, - "loc": { - "start": { - "line": 20, - "column": 456 - }, - "end": { - "line": 20, - "column": 463 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 2326, - "end": 2337, - "loc": { - "start": { - "line": 20, - "column": 464 - }, - "end": { - "line": 20, - "column": 475 - } - }, - "extra": { - "raw": "/[A-Za-z]/g" - }, - "pattern": "[A-Za-z]", - "flags": "g" - }, - { - "type": "FunctionExpression", - "start": 2339, - "end": 2446, - "loc": { - "start": { - "line": 20, - "column": 477 - }, - "end": { - "line": 22, - "column": 7 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 2349, - "end": 2350, - "loc": { - "start": { - "line": 20, - "column": 487 - }, - "end": { - "line": 20, - "column": 488 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 2352, - "end": 2446, - "loc": { - "start": { - "line": 20, - "column": 490 - }, - "end": { - "line": 22, - "column": 7 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 2362, - "end": 2382, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2362, - "end": 2381, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2362, - "end": 2363, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 9 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "CallExpression", - "start": 2366, - "end": 2381, - "loc": { - "start": { - "line": 21, - "column": 12 - }, - "end": { - "line": 21, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2366, - "end": 2378, - "loc": { - "start": { - "line": 21, - "column": 12 - }, - "end": { - "line": 21, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 2366, - "end": 2367, - "loc": { - "start": { - "line": 21, - "column": 12 - }, - "end": { - "line": 21, - "column": 13 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2368, - "end": 2378, - "loc": { - "start": { - "line": 21, - "column": 14 - }, - "end": { - "line": 21, - "column": 24 - }, - "identifierName": "charCodeAt" - }, - "name": "charCodeAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 2379, - "end": 2380, - "loc": { - "start": { - "line": 21, - "column": 25 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - } - }, - { - "type": "ReturnStatement", - "start": 2382, - "end": 2438, - "loc": { - "start": { - "line": 21, - "column": 28 - }, - "end": { - "line": 21, - "column": 84 - } - }, - "argument": { - "type": "BinaryExpression", - "start": 2389, - "end": 2437, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 83 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2389, - "end": 2431, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 77 - } - }, - "left": { - "type": "StringLiteral", - "start": 2389, - "end": 2392, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 38 - } - }, - "extra": { - "rawValue": "[", - "raw": "\"[\"" - }, - "value": "[" - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 2395, - "end": 2431, - "loc": { - "start": { - "line": 21, - "column": 41 - }, - "end": { - "line": 21, - "column": 77 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2395, - "end": 2414, - "loc": { - "start": { - "line": 21, - "column": 41 - }, - "end": { - "line": 21, - "column": 60 - } - }, - "object": { - "type": "Identifier", - "start": 2395, - "end": 2401, - "loc": { - "start": { - "line": 21, - "column": 41 - }, - "end": { - "line": 21, - "column": 47 - }, - "identifierName": "String" - }, - "name": "String" - }, - "property": { - "type": "Identifier", - "start": 2402, - "end": 2414, - "loc": { - "start": { - "line": 21, - "column": 48 - }, - "end": { - "line": 21, - "column": 60 - }, - "identifierName": "fromCharCode" - }, - "name": "fromCharCode" - }, - "computed": false - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 2415, - "end": 2422, - "loc": { - "start": { - "line": 21, - "column": 61 - }, - "end": { - "line": 21, - "column": 68 - } - }, - "left": { - "type": "Identifier", - "start": 2415, - "end": 2416, - "loc": { - "start": { - "line": 21, - "column": 61 - }, - "end": { - "line": 21, - "column": 62 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "&", - "right": { - "type": "UnaryExpression", - "start": 2419, - "end": 2422, - "loc": { - "start": { - "line": 21, - "column": 65 - }, - "end": { - "line": 21, - "column": 68 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2420, - "end": 2422, - "loc": { - "start": { - "line": 21, - "column": 66 - }, - "end": { - "line": 21, - "column": 68 - } - }, - "extra": { - "rawValue": 33, - "raw": "33" - }, - "value": 33 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "BinaryExpression", - "start": 2424, - "end": 2430, - "loc": { - "start": { - "line": 21, - "column": 70 - }, - "end": { - "line": 21, - "column": 76 - } - }, - "left": { - "type": "Identifier", - "start": 2424, - "end": 2425, - "loc": { - "start": { - "line": 21, - "column": 70 - }, - "end": { - "line": 21, - "column": 71 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 2428, - "end": 2430, - "loc": { - "start": { - "line": 21, - "column": 74 - }, - "end": { - "line": 21, - "column": 76 - } - }, - "extra": { - "rawValue": 32, - "raw": "32" - }, - "value": 32 - } - } - ] - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 2434, - "end": 2437, - "loc": { - "start": { - "line": 21, - "column": 80 - }, - "end": { - "line": 21, - "column": 83 - } - }, - "extra": { - "rawValue": "]", - "raw": "\"]\"" - }, - "value": "]" - } - } - } - ], - "directives": [] - } - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 2308 - } - } - } - } - ] - } - } - }, - "alternate": null - }, - { - "type": "ReturnStatement", - "start": 2449, - "end": 2467, - "loc": { - "start": { - "line": 22, - "column": 10 - }, - "end": { - "line": 22, - "column": 28 - } - }, - "argument": { - "type": "CallExpression", - "start": 2456, - "end": 2466, - "loc": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2456, - "end": 2462, - "loc": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 23 - } - }, - "object": { - "type": "Identifier", - "start": 2456, - "end": 2457, - "loc": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 18 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 2458, - "end": 2462, - "loc": { - "start": { - "line": 22, - "column": 19 - }, - "end": { - "line": 22, - "column": 23 - }, - "identifierName": "join" - }, - "name": "join" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2463, - "end": 2465, - "loc": { - "start": { - "line": 22, - "column": 24 - }, - "end": { - "line": 22, - "column": 26 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "ForStatement", - "start": 2473, - "end": 2717, - "loc": { - "start": { - "line": 23, - "column": 5 - }, - "end": { - "line": 27, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 2478, - "end": 2524, - "loc": { - "start": { - "line": 23, - "column": 10 - }, - "end": { - "line": 23, - "column": 56 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2482, - "end": 2487, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 19 - } - }, - "id": { - "type": "Identifier", - "start": 2482, - "end": 2483, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 15 - }, - "identifierName": "t" - }, - "name": "t" - }, - "init": { - "type": "NumericLiteral", - "start": 2486, - "end": 2487, - "loc": { - "start": { - "line": 23, - "column": 18 - }, - "end": { - "line": 23, - "column": 19 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 2489, - "end": 2495, - "loc": { - "start": { - "line": 23, - "column": 21 - }, - "end": { - "line": 23, - "column": 27 - } - }, - "id": { - "type": "Identifier", - "start": 2489, - "end": 2490, - "loc": { - "start": { - "line": 23, - "column": 21 - }, - "end": { - "line": 23, - "column": 22 - }, - "identifierName": "s" - }, - "name": "s" - }, - "init": { - "type": "UnaryExpression", - "start": 2493, - "end": 2495, - "loc": { - "start": { - "line": 23, - "column": 25 - }, - "end": { - "line": 23, - "column": 27 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2494, - "end": 2495, - "loc": { - "start": { - "line": 23, - "column": 26 - }, - "end": { - "line": 23, - "column": 27 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "VariableDeclarator", - "start": 2497, - "end": 2503, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 35 - } - }, - "id": { - "type": "Identifier", - "start": 2497, - "end": 2498, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 30 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": { - "type": "UnaryExpression", - "start": 2501, - "end": 2503, - "loc": { - "start": { - "line": 23, - "column": 33 - }, - "end": { - "line": 23, - "column": 35 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2502, - "end": 2503, - "loc": { - "start": { - "line": 23, - "column": 34 - }, - "end": { - "line": 23, - "column": 35 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "VariableDeclarator", - "start": 2505, - "end": 2510, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 42 - } - }, - "id": { - "type": "Identifier", - "start": 2505, - "end": 2506, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 38 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "NumericLiteral", - "start": 2509, - "end": 2510, - "loc": { - "start": { - "line": 23, - "column": 41 - }, - "end": { - "line": 23, - "column": 42 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 2512, - "end": 2524, - "loc": { - "start": { - "line": 23, - "column": 44 - }, - "end": { - "line": 23, - "column": 56 - } - }, - "id": { - "type": "Identifier", - "start": 2512, - "end": 2513, - "loc": { - "start": { - "line": 23, - "column": 44 - }, - "end": { - "line": 23, - "column": 45 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "MemberExpression", - "start": 2516, - "end": 2524, - "loc": { - "start": { - "line": 23, - "column": 48 - }, - "end": { - "line": 23, - "column": 56 - } - }, - "object": { - "type": "Identifier", - "start": 2516, - "end": 2517, - "loc": { - "start": { - "line": 23, - "column": 48 - }, - "end": { - "line": 23, - "column": 49 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2518, - "end": 2524, - "loc": { - "start": { - "line": 23, - "column": 50 - }, - "end": { - "line": 23, - "column": 56 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 2526, - "end": 2531, - "loc": { - "start": { - "line": 23, - "column": 58 - }, - "end": { - "line": 23, - "column": 63 - } - }, - "left": { - "type": "Identifier", - "start": 2526, - "end": 2527, - "loc": { - "start": { - "line": 23, - "column": 58 - }, - "end": { - "line": 23, - "column": 59 - }, - "identifierName": "p" - }, - "name": "p" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 2530, - "end": 2531, - "loc": { - "start": { - "line": 23, - "column": 62 - }, - "end": { - "line": 23, - "column": 63 - }, - "identifierName": "d" - }, - "name": "d" - } - }, - "update": { - "type": "UpdateExpression", - "start": 2533, - "end": 2536, - "loc": { - "start": { - "line": 23, - "column": 65 - }, - "end": { - "line": 23, - "column": 68 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 2535, - "end": 2536, - "loc": { - "start": { - "line": 23, - "column": 67 - }, - "end": { - "line": 23, - "column": 68 - }, - "identifierName": "p" - }, - "name": "p" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 2538, - "end": 2717, - "loc": { - "start": { - "line": 23, - "column": 70 - }, - "end": { - "line": 27, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2546, - "end": 2559, - "loc": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 19 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2550, - "end": 2558, - "loc": { - "start": { - "line": 24, - "column": 10 - }, - "end": { - "line": 24, - "column": 18 - } - }, - "id": { - "type": "Identifier", - "start": 2550, - "end": 2551, - "loc": { - "start": { - "line": 24, - "column": 10 - }, - "end": { - "line": 24, - "column": 11 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "MemberExpression", - "start": 2554, - "end": 2558, - "loc": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 2554, - "end": 2555, - "loc": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2556, - "end": 2557, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 17 - }, - "identifierName": "p" - }, - "name": "p" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 2559, - "end": 2711, - "loc": { - "start": { - "line": 24, - "column": 19 - }, - "end": { - "line": 26, - "column": 7 - } - }, - "test": { - "type": "MemberExpression", - "start": 2563, - "end": 2575, - "loc": { - "start": { - "line": 24, - "column": 23 - }, - "end": { - "line": 24, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 2563, - "end": 2564, - "loc": { - "start": { - "line": 24, - "column": 23 - }, - "end": { - "line": 24, - "column": 24 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 2565, - "end": 2575, - "loc": { - "start": { - "line": 24, - "column": 25 - }, - "end": { - "line": 24, - "column": 35 - }, - "identifierName": "ignoreCase" - }, - "name": "ignoreCase" - }, - "computed": false - }, - "consequent": { - "type": "ExpressionStatement", - "start": 2577, - "end": 2584, - "loc": { - "start": { - "line": 24, - "column": 37 - }, - "end": { - "line": 24, - "column": 44 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2577, - "end": 2583, - "loc": { - "start": { - "line": 24, - "column": 37 - }, - "end": { - "line": 24, - "column": 43 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2577, - "end": 2578, - "loc": { - "start": { - "line": 24, - "column": 37 - }, - "end": { - "line": 24, - "column": 38 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "UnaryExpression", - "start": 2581, - "end": 2583, - "loc": { - "start": { - "line": 24, - "column": 41 - }, - "end": { - "line": 24, - "column": 43 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2582, - "end": 2583, - "loc": { - "start": { - "line": 24, - "column": 42 - }, - "end": { - "line": 24, - "column": 43 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - "alternate": { - "type": "IfStatement", - "start": 2589, - "end": 2711, - "loc": { - "start": { - "line": 24, - "column": 49 - }, - "end": { - "line": 26, - "column": 7 - } - }, - "test": { - "type": "CallExpression", - "start": 2593, - "end": 2671, - "loc": { - "start": { - "line": 24, - "column": 53 - }, - "end": { - "line": 24, - "column": 131 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2593, - "end": 2606, - "loc": { - "start": { - "line": 24, - "column": 53 - }, - "end": { - "line": 24, - "column": 66 - } - }, - "object": { - "type": "RegExpLiteral", - "start": 2593, - "end": 2601, - "loc": { - "start": { - "line": 24, - "column": 53 - }, - "end": { - "line": 24, - "column": 61 - } - }, - "extra": { - "raw": "/[a-z]/i" - }, - "pattern": "[a-z]", - "flags": "i" - }, - "property": { - "type": "Identifier", - "start": 2602, - "end": 2606, - "loc": { - "start": { - "line": 24, - "column": 62 - }, - "end": { - "line": 24, - "column": 66 - }, - "identifierName": "test" - }, - "name": "test" - }, - "computed": false - }, - "arguments": [ - { - "type": "CallExpression", - "start": 2607, - "end": 2670, - "loc": { - "start": { - "line": 24, - "column": 67 - }, - "end": { - "line": 24, - "column": 130 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2607, - "end": 2623, - "loc": { - "start": { - "line": 24, - "column": 67 - }, - "end": { - "line": 24, - "column": 83 - } - }, - "object": { - "type": "MemberExpression", - "start": 2607, - "end": 2615, - "loc": { - "start": { - "line": 24, - "column": 67 - }, - "end": { - "line": 24, - "column": 75 - } - }, - "object": { - "type": "Identifier", - "start": 2607, - "end": 2608, - "loc": { - "start": { - "line": 24, - "column": 67 - }, - "end": { - "line": 24, - "column": 68 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 2609, - "end": 2615, - "loc": { - "start": { - "line": 24, - "column": 69 - }, - "end": { - "line": 24, - "column": 75 - }, - "identifierName": "source" - }, - "name": "source" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2616, - "end": 2623, - "loc": { - "start": { - "line": 24, - "column": 76 - }, - "end": { - "line": 24, - "column": 83 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 2624, - "end": 2665, - "loc": { - "start": { - "line": 24, - "column": 84 - }, - "end": { - "line": 24, - "column": 125 - } - }, - "extra": { - "raw": "/\\\\u[\\da-f]{4}|\\\\x[\\da-f]{2}|\\\\[^UXux]/gi" - }, - "pattern": "\\\\u[\\da-f]{4}|\\\\x[\\da-f]{2}|\\\\[^UXux]", - "flags": "gi" - }, - { - "type": "StringLiteral", - "start": 2667, - "end": 2669, - "loc": { - "start": { - "line": 24, - "column": 127 - }, - "end": { - "line": 24, - "column": 129 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - } - ] - }, - "consequent": { - "type": "BlockStatement", - "start": 2673, - "end": 2711, - "loc": { - "start": { - "line": 24, - "column": 133 - }, - "end": { - "line": 26, - "column": 7 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 2683, - "end": 2690, - "loc": { - "start": { - "line": 25, - "column": 8 - }, - "end": { - "line": 25, - "column": 15 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2683, - "end": 2689, - "loc": { - "start": { - "line": 25, - "column": 8 - }, - "end": { - "line": 25, - "column": 14 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2683, - "end": 2684, - "loc": { - "start": { - "line": 25, - "column": 8 - }, - "end": { - "line": 25, - "column": 9 - }, - "identifierName": "s" - }, - "name": "s" - }, - "right": { - "type": "UnaryExpression", - "start": 2687, - "end": 2689, - "loc": { - "start": { - "line": 25, - "column": 12 - }, - "end": { - "line": 25, - "column": 14 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2688, - "end": 2689, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 25, - "column": 14 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 2690, - "end": 2697, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 22 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2690, - "end": 2696, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 21 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2690, - "end": 2691, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 16 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "UnaryExpression", - "start": 2694, - "end": 2696, - "loc": { - "start": { - "line": 25, - "column": 19 - }, - "end": { - "line": 25, - "column": 21 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 2695, - "end": 2696, - "loc": { - "start": { - "line": 25, - "column": 20 - }, - "end": { - "line": 25, - "column": 21 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "BreakStatement", - "start": 2697, - "end": 2703, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 28 - } - }, - "label": null - } - ], - "directives": [] - }, - "alternate": null - } - } - ], - "directives": [] - } - }, - { - "type": "ForStatement", - "start": 2717, - "end": 2914, - "loc": { - "start": { - "line": 27, - "column": 5 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 2722, - "end": 2801, - "loc": { - "start": { - "line": 27, - "column": 10 - }, - "end": { - "line": 27, - "column": 89 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2726, - "end": 2772, - "loc": { - "start": { - "line": 27, - "column": 14 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "id": { - "type": "Identifier", - "start": 2726, - "end": 2727, - "loc": { - "start": { - "line": 27, - "column": 14 - }, - "end": { - "line": 27, - "column": 15 - }, - "identifierName": "r" - }, - "name": "r" - }, - "init": { - "type": "ObjectExpression", - "start": 2730, - "end": 2772, - "loc": { - "start": { - "line": 27, - "column": 18 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 2732, - "end": 2736, - "loc": { - "start": { - "line": 27, - "column": 20 - }, - "end": { - "line": 27, - "column": 24 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2732, - "end": 2733, - "loc": { - "start": { - "line": 27, - "column": 20 - }, - "end": { - "line": 27, - "column": 21 - }, - "identifierName": "b" - }, - "name": "b" - }, - "value": { - "type": "NumericLiteral", - "start": 2735, - "end": 2736, - "loc": { - "start": { - "line": 27, - "column": 23 - }, - "end": { - "line": 27, - "column": 24 - } - }, - "extra": { - "rawValue": 8, - "raw": "8" - }, - "value": 8 - } - }, - { - "type": "ObjectProperty", - "start": 2738, - "end": 2742, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 30 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2738, - "end": 2739, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 27 - }, - "identifierName": "t" - }, - "name": "t" - }, - "value": { - "type": "NumericLiteral", - "start": 2741, - "end": 2742, - "loc": { - "start": { - "line": 27, - "column": 29 - }, - "end": { - "line": 27, - "column": 30 - } - }, - "extra": { - "rawValue": 9, - "raw": "9" - }, - "value": 9 - } - }, - { - "type": "ObjectProperty", - "start": 2744, - "end": 2749, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 27, - "column": 37 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2744, - "end": 2745, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 27, - "column": 33 - }, - "identifierName": "n" - }, - "name": "n" - }, - "value": { - "type": "NumericLiteral", - "start": 2747, - "end": 2749, - "loc": { - "start": { - "line": 27, - "column": 35 - }, - "end": { - "line": 27, - "column": 37 - } - }, - "extra": { - "rawValue": 10, - "raw": "10" - }, - "value": 10 - } - }, - { - "type": "ObjectProperty", - "start": 2751, - "end": 2756, - "loc": { - "start": { - "line": 27, - "column": 39 - }, - "end": { - "line": 27, - "column": 44 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2751, - "end": 2752, - "loc": { - "start": { - "line": 27, - "column": 39 - }, - "end": { - "line": 27, - "column": 40 - }, - "identifierName": "v" - }, - "name": "v" - }, - "value": { - "type": "NumericLiteral", - "start": 2754, - "end": 2756, - "loc": { - "start": { - "line": 27, - "column": 42 - }, - "end": { - "line": 27, - "column": 44 - } - }, - "extra": { - "rawValue": 11, - "raw": "11" - }, - "value": 11 - } - }, - { - "type": "ObjectProperty", - "start": 2758, - "end": 2763, - "loc": { - "start": { - "line": 27, - "column": 46 - }, - "end": { - "line": 27, - "column": 51 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2758, - "end": 2759, - "loc": { - "start": { - "line": 27, - "column": 46 - }, - "end": { - "line": 27, - "column": 47 - }, - "identifierName": "f" - }, - "name": "f" - }, - "value": { - "type": "NumericLiteral", - "start": 2761, - "end": 2763, - "loc": { - "start": { - "line": 27, - "column": 49 - }, - "end": { - "line": 27, - "column": 51 - } - }, - "extra": { - "rawValue": 12, - "raw": "12" - }, - "value": 12 - } - }, - { - "type": "ObjectProperty", - "start": 2765, - "end": 2770, - "loc": { - "start": { - "line": 27, - "column": 53 - }, - "end": { - "line": 27, - "column": 58 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 2765, - "end": 2766, - "loc": { - "start": { - "line": 27, - "column": 53 - }, - "end": { - "line": 27, - "column": 54 - }, - "identifierName": "r" - }, - "name": "r" - }, - "value": { - "type": "NumericLiteral", - "start": 2768, - "end": 2770, - "loc": { - "start": { - "line": 27, - "column": 56 - }, - "end": { - "line": 27, - "column": 58 - } - }, - "extra": { - "rawValue": 13, - "raw": "13" - }, - "value": 13 - } - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 2774, - "end": 2780, - "loc": { - "start": { - "line": 27, - "column": 62 - }, - "end": { - "line": 27, - "column": 68 - } - }, - "id": { - "type": "Identifier", - "start": 2774, - "end": 2775, - "loc": { - "start": { - "line": 27, - "column": 62 - }, - "end": { - "line": 27, - "column": 63 - }, - "identifierName": "n" - }, - "name": "n" - }, - "init": { - "type": "ArrayExpression", - "start": 2778, - "end": 2780, - "loc": { - "start": { - "line": 27, - "column": 66 - }, - "end": { - "line": 27, - "column": 68 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 2782, - "end": 2787, - "loc": { - "start": { - "line": 27, - "column": 70 - }, - "end": { - "line": 27, - "column": 75 - } - }, - "id": { - "type": "Identifier", - "start": 2782, - "end": 2783, - "loc": { - "start": { - "line": 27, - "column": 70 - }, - "end": { - "line": 27, - "column": 71 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "NumericLiteral", - "start": 2786, - "end": 2787, - "loc": { - "start": { - "line": 27, - "column": 74 - }, - "end": { - "line": 27, - "column": 75 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 2789, - "end": 2801, - "loc": { - "start": { - "line": 27, - "column": 77 - }, - "end": { - "line": 27, - "column": 89 - } - }, - "id": { - "type": "Identifier", - "start": 2789, - "end": 2790, - "loc": { - "start": { - "line": 27, - "column": 77 - }, - "end": { - "line": 27, - "column": 78 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "MemberExpression", - "start": 2793, - "end": 2801, - "loc": { - "start": { - "line": 27, - "column": 81 - }, - "end": { - "line": 27, - "column": 89 - } - }, - "object": { - "type": "Identifier", - "start": 2793, - "end": 2794, - "loc": { - "start": { - "line": 27, - "column": 81 - }, - "end": { - "line": 27, - "column": 82 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2795, - "end": 2801, - "loc": { - "start": { - "line": 27, - "column": 83 - }, - "end": { - "line": 27, - "column": 89 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 2803, - "end": 2808, - "loc": { - "start": { - "line": 27, - "column": 91 - }, - "end": { - "line": 27, - "column": 96 - } - }, - "left": { - "type": "Identifier", - "start": 2803, - "end": 2804, - "loc": { - "start": { - "line": 27, - "column": 91 - }, - "end": { - "line": 27, - "column": 92 - }, - "identifierName": "p" - }, - "name": "p" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 2807, - "end": 2808, - "loc": { - "start": { - "line": 27, - "column": 95 - }, - "end": { - "line": 27, - "column": 96 - }, - "identifierName": "d" - }, - "name": "d" - } - }, - "update": { - "type": "UpdateExpression", - "start": 2810, - "end": 2813, - "loc": { - "start": { - "line": 27, - "column": 98 - }, - "end": { - "line": 27, - "column": 101 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 2812, - "end": 2813, - "loc": { - "start": { - "line": 27, - "column": 100 - }, - "end": { - "line": 27, - "column": 101 - }, - "identifierName": "p" - }, - "name": "p" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 2815, - "end": 2914, - "loc": { - "start": { - "line": 27, - "column": 103 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 2823, - "end": 2832, - "loc": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 15 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2823, - "end": 2831, - "loc": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 14 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 2823, - "end": 2824, - "loc": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 7 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "MemberExpression", - "start": 2827, - "end": 2831, - "loc": { - "start": { - "line": 28, - "column": 10 - }, - "end": { - "line": 28, - "column": 14 - } - }, - "object": { - "type": "Identifier", - "start": 2827, - "end": 2828, - "loc": { - "start": { - "line": 28, - "column": 10 - }, - "end": { - "line": 28, - "column": 11 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 2829, - "end": 2830, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 13 - }, - "identifierName": "p" - }, - "name": "p" - }, - "computed": true - } - } - }, - { - "type": "IfStatement", - "start": 2832, - "end": 2881, - "loc": { - "start": { - "line": 28, - "column": 15 - }, - "end": { - "line": 28, - "column": 64 - } - }, - "test": { - "type": "LogicalExpression", - "start": 2836, - "end": 2859, - "loc": { - "start": { - "line": 28, - "column": 19 - }, - "end": { - "line": 28, - "column": 42 - } - }, - "left": { - "type": "MemberExpression", - "start": 2836, - "end": 2844, - "loc": { - "start": { - "line": 28, - "column": 19 - }, - "end": { - "line": 28, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 2836, - "end": 2837, - "loc": { - "start": { - "line": 28, - "column": 19 - }, - "end": { - "line": 28, - "column": 20 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 2838, - "end": 2844, - "loc": { - "start": { - "line": 28, - "column": 21 - }, - "end": { - "line": 28, - "column": 27 - }, - "identifierName": "global" - }, - "name": "global" - }, - "computed": false - }, - "operator": "||", - "right": { - "type": "MemberExpression", - "start": 2848, - "end": 2859, - "loc": { - "start": { - "line": 28, - "column": 31 - }, - "end": { - "line": 28, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 2848, - "end": 2849, - "loc": { - "start": { - "line": 28, - "column": 31 - }, - "end": { - "line": 28, - "column": 32 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 2850, - "end": 2859, - "loc": { - "start": { - "line": 28, - "column": 33 - }, - "end": { - "line": 28, - "column": 42 - }, - "identifierName": "multiline" - }, - "name": "multiline" - }, - "computed": false - } - }, - "consequent": { - "type": "ThrowStatement", - "start": 2861, - "end": 2881, - "loc": { - "start": { - "line": 28, - "column": 44 - }, - "end": { - "line": 28, - "column": 64 - } - }, - "argument": { - "type": "CallExpression", - "start": 2867, - "end": 2880, - "loc": { - "start": { - "line": 28, - "column": 50 - }, - "end": { - "line": 28, - "column": 63 - } - }, - "callee": { - "type": "Identifier", - "start": 2867, - "end": 2872, - "loc": { - "start": { - "line": 28, - "column": 50 - }, - "end": { - "line": 28, - "column": 55 - }, - "identifierName": "Error" - }, - "name": "Error" - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 2873, - "end": 2879, - "loc": { - "start": { - "line": 28, - "column": 56 - }, - "end": { - "line": 28, - "column": 62 - } - }, - "left": { - "type": "StringLiteral", - "start": 2873, - "end": 2875, - "loc": { - "start": { - "line": 28, - "column": 56 - }, - "end": { - "line": 28, - "column": 58 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 2878, - "end": 2879, - "loc": { - "start": { - "line": 28, - "column": 61 - }, - "end": { - "line": 28, - "column": 62 - }, - "identifierName": "g" - }, - "name": "g" - } - } - ] - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 2881, - "end": 2908, - "loc": { - "start": { - "line": 28, - "column": 64 - }, - "end": { - "line": 28, - "column": 91 - } - }, - "expression": { - "type": "CallExpression", - "start": 2881, - "end": 2907, - "loc": { - "start": { - "line": 28, - "column": 64 - }, - "end": { - "line": 28, - "column": 90 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2881, - "end": 2887, - "loc": { - "start": { - "line": 28, - "column": 64 - }, - "end": { - "line": 28, - "column": 70 - } - }, - "object": { - "type": "Identifier", - "start": 2881, - "end": 2882, - "loc": { - "start": { - "line": 28, - "column": 64 - }, - "end": { - "line": 28, - "column": 65 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 2883, - "end": 2887, - "loc": { - "start": { - "line": 28, - "column": 66 - }, - "end": { - "line": 28, - "column": 70 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 2888, - "end": 2906, - "loc": { - "start": { - "line": 28, - "column": 71 - }, - "end": { - "line": 28, - "column": 89 - } - }, - "left": { - "type": "BinaryExpression", - "start": 2888, - "end": 2900, - "loc": { - "start": { - "line": 28, - "column": 71 - }, - "end": { - "line": 28, - "column": 83 - } - }, - "left": { - "type": "StringLiteral", - "start": 2888, - "end": 2893, - "loc": { - "start": { - "line": 28, - "column": 71 - }, - "end": { - "line": 28, - "column": 76 - } - }, - "extra": { - "rawValue": "(?:", - "raw": "\"(?:\"" - }, - "value": "(?:" - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 2896, - "end": 2900, - "loc": { - "start": { - "line": 28, - "column": 79 - }, - "end": { - "line": 28, - "column": 83 - } - }, - "callee": { - "type": "Identifier", - "start": 2896, - "end": 2897, - "loc": { - "start": { - "line": 28, - "column": 79 - }, - "end": { - "line": 28, - "column": 80 - }, - "identifierName": "y" - }, - "name": "y" - }, - "arguments": [ - { - "type": "Identifier", - "start": 2898, - "end": 2899, - "loc": { - "start": { - "line": 28, - "column": 81 - }, - "end": { - "line": 28, - "column": 82 - }, - "identifierName": "g" - }, - "name": "g" - } - ] - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 2903, - "end": 2906, - "loc": { - "start": { - "line": 28, - "column": 86 - }, - "end": { - "line": 28, - "column": 89 - } - }, - "extra": { - "rawValue": ")", - "raw": "\")\"" - }, - "value": ")" - } - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "ReturnStatement", - "start": 2914, - "end": 2957, - "loc": { - "start": { - "line": 29, - "column": 5 - }, - "end": { - "line": 29, - "column": 48 - } - }, - "argument": { - "type": "CallExpression", - "start": 2921, - "end": 2956, - "loc": { - "start": { - "line": 29, - "column": 12 - }, - "end": { - "line": 29, - "column": 47 - } - }, - "callee": { - "type": "Identifier", - "start": 2921, - "end": 2927, - "loc": { - "start": { - "line": 29, - "column": 12 - }, - "end": { - "line": 29, - "column": 18 - }, - "identifierName": "RegExp" - }, - "name": "RegExp" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 2928, - "end": 2939, - "loc": { - "start": { - "line": 29, - "column": 19 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2928, - "end": 2934, - "loc": { - "start": { - "line": 29, - "column": 19 - }, - "end": { - "line": 29, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 2928, - "end": 2929, - "loc": { - "start": { - "line": 29, - "column": 19 - }, - "end": { - "line": 29, - "column": 20 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 2930, - "end": 2934, - "loc": { - "start": { - "line": 29, - "column": 21 - }, - "end": { - "line": 29, - "column": 25 - }, - "identifierName": "join" - }, - "name": "join" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2935, - "end": 2938, - "loc": { - "start": { - "line": 29, - "column": 26 - }, - "end": { - "line": 29, - "column": 29 - } - }, - "extra": { - "rawValue": "|", - "raw": "\"|\"" - }, - "value": "|" - } - ] - }, - { - "type": "ConditionalExpression", - "start": 2941, - "end": 2955, - "loc": { - "start": { - "line": 29, - "column": 32 - }, - "end": { - "line": 29, - "column": 46 - } - }, - "test": { - "type": "Identifier", - "start": 2941, - "end": 2942, - "loc": { - "start": { - "line": 29, - "column": 32 - }, - "end": { - "line": 29, - "column": 33 - }, - "identifierName": "l" - }, - "name": "l" - }, - "consequent": { - "type": "StringLiteral", - "start": 2945, - "end": 2949, - "loc": { - "start": { - "line": 29, - "column": 36 - }, - "end": { - "line": 29, - "column": 40 - } - }, - "extra": { - "rawValue": "gi", - "raw": "\"gi\"" - }, - "value": "gi" - }, - "alternate": { - "type": "StringLiteral", - "start": 2952, - "end": 2955, - "loc": { - "start": { - "line": 29, - "column": 43 - }, - "end": { - "line": 29, - "column": 46 - } - }, - "extra": { - "rawValue": "g", - "raw": "\"g\"" - }, - "value": "g" - } - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 2961, - "end": 3782, - "loc": { - "start": { - "line": 30, - "column": 3 - }, - "end": { - "line": 41, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 2970, - "end": 2971, - "loc": { - "start": { - "line": 30, - "column": 12 - }, - "end": { - "line": 30, - "column": 13 - }, - "identifierName": "M" - }, - "name": "M" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 2972, - "end": 2973, - "loc": { - "start": { - "line": 30, - "column": 14 - }, - "end": { - "line": 30, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 2975, - "end": 3782, - "loc": { - "start": { - "line": 30, - "column": 17 - }, - "end": { - "line": 41, - "column": 3 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 2981, - "end": 3418, - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 35, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 2990, - "end": 2991, - "loc": { - "start": { - "line": 31, - "column": 13 - }, - "end": { - "line": 31, - "column": 14 - }, - "identifierName": "m" - }, - "name": "m" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 2992, - "end": 2993, - "loc": { - "start": { - "line": 31, - "column": 15 - }, - "end": { - "line": 31, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 2995, - "end": 3418, - "loc": { - "start": { - "line": 31, - "column": 18 - }, - "end": { - "line": 35, - "column": 5 - } - }, - "body": [ - { - "type": "SwitchStatement", - "start": 3003, - "end": 3412, - "loc": { - "start": { - "line": 32, - "column": 6 - }, - "end": { - "line": 34, - "column": 169 - } - }, - "discriminant": { - "type": "MemberExpression", - "start": 3011, - "end": 3021, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 3011, - "end": 3012, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3013, - "end": 3021, - "loc": { - "start": { - "line": 32, - "column": 16 - }, - "end": { - "line": 32, - "column": 24 - }, - "identifierName": "nodeType" - }, - "name": "nodeType" - }, - "computed": false - }, - "cases": [ - { - "type": "SwitchCase", - "start": 3024, - "end": 3228, - "loc": { - "start": { - "line": 32, - "column": 27 - }, - "end": { - "line": 33, - "column": 196 - } - }, - "consequent": [ - { - "type": "IfStatement", - "start": 3042, - "end": 3073, - "loc": { - "start": { - "line": 33, - "column": 10 - }, - "end": { - "line": 33, - "column": 41 - } - }, - "test": { - "type": "CallExpression", - "start": 3046, - "end": 3065, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 33 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3046, - "end": 3052, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 3046, - "end": 3047, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 15 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 3048, - "end": 3052, - "loc": { - "start": { - "line": 33, - "column": 16 - }, - "end": { - "line": 33, - "column": 20 - }, - "identifierName": "test" - }, - "name": "test" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3053, - "end": 3064, - "loc": { - "start": { - "line": 33, - "column": 21 - }, - "end": { - "line": 33, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 3053, - "end": 3054, - "loc": { - "start": { - "line": 33, - "column": 21 - }, - "end": { - "line": 33, - "column": 22 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3055, - "end": 3064, - "loc": { - "start": { - "line": 33, - "column": 23 - }, - "end": { - "line": 33, - "column": 32 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - } - ] - }, - "consequent": { - "type": "BreakStatement", - "start": 3067, - "end": 3073, - "loc": { - "start": { - "line": 33, - "column": 35 - }, - "end": { - "line": 33, - "column": 41 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "ForStatement", - "start": 3073, - "end": 3127, - "loc": { - "start": { - "line": 33, - "column": 41 - }, - "end": { - "line": 33, - "column": 95 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 3078, - "end": 3098, - "loc": { - "start": { - "line": 33, - "column": 46 - }, - "end": { - "line": 33, - "column": 66 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3082, - "end": 3098, - "loc": { - "start": { - "line": 33, - "column": 50 - }, - "end": { - "line": 33, - "column": 66 - } - }, - "id": { - "type": "Identifier", - "start": 3082, - "end": 3083, - "loc": { - "start": { - "line": 33, - "column": 50 - }, - "end": { - "line": 33, - "column": 51 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "MemberExpression", - "start": 3086, - "end": 3098, - "loc": { - "start": { - "line": 33, - "column": 54 - }, - "end": { - "line": 33, - "column": 66 - } - }, - "object": { - "type": "Identifier", - "start": 3086, - "end": 3087, - "loc": { - "start": { - "line": 33, - "column": 54 - }, - "end": { - "line": 33, - "column": 55 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3088, - "end": 3098, - "loc": { - "start": { - "line": 33, - "column": 56 - }, - "end": { - "line": 33, - "column": 66 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "Identifier", - "start": 3100, - "end": 3101, - "loc": { - "start": { - "line": 33, - "column": 68 - }, - "end": { - "line": 33, - "column": 69 - }, - "identifierName": "g" - }, - "name": "g" - }, - "update": { - "type": "AssignmentExpression", - "start": 3103, - "end": 3120, - "loc": { - "start": { - "line": 33, - "column": 71 - }, - "end": { - "line": 33, - "column": 88 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3103, - "end": 3104, - "loc": { - "start": { - "line": 33, - "column": 71 - }, - "end": { - "line": 33, - "column": 72 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "MemberExpression", - "start": 3107, - "end": 3120, - "loc": { - "start": { - "line": 33, - "column": 75 - }, - "end": { - "line": 33, - "column": 88 - } - }, - "object": { - "type": "Identifier", - "start": 3107, - "end": 3108, - "loc": { - "start": { - "line": 33, - "column": 75 - }, - "end": { - "line": 33, - "column": 76 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 3109, - "end": 3120, - "loc": { - "start": { - "line": 33, - "column": 77 - }, - "end": { - "line": 33, - "column": 88 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 3122, - "end": 3127, - "loc": { - "start": { - "line": 33, - "column": 90 - }, - "end": { - "line": 33, - "column": 95 - } - }, - "expression": { - "type": "CallExpression", - "start": 3122, - "end": 3126, - "loc": { - "start": { - "line": 33, - "column": 90 - }, - "end": { - "line": 33, - "column": 94 - } - }, - "callee": { - "type": "Identifier", - "start": 3122, - "end": 3123, - "loc": { - "start": { - "line": 33, - "column": 90 - }, - "end": { - "line": 33, - "column": 91 - }, - "identifierName": "m" - }, - "name": "m" - }, - "arguments": [ - { - "type": "Identifier", - "start": 3124, - "end": 3125, - "loc": { - "start": { - "line": 33, - "column": 92 - }, - "end": { - "line": 33, - "column": 93 - }, - "identifierName": "g" - }, - "name": "g" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 3127, - "end": 3142, - "loc": { - "start": { - "line": 33, - "column": 95 - }, - "end": { - "line": 33, - "column": 110 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3127, - "end": 3141, - "loc": { - "start": { - "line": 33, - "column": 95 - }, - "end": { - "line": 33, - "column": 109 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3127, - "end": 3128, - "loc": { - "start": { - "line": 33, - "column": 95 - }, - "end": { - "line": 33, - "column": 96 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "MemberExpression", - "start": 3131, - "end": 3141, - "loc": { - "start": { - "line": 33, - "column": 99 - }, - "end": { - "line": 33, - "column": 109 - } - }, - "object": { - "type": "Identifier", - "start": 3131, - "end": 3132, - "loc": { - "start": { - "line": 33, - "column": 99 - }, - "end": { - "line": 33, - "column": 100 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3133, - "end": 3141, - "loc": { - "start": { - "line": 33, - "column": 101 - }, - "end": { - "line": 33, - "column": 109 - }, - "identifierName": "nodeName" - }, - "name": "nodeName" - }, - "computed": false - } - } - }, - { - "type": "IfStatement", - "start": 3142, - "end": 3222, - "loc": { - "start": { - "line": 33, - "column": 110 - }, - "end": { - "line": 33, - "column": 190 - } - }, - "test": { - "type": "LogicalExpression", - "start": 3146, - "end": 3170, - "loc": { - "start": { - "line": 33, - "column": 114 - }, - "end": { - "line": 33, - "column": 138 - } - }, - "left": { - "type": "BinaryExpression", - "start": 3146, - "end": 3156, - "loc": { - "start": { - "line": 33, - "column": 114 - }, - "end": { - "line": 33, - "column": 124 - } - }, - "left": { - "type": "StringLiteral", - "start": 3146, - "end": 3150, - "loc": { - "start": { - "line": 33, - "column": 114 - }, - "end": { - "line": 33, - "column": 118 - } - }, - "extra": { - "rawValue": "BR", - "raw": "\"BR\"" - }, - "value": "BR" - }, - "operator": "===", - "right": { - "type": "Identifier", - "start": 3155, - "end": 3156, - "loc": { - "start": { - "line": 33, - "column": 123 - }, - "end": { - "line": 33, - "column": 124 - }, - "identifierName": "g" - }, - "name": "g" - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 3160, - "end": 3170, - "loc": { - "start": { - "line": 33, - "column": 128 - }, - "end": { - "line": 33, - "column": 138 - } - }, - "left": { - "type": "StringLiteral", - "start": 3160, - "end": 3164, - "loc": { - "start": { - "line": 33, - "column": 128 - }, - "end": { - "line": 33, - "column": 132 - } - }, - "extra": { - "rawValue": "LI", - "raw": "\"LI\"" - }, - "value": "LI" - }, - "operator": "===", - "right": { - "type": "Identifier", - "start": 3169, - "end": 3170, - "loc": { - "start": { - "line": 33, - "column": 137 - }, - "end": { - "line": 33, - "column": 138 - }, - "identifierName": "g" - }, - "name": "g" - } - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 3172, - "end": 3222, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 190 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 3172, - "end": 3221, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 189 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 3172, - "end": 3183, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 151 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3172, - "end": 3176, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 144 - } - }, - "object": { - "type": "Identifier", - "start": 3172, - "end": 3173, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 141 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 3174, - "end": 3175, - "loc": { - "start": { - "line": 33, - "column": 142 - }, - "end": { - "line": 33, - "column": 143 - }, - "identifierName": "s" - }, - "name": "s" - }, - "computed": true - }, - "right": { - "type": "StringLiteral", - "start": 3179, - "end": 3183, - "loc": { - "start": { - "line": 33, - "column": 147 - }, - "end": { - "line": 33, - "column": 151 - } - }, - "extra": { - "rawValue": "\n", - "raw": "\"\\n\"" - }, - "value": "\n" - } - }, - { - "type": "AssignmentExpression", - "start": 3185, - "end": 3200, - "loc": { - "start": { - "line": 33, - "column": 153 - }, - "end": { - "line": 33, - "column": 168 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3185, - "end": 3194, - "loc": { - "start": { - "line": 33, - "column": 153 - }, - "end": { - "line": 33, - "column": 162 - } - }, - "object": { - "type": "Identifier", - "start": 3185, - "end": 3186, - "loc": { - "start": { - "line": 33, - "column": 153 - }, - "end": { - "line": 33, - "column": 154 - }, - "identifierName": "t" - }, - "name": "t" - }, - "property": { - "type": "BinaryExpression", - "start": 3187, - "end": 3193, - "loc": { - "start": { - "line": 33, - "column": 155 - }, - "end": { - "line": 33, - "column": 161 - } - }, - "left": { - "type": "Identifier", - "start": 3187, - "end": 3188, - "loc": { - "start": { - "line": 33, - "column": 155 - }, - "end": { - "line": 33, - "column": 156 - }, - "identifierName": "s" - }, - "name": "s" - }, - "operator": "<<", - "right": { - "type": "NumericLiteral", - "start": 3192, - "end": 3193, - "loc": { - "start": { - "line": 33, - "column": 160 - }, - "end": { - "line": 33, - "column": 161 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - }, - "right": { - "type": "UpdateExpression", - "start": 3197, - "end": 3200, - "loc": { - "start": { - "line": 33, - "column": 165 - }, - "end": { - "line": 33, - "column": 168 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 3197, - "end": 3198, - "loc": { - "start": { - "line": 33, - "column": 165 - }, - "end": { - "line": 33, - "column": 166 - }, - "identifierName": "y" - }, - "name": "y" - } - } - }, - { - "type": "AssignmentExpression", - "start": 3202, - "end": 3221, - "loc": { - "start": { - "line": 33, - "column": 170 - }, - "end": { - "line": 33, - "column": 189 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3202, - "end": 3217, - "loc": { - "start": { - "line": 33, - "column": 170 - }, - "end": { - "line": 33, - "column": 185 - } - }, - "object": { - "type": "Identifier", - "start": 3202, - "end": 3203, - "loc": { - "start": { - "line": 33, - "column": 170 - }, - "end": { - "line": 33, - "column": 171 - }, - "identifierName": "t" - }, - "name": "t" - }, - "property": { - "type": "BinaryExpression", - "start": 3204, - "end": 3216, - "loc": { - "start": { - "line": 33, - "column": 172 - }, - "end": { - "line": 33, - "column": 184 - } - }, - "left": { - "type": "BinaryExpression", - "start": 3204, - "end": 3212, - "loc": { - "start": { - "line": 33, - "column": 172 - }, - "end": { - "line": 33, - "column": 180 - } - }, - "left": { - "type": "UpdateExpression", - "start": 3204, - "end": 3207, - "loc": { - "start": { - "line": 33, - "column": 172 - }, - "end": { - "line": 33, - "column": 175 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 3204, - "end": 3205, - "loc": { - "start": { - "line": 33, - "column": 172 - }, - "end": { - "line": 33, - "column": 173 - }, - "identifierName": "s" - }, - "name": "s" - } - }, - "operator": "<<", - "right": { - "type": "NumericLiteral", - "start": 3211, - "end": 3212, - "loc": { - "start": { - "line": 33, - "column": 179 - }, - "end": { - "line": 33, - "column": 180 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 3215, - "end": 3216, - "loc": { - "start": { - "line": 33, - "column": 183 - }, - "end": { - "line": 33, - "column": 184 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 3220, - "end": 3221, - "loc": { - "start": { - "line": 33, - "column": 188 - }, - "end": { - "line": 33, - "column": 189 - }, - "identifierName": "a" - }, - "name": "a" - } - } - ] - } - }, - "alternate": null - }, - { - "type": "BreakStatement", - "start": 3222, - "end": 3228, - "loc": { - "start": { - "line": 33, - "column": 190 - }, - "end": { - "line": 33, - "column": 196 - } - }, - "label": null - } - ], - "test": { - "type": "NumericLiteral", - "start": 3029, - "end": 3030, - "loc": { - "start": { - "line": 32, - "column": 32 - }, - "end": { - "line": 32, - "column": 33 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - { - "type": "SwitchCase", - "start": 3228, - "end": 3235, - "loc": { - "start": { - "line": 33, - "column": 196 - }, - "end": { - "line": 33, - "column": 203 - } - }, - "consequent": [], - "test": { - "type": "NumericLiteral", - "start": 3233, - "end": 3234, - "loc": { - "start": { - "line": 33, - "column": 201 - }, - "end": { - "line": 33, - "column": 202 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - }, - { - "type": "SwitchCase", - "start": 3235, - "end": 3411, - "loc": { - "start": { - "line": 33, - "column": 203 - }, - "end": { - "line": 34, - "column": 168 - } - }, - "consequent": [ - { - "type": "ExpressionStatement", - "start": 3253, - "end": 3411, - "loc": { - "start": { - "line": 34, - "column": 10 - }, - "end": { - "line": 34, - "column": 168 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 3253, - "end": 3410, - "loc": { - "start": { - "line": 34, - "column": 10 - }, - "end": { - "line": 34, - "column": 167 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 3253, - "end": 3268, - "loc": { - "start": { - "line": 34, - "column": 10 - }, - "end": { - "line": 34, - "column": 25 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3253, - "end": 3254, - "loc": { - "start": { - "line": 34, - "column": 10 - }, - "end": { - "line": 34, - "column": 11 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "MemberExpression", - "start": 3257, - "end": 3268, - "loc": { - "start": { - "line": 34, - "column": 14 - }, - "end": { - "line": 34, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 3257, - "end": 3258, - "loc": { - "start": { - "line": 34, - "column": 14 - }, - "end": { - "line": 34, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3259, - "end": 3268, - "loc": { - "start": { - "line": 34, - "column": 16 - }, - "end": { - "line": 34, - "column": 25 - }, - "identifierName": "nodeValue" - }, - "name": "nodeValue" - }, - "computed": false - } - }, - { - "type": "LogicalExpression", - "start": 3270, - "end": 3410, - "loc": { - "start": { - "line": 34, - "column": 27 - }, - "end": { - "line": 34, - "column": 167 - } - }, - "left": { - "type": "MemberExpression", - "start": 3270, - "end": 3278, - "loc": { - "start": { - "line": 34, - "column": 27 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 3270, - "end": 3271, - "loc": { - "start": { - "line": 34, - "column": 27 - }, - "end": { - "line": 34, - "column": 28 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 3272, - "end": 3278, - "loc": { - "start": { - "line": 34, - "column": 29 - }, - "end": { - "line": 34, - "column": 35 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "SequenceExpression", - "start": 3283, - "end": 3409, - "loc": { - "start": { - "line": 34, - "column": 40 - }, - "end": { - "line": 34, - "column": 166 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 3283, - "end": 3348, - "loc": { - "start": { - "line": 34, - "column": 40 - }, - "end": { - "line": 34, - "column": 105 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3283, - "end": 3284, - "loc": { - "start": { - "line": 34, - "column": 40 - }, - "end": { - "line": 34, - "column": 41 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "ConditionalExpression", - "start": 3287, - "end": 3348, - "loc": { - "start": { - "line": 34, - "column": 44 - }, - "end": { - "line": 34, - "column": 105 - } - }, - "test": { - "type": "Identifier", - "start": 3287, - "end": 3288, - "loc": { - "start": { - "line": 34, - "column": 44 - }, - "end": { - "line": 34, - "column": 45 - }, - "identifierName": "p" - }, - "name": "p" - }, - "consequent": { - "type": "CallExpression", - "start": 3291, - "end": 3316, - "loc": { - "start": { - "line": 34, - "column": 48 - }, - "end": { - "line": 34, - "column": 73 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3291, - "end": 3300, - "loc": { - "start": { - "line": 34, - "column": 48 - }, - "end": { - "line": 34, - "column": 57 - } - }, - "object": { - "type": "Identifier", - "start": 3291, - "end": 3292, - "loc": { - "start": { - "line": 34, - "column": 48 - }, - "end": { - "line": 34, - "column": 49 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 3293, - "end": 3300, - "loc": { - "start": { - "line": 34, - "column": 50 - }, - "end": { - "line": 34, - "column": 57 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 3301, - "end": 3309, - "loc": { - "start": { - "line": 34, - "column": 58 - }, - "end": { - "line": 34, - "column": 66 - } - }, - "extra": { - "raw": "/\\r\\n?/g" - }, - "pattern": "\\r\\n?", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 3311, - "end": 3315, - "loc": { - "start": { - "line": 34, - "column": 68 - }, - "end": { - "line": 34, - "column": 72 - } - }, - "extra": { - "rawValue": "\n", - "raw": "\"\\n\"" - }, - "value": "\n" - } - ] - }, - "alternate": { - "type": "CallExpression", - "start": 3319, - "end": 3348, - "loc": { - "start": { - "line": 34, - "column": 76 - }, - "end": { - "line": 34, - "column": 105 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3319, - "end": 3328, - "loc": { - "start": { - "line": 34, - "column": 76 - }, - "end": { - "line": 34, - "column": 85 - } - }, - "object": { - "type": "Identifier", - "start": 3319, - "end": 3320, - "loc": { - "start": { - "line": 34, - "column": 76 - }, - "end": { - "line": 34, - "column": 77 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 3321, - "end": 3328, - "loc": { - "start": { - "line": 34, - "column": 78 - }, - "end": { - "line": 34, - "column": 85 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 3329, - "end": 3342, - "loc": { - "start": { - "line": 34, - "column": 86 - }, - "end": { - "line": 34, - "column": 99 - } - }, - "extra": { - "raw": "/[\\t\\n\\r ]+/g" - }, - "pattern": "[\\t\\n\\r ]+", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 3344, - "end": 3347, - "loc": { - "start": { - "line": 34, - "column": 101 - }, - "end": { - "line": 34, - "column": 104 - } - }, - "extra": { - "rawValue": " ", - "raw": "\" \"" - }, - "value": " " - } - ] - } - } - }, - { - "type": "AssignmentExpression", - "start": 3350, - "end": 3358, - "loc": { - "start": { - "line": 34, - "column": 107 - }, - "end": { - "line": 34, - "column": 115 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3350, - "end": 3354, - "loc": { - "start": { - "line": 34, - "column": 107 - }, - "end": { - "line": 34, - "column": 111 - } - }, - "object": { - "type": "Identifier", - "start": 3350, - "end": 3351, - "loc": { - "start": { - "line": 34, - "column": 107 - }, - "end": { - "line": 34, - "column": 108 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 3352, - "end": 3353, - "loc": { - "start": { - "line": 34, - "column": 109 - }, - "end": { - "line": 34, - "column": 110 - }, - "identifierName": "s" - }, - "name": "s" - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 3357, - "end": 3358, - "loc": { - "start": { - "line": 34, - "column": 114 - }, - "end": { - "line": 34, - "column": 115 - }, - "identifierName": "g" - }, - "name": "g" - } - }, - { - "type": "AssignmentExpression", - "start": 3360, - "end": 3373, - "loc": { - "start": { - "line": 34, - "column": 117 - }, - "end": { - "line": 34, - "column": 130 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3360, - "end": 3369, - "loc": { - "start": { - "line": 34, - "column": 117 - }, - "end": { - "line": 34, - "column": 126 - } - }, - "object": { - "type": "Identifier", - "start": 3360, - "end": 3361, - "loc": { - "start": { - "line": 34, - "column": 117 - }, - "end": { - "line": 34, - "column": 118 - }, - "identifierName": "t" - }, - "name": "t" - }, - "property": { - "type": "BinaryExpression", - "start": 3362, - "end": 3368, - "loc": { - "start": { - "line": 34, - "column": 119 - }, - "end": { - "line": 34, - "column": 125 - } - }, - "left": { - "type": "Identifier", - "start": 3362, - "end": 3363, - "loc": { - "start": { - "line": 34, - "column": 119 - }, - "end": { - "line": 34, - "column": 120 - }, - "identifierName": "s" - }, - "name": "s" - }, - "operator": "<<", - "right": { - "type": "NumericLiteral", - "start": 3367, - "end": 3368, - "loc": { - "start": { - "line": 34, - "column": 124 - }, - "end": { - "line": 34, - "column": 125 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 3372, - "end": 3373, - "loc": { - "start": { - "line": 34, - "column": 129 - }, - "end": { - "line": 34, - "column": 130 - }, - "identifierName": "y" - }, - "name": "y" - } - }, - { - "type": "AssignmentExpression", - "start": 3375, - "end": 3388, - "loc": { - "start": { - "line": 34, - "column": 132 - }, - "end": { - "line": 34, - "column": 145 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 3375, - "end": 3376, - "loc": { - "start": { - "line": 34, - "column": 132 - }, - "end": { - "line": 34, - "column": 133 - }, - "identifierName": "y" - }, - "name": "y" - }, - "right": { - "type": "MemberExpression", - "start": 3380, - "end": 3388, - "loc": { - "start": { - "line": 34, - "column": 137 - }, - "end": { - "line": 34, - "column": 145 - } - }, - "object": { - "type": "Identifier", - "start": 3380, - "end": 3381, - "loc": { - "start": { - "line": 34, - "column": 137 - }, - "end": { - "line": 34, - "column": 138 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 3382, - "end": 3388, - "loc": { - "start": { - "line": 34, - "column": 139 - }, - "end": { - "line": 34, - "column": 145 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - { - "type": "AssignmentExpression", - "start": 3390, - "end": 3409, - "loc": { - "start": { - "line": 34, - "column": 147 - }, - "end": { - "line": 34, - "column": 166 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3390, - "end": 3405, - "loc": { - "start": { - "line": 34, - "column": 147 - }, - "end": { - "line": 34, - "column": 162 - } - }, - "object": { - "type": "Identifier", - "start": 3390, - "end": 3391, - "loc": { - "start": { - "line": 34, - "column": 147 - }, - "end": { - "line": 34, - "column": 148 - }, - "identifierName": "t" - }, - "name": "t" - }, - "property": { - "type": "BinaryExpression", - "start": 3392, - "end": 3404, - "loc": { - "start": { - "line": 34, - "column": 149 - }, - "end": { - "line": 34, - "column": 161 - } - }, - "left": { - "type": "BinaryExpression", - "start": 3392, - "end": 3400, - "loc": { - "start": { - "line": 34, - "column": 149 - }, - "end": { - "line": 34, - "column": 157 - } - }, - "left": { - "type": "UpdateExpression", - "start": 3392, - "end": 3395, - "loc": { - "start": { - "line": 34, - "column": 149 - }, - "end": { - "line": 34, - "column": 152 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 3392, - "end": 3393, - "loc": { - "start": { - "line": 34, - "column": 149 - }, - "end": { - "line": 34, - "column": 150 - }, - "identifierName": "s" - }, - "name": "s" - } - }, - "operator": "<<", - "right": { - "type": "NumericLiteral", - "start": 3399, - "end": 3400, - "loc": { - "start": { - "line": 34, - "column": 156 - }, - "end": { - "line": 34, - "column": 157 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 3403, - "end": 3404, - "loc": { - "start": { - "line": 34, - "column": 160 - }, - "end": { - "line": 34, - "column": 161 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 3408, - "end": 3409, - "loc": { - "start": { - "line": 34, - "column": 165 - }, - "end": { - "line": 34, - "column": 166 - }, - "identifierName": "a" - }, - "name": "a" - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 3282 - } - } - } - ] - } - } - ], - "test": { - "type": "NumericLiteral", - "start": 3240, - "end": 3241, - "loc": { - "start": { - "line": 33, - "column": 208 - }, - "end": { - "line": 33, - "column": 209 - } - }, - "extra": { - "rawValue": 4, - "raw": "4" - }, - "value": 4 - } - } - ] - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 3418, - "end": 3524, - "loc": { - "start": { - "line": 35, - "column": 5 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3422, - "end": 3450, - "loc": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 37 - } - }, - "id": { - "type": "Identifier", - "start": 3422, - "end": 3423, - "loc": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "RegExpLiteral", - "start": 3426, - "end": 3450, - "loc": { - "start": { - "line": 35, - "column": 13 - }, - "end": { - "line": 35, - "column": 37 - } - }, - "extra": { - "raw": "/(?:^|\\s)nocode(?:\\s|$)/" - }, - "pattern": "(?:^|\\s)nocode(?:\\s|$)", - "flags": "" - } - }, - { - "type": "VariableDeclarator", - "start": 3460, - "end": 3466, - "loc": { - "start": { - "line": 36, - "column": 8 - }, - "end": { - "line": 36, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 3460, - "end": 3461, - "loc": { - "start": { - "line": 36, - "column": 8 - }, - "end": { - "line": 36, - "column": 9 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "ArrayExpression", - "start": 3464, - "end": 3466, - "loc": { - "start": { - "line": 36, - "column": 12 - }, - "end": { - "line": 36, - "column": 14 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 3476, - "end": 3481, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "id": { - "type": "Identifier", - "start": 3476, - "end": 3477, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - }, - "identifierName": "y" - }, - "name": "y" - }, - "init": { - "type": "NumericLiteral", - "start": 3480, - "end": 3481, - "loc": { - "start": { - "line": 37, - "column": 12 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 3491, - "end": 3497, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 3491, - "end": 3492, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 9 - }, - "identifierName": "t" - }, - "name": "t" - }, - "init": { - "type": "ArrayExpression", - "start": 3495, - "end": 3497, - "loc": { - "start": { - "line": 38, - "column": 12 - }, - "end": { - "line": 38, - "column": 14 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 3507, - "end": 3512, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 13 - } - }, - "id": { - "type": "Identifier", - "start": 3507, - "end": 3508, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 9 - }, - "identifierName": "s" - }, - "name": "s" - }, - "init": { - "type": "NumericLiteral", - "start": 3511, - "end": 3512, - "loc": { - "start": { - "line": 39, - "column": 12 - }, - "end": { - "line": 39, - "column": 13 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 3522, - "end": 3523, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - } - }, - "id": { - "type": "Identifier", - "start": 3522, - "end": 3523, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 3524, - "end": 3682, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 168 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 3524, - "end": 3681, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 167 - } - }, - "test": { - "type": "MemberExpression", - "start": 3524, - "end": 3538, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 3524, - "end": 3525, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 11 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3526, - "end": 3538, - "loc": { - "start": { - "line": 40, - "column": 12 - }, - "end": { - "line": 40, - "column": 24 - }, - "identifierName": "currentStyle" - }, - "name": "currentStyle" - }, - "computed": false - }, - "consequent": { - "type": "AssignmentExpression", - "start": 3541, - "end": 3570, - "loc": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 56 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3541, - "end": 3542, - "loc": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "MemberExpression", - "start": 3545, - "end": 3570, - "loc": { - "start": { - "line": 40, - "column": 31 - }, - "end": { - "line": 40, - "column": 56 - } - }, - "object": { - "type": "MemberExpression", - "start": 3545, - "end": 3559, - "loc": { - "start": { - "line": 40, - "column": 31 - }, - "end": { - "line": 40, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 3545, - "end": 3546, - "loc": { - "start": { - "line": 40, - "column": 31 - }, - "end": { - "line": 40, - "column": 32 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3547, - "end": 3559, - "loc": { - "start": { - "line": 40, - "column": 33 - }, - "end": { - "line": 40, - "column": 45 - }, - "identifierName": "currentStyle" - }, - "name": "currentStyle" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3560, - "end": 3570, - "loc": { - "start": { - "line": 40, - "column": 46 - }, - "end": { - "line": 40, - "column": 56 - }, - "identifierName": "whiteSpace" - }, - "name": "whiteSpace" - }, - "computed": false - } - }, - "alternate": { - "type": "LogicalExpression", - "start": 3573, - "end": 3681, - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 167 - } - }, - "left": { - "type": "MemberExpression", - "start": 3573, - "end": 3596, - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 82 - } - }, - "object": { - "type": "Identifier", - "start": 3573, - "end": 3579, - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 65 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 3580, - "end": 3596, - "loc": { - "start": { - "line": 40, - "column": 66 - }, - "end": { - "line": 40, - "column": 82 - }, - "identifierName": "getComputedStyle" - }, - "name": "getComputedStyle" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 3601, - "end": 3680, - "loc": { - "start": { - "line": 40, - "column": 87 - }, - "end": { - "line": 40, - "column": 166 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3601, - "end": 3602, - "loc": { - "start": { - "line": 40, - "column": 87 - }, - "end": { - "line": 40, - "column": 88 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "CallExpression", - "start": 3605, - "end": 3680, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 166 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3605, - "end": 3665, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 151 - } - }, - "object": { - "type": "CallExpression", - "start": 3605, - "end": 3648, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 134 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3605, - "end": 3642, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 128 - } - }, - "object": { - "type": "MemberExpression", - "start": 3605, - "end": 3625, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 111 - } - }, - "object": { - "type": "Identifier", - "start": 3605, - "end": 3613, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 99 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 3614, - "end": 3625, - "loc": { - "start": { - "line": 40, - "column": 100 - }, - "end": { - "line": 40, - "column": 111 - }, - "identifierName": "defaultView" - }, - "name": "defaultView" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3626, - "end": 3642, - "loc": { - "start": { - "line": 40, - "column": 112 - }, - "end": { - "line": 40, - "column": 128 - }, - "identifierName": "getComputedStyle" - }, - "name": "getComputedStyle" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 3643, - "end": 3644, - "loc": { - "start": { - "line": 40, - "column": 129 - }, - "end": { - "line": 40, - "column": 130 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 3646, - "end": 3647, - "loc": { - "start": { - "line": 40, - "column": 132 - }, - "end": { - "line": 40, - "column": 133 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - "property": { - "type": "Identifier", - "start": 3649, - "end": 3665, - "loc": { - "start": { - "line": 40, - "column": 135 - }, - "end": { - "line": 40, - "column": 151 - }, - "identifierName": "getPropertyValue" - }, - "name": "getPropertyValue" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 3666, - "end": 3679, - "loc": { - "start": { - "line": 40, - "column": 152 - }, - "end": { - "line": 40, - "column": 165 - } - }, - "extra": { - "rawValue": "white-space", - "raw": "\"white-space\"" - }, - "value": "white-space" - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 3600 - } - } - } - } - }, - { - "type": "VariableDeclaration", - "start": 3682, - "end": 3723, - "loc": { - "start": { - "line": 40, - "column": 168 - }, - "end": { - "line": 40, - "column": 209 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3686, - "end": 3722, - "loc": { - "start": { - "line": 40, - "column": 172 - }, - "end": { - "line": 40, - "column": 208 - } - }, - "id": { - "type": "Identifier", - "start": 3686, - "end": 3687, - "loc": { - "start": { - "line": 40, - "column": 172 - }, - "end": { - "line": 40, - "column": 173 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "LogicalExpression", - "start": 3690, - "end": 3722, - "loc": { - "start": { - "line": 40, - "column": 176 - }, - "end": { - "line": 40, - "column": 208 - } - }, - "left": { - "type": "Identifier", - "start": 3690, - "end": 3691, - "loc": { - "start": { - "line": 40, - "column": 176 - }, - "end": { - "line": 40, - "column": 177 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 3695, - "end": 3722, - "loc": { - "start": { - "line": 40, - "column": 181 - }, - "end": { - "line": 40, - "column": 208 - } - }, - "left": { - "type": "StringLiteral", - "start": 3695, - "end": 3700, - "loc": { - "start": { - "line": 40, - "column": 181 - }, - "end": { - "line": 40, - "column": 186 - } - }, - "extra": { - "rawValue": "pre", - "raw": "\"pre\"" - }, - "value": "pre" - }, - "operator": "===", - "right": { - "type": "CallExpression", - "start": 3705, - "end": 3722, - "loc": { - "start": { - "line": 40, - "column": 191 - }, - "end": { - "line": 40, - "column": 208 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3705, - "end": 3716, - "loc": { - "start": { - "line": 40, - "column": 191 - }, - "end": { - "line": 40, - "column": 202 - } - }, - "object": { - "type": "Identifier", - "start": 3705, - "end": 3706, - "loc": { - "start": { - "line": 40, - "column": 191 - }, - "end": { - "line": 40, - "column": 192 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 3707, - "end": 3716, - "loc": { - "start": { - "line": 40, - "column": 193 - }, - "end": { - "line": 40, - "column": 202 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 3717, - "end": 3718, - "loc": { - "start": { - "line": 40, - "column": 203 - }, - "end": { - "line": 40, - "column": 204 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "NumericLiteral", - "start": 3720, - "end": 3721, - "loc": { - "start": { - "line": 40, - "column": 206 - }, - "end": { - "line": 40, - "column": 207 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - ] - } - } - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 3723, - "end": 3728, - "loc": { - "start": { - "line": 40, - "column": 209 - }, - "end": { - "line": 40, - "column": 214 - } - }, - "expression": { - "type": "CallExpression", - "start": 3723, - "end": 3727, - "loc": { - "start": { - "line": 40, - "column": 209 - }, - "end": { - "line": 40, - "column": 213 - } - }, - "callee": { - "type": "Identifier", - "start": 3723, - "end": 3724, - "loc": { - "start": { - "line": 40, - "column": 209 - }, - "end": { - "line": 40, - "column": 210 - }, - "identifierName": "m" - }, - "name": "m" - }, - "arguments": [ - { - "type": "Identifier", - "start": 3725, - "end": 3726, - "loc": { - "start": { - "line": 40, - "column": 211 - }, - "end": { - "line": 40, - "column": 212 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 3728, - "end": 3778, - "loc": { - "start": { - "line": 40, - "column": 214 - }, - "end": { - "line": 40, - "column": 264 - } - }, - "argument": { - "type": "ObjectExpression", - "start": 3735, - "end": 3777, - "loc": { - "start": { - "line": 40, - "column": 221 - }, - "end": { - "line": 40, - "column": 263 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 3737, - "end": 3769, - "loc": { - "start": { - "line": 40, - "column": 223 - }, - "end": { - "line": 40, - "column": 255 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 3737, - "end": 3738, - "loc": { - "start": { - "line": 40, - "column": 223 - }, - "end": { - "line": 40, - "column": 224 - }, - "identifierName": "a" - }, - "name": "a" - }, - "value": { - "type": "CallExpression", - "start": 3740, - "end": 3769, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 255 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3740, - "end": 3758, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 244 - } - }, - "object": { - "type": "CallExpression", - "start": 3740, - "end": 3750, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 236 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3740, - "end": 3746, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 232 - } - }, - "object": { - "type": "Identifier", - "start": 3740, - "end": 3741, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 227 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 3742, - "end": 3746, - "loc": { - "start": { - "line": 40, - "column": 228 - }, - "end": { - "line": 40, - "column": 232 - }, - "identifierName": "join" - }, - "name": "join" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 3747, - "end": 3749, - "loc": { - "start": { - "line": 40, - "column": 233 - }, - "end": { - "line": 40, - "column": 235 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - }, - "property": { - "type": "Identifier", - "start": 3751, - "end": 3758, - "loc": { - "start": { - "line": 40, - "column": 237 - }, - "end": { - "line": 40, - "column": 244 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 3759, - "end": 3764, - "loc": { - "start": { - "line": 40, - "column": 245 - }, - "end": { - "line": 40, - "column": 250 - } - }, - "extra": { - "raw": "/\\n$/" - }, - "pattern": "\\n$", - "flags": "" - }, - { - "type": "StringLiteral", - "start": 3766, - "end": 3768, - "loc": { - "start": { - "line": 40, - "column": 252 - }, - "end": { - "line": 40, - "column": 254 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - } - }, - { - "type": "ObjectProperty", - "start": 3771, - "end": 3775, - "loc": { - "start": { - "line": 40, - "column": 257 - }, - "end": { - "line": 40, - "column": 261 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 3771, - "end": 3772, - "loc": { - "start": { - "line": 40, - "column": 257 - }, - "end": { - "line": 40, - "column": 258 - }, - "identifierName": "c" - }, - "name": "c" - }, - "value": { - "type": "Identifier", - "start": 3774, - "end": 3775, - "loc": { - "start": { - "line": 40, - "column": 260 - }, - "end": { - "line": 40, - "column": 261 - }, - "identifierName": "t" - }, - "name": "t" - } - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 3782, - "end": 3869, - "loc": { - "start": { - "line": 41, - "column": 3 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 3791, - "end": 3792, - "loc": { - "start": { - "line": 41, - "column": 12 - }, - "end": { - "line": 41, - "column": 13 - }, - "identifierName": "B" - }, - "name": "B" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3793, - "end": 3794, - "loc": { - "start": { - "line": 41, - "column": 14 - }, - "end": { - "line": 41, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 3796, - "end": 3797, - "loc": { - "start": { - "line": 41, - "column": 17 - }, - "end": { - "line": 41, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - }, - { - "type": "Identifier", - "start": 3799, - "end": 3800, - "loc": { - "start": { - "line": 41, - "column": 20 - }, - "end": { - "line": 41, - "column": 21 - }, - "identifierName": "e" - }, - "name": "e" - }, - { - "type": "Identifier", - "start": 3802, - "end": 3803, - "loc": { - "start": { - "line": 41, - "column": 23 - }, - "end": { - "line": 41, - "column": 24 - }, - "identifierName": "h" - }, - "name": "h" - } - ], - "body": { - "type": "BlockStatement", - "start": 3805, - "end": 3869, - "loc": { - "start": { - "line": 41, - "column": 26 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 3811, - "end": 3865, - "loc": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 58 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 3811, - "end": 3864, - "loc": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 57 - } - }, - "left": { - "type": "Identifier", - "start": 3811, - "end": 3812, - "loc": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 5 - }, - "identifierName": "m" - }, - "name": "m" - }, - "operator": "&&", - "right": { - "type": "SequenceExpression", - "start": 3817, - "end": 3863, - "loc": { - "start": { - "line": 42, - "column": 10 - }, - "end": { - "line": 42, - "column": 56 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 3817, - "end": 3835, - "loc": { - "start": { - "line": 42, - "column": 10 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3817, - "end": 3818, - "loc": { - "start": { - "line": 42, - "column": 10 - }, - "end": { - "line": 42, - "column": 11 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "ObjectExpression", - "start": 3821, - "end": 3835, - "loc": { - "start": { - "line": 42, - "column": 14 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 3823, - "end": 3827, - "loc": { - "start": { - "line": 42, - "column": 16 - }, - "end": { - "line": 42, - "column": 20 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 3823, - "end": 3824, - "loc": { - "start": { - "line": 42, - "column": 16 - }, - "end": { - "line": 42, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - }, - "value": { - "type": "Identifier", - "start": 3826, - "end": 3827, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 20 - }, - "identifierName": "m" - }, - "name": "m" - } - }, - { - "type": "ObjectProperty", - "start": 3829, - "end": 3833, - "loc": { - "start": { - "line": 42, - "column": 22 - }, - "end": { - "line": 42, - "column": 26 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 3829, - "end": 3830, - "loc": { - "start": { - "line": 42, - "column": 22 - }, - "end": { - "line": 42, - "column": 23 - }, - "identifierName": "d" - }, - "name": "d" - }, - "value": { - "type": "Identifier", - "start": 3832, - "end": 3833, - "loc": { - "start": { - "line": 42, - "column": 25 - }, - "end": { - "line": 42, - "column": 26 - }, - "identifierName": "a" - }, - "name": "a" - } - } - ] - } - }, - { - "type": "CallExpression", - "start": 3837, - "end": 3841, - "loc": { - "start": { - "line": 42, - "column": 30 - }, - "end": { - "line": 42, - "column": 34 - } - }, - "callee": { - "type": "Identifier", - "start": 3837, - "end": 3838, - "loc": { - "start": { - "line": 42, - "column": 30 - }, - "end": { - "line": 42, - "column": 31 - }, - "identifierName": "e" - }, - "name": "e" - }, - "arguments": [ - { - "type": "Identifier", - "start": 3839, - "end": 3840, - "loc": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 33 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - }, - { - "type": "CallExpression", - "start": 3843, - "end": 3863, - "loc": { - "start": { - "line": 42, - "column": 36 - }, - "end": { - "line": 42, - "column": 56 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3843, - "end": 3855, - "loc": { - "start": { - "line": 42, - "column": 36 - }, - "end": { - "line": 42, - "column": 48 - } - }, - "object": { - "type": "MemberExpression", - "start": 3843, - "end": 3849, - "loc": { - "start": { - "line": 42, - "column": 36 - }, - "end": { - "line": 42, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 3843, - "end": 3844, - "loc": { - "start": { - "line": 42, - "column": 36 - }, - "end": { - "line": 42, - "column": 37 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 3845, - "end": 3849, - "loc": { - "start": { - "line": 42, - "column": 38 - }, - "end": { - "line": 42, - "column": 42 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3850, - "end": 3855, - "loc": { - "start": { - "line": 42, - "column": 43 - }, - "end": { - "line": 42, - "column": 48 - }, - "identifierName": "apply" - }, - "name": "apply" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 3856, - "end": 3857, - "loc": { - "start": { - "line": 42, - "column": 49 - }, - "end": { - "line": 42, - "column": 50 - }, - "identifierName": "h" - }, - "name": "h" - }, - { - "type": "MemberExpression", - "start": 3859, - "end": 3862, - "loc": { - "start": { - "line": 42, - "column": 52 - }, - "end": { - "line": 42, - "column": 55 - } - }, - "object": { - "type": "Identifier", - "start": 3859, - "end": 3860, - "loc": { - "start": { - "line": 42, - "column": 52 - }, - "end": { - "line": 42, - "column": 53 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3861, - "end": 3862, - "loc": { - "start": { - "line": 42, - "column": 54 - }, - "end": { - "line": 42, - "column": 55 - }, - "identifierName": "e" - }, - "name": "e" - }, - "computed": false - } - ] - } - ], - "extra": { - "parenthesized": true, - "parenStart": 3816 - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 3869, - "end": 5190, - "loc": { - "start": { - "line": 43, - "column": 3 - }, - "end": { - "line": 67, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 3878, - "end": 3879, - "loc": { - "start": { - "line": 43, - "column": 12 - }, - "end": { - "line": 43, - "column": 13 - }, - "identifierName": "x" - }, - "name": "x" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3880, - "end": 3881, - "loc": { - "start": { - "line": 43, - "column": 14 - }, - "end": { - "line": 43, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 3883, - "end": 3884, - "loc": { - "start": { - "line": 43, - "column": 17 - }, - "end": { - "line": 43, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - } - ], - "body": { - "type": "BlockStatement", - "start": 3886, - "end": 5190, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 67, - "column": 3 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 3892, - "end": 4828, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 60, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 3901, - "end": 3902, - "loc": { - "start": { - "line": 44, - "column": 13 - }, - "end": { - "line": 44, - "column": 14 - }, - "identifierName": "e" - }, - "name": "e" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3903, - "end": 3904, - "loc": { - "start": { - "line": 44, - "column": 15 - }, - "end": { - "line": 44, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 3906, - "end": 4828, - "loc": { - "start": { - "line": 44, - "column": 18 - }, - "end": { - "line": 60, - "column": 5 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 3914, - "end": 4814, - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 59, - "column": 7 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 3919, - "end": 4006, - "loc": { - "start": { - "line": 45, - "column": 11 - }, - "end": { - "line": 45, - "column": 98 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3923, - "end": 3930, - "loc": { - "start": { - "line": 45, - "column": 15 - }, - "end": { - "line": 45, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 3923, - "end": 3924, - "loc": { - "start": { - "line": 45, - "column": 15 - }, - "end": { - "line": 45, - "column": 16 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": { - "type": "MemberExpression", - "start": 3927, - "end": 3930, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 3927, - "end": 3928, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 20 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3929, - "end": 3930, - "loc": { - "start": { - "line": 45, - "column": 21 - }, - "end": { - "line": 45, - "column": 22 - }, - "identifierName": "d" - }, - "name": "d" - }, - "computed": false - } - }, - { - "type": "VariableDeclarator", - "start": 3932, - "end": 3946, - "loc": { - "start": { - "line": 45, - "column": 24 - }, - "end": { - "line": 45, - "column": 38 - } - }, - "id": { - "type": "Identifier", - "start": 3932, - "end": 3933, - "loc": { - "start": { - "line": 45, - "column": 24 - }, - "end": { - "line": 45, - "column": 25 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "ArrayExpression", - "start": 3936, - "end": 3946, - "loc": { - "start": { - "line": 45, - "column": 28 - }, - "end": { - "line": 45, - "column": 38 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 3937, - "end": 3938, - "loc": { - "start": { - "line": 45, - "column": 29 - }, - "end": { - "line": 45, - "column": 30 - }, - "identifierName": "l" - }, - "name": "l" - }, - { - "type": "StringLiteral", - "start": 3940, - "end": 3945, - "loc": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 37 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 3948, - "end": 3953, - "loc": { - "start": { - "line": 45, - "column": 40 - }, - "end": { - "line": 45, - "column": 45 - } - }, - "id": { - "type": "Identifier", - "start": 3948, - "end": 3949, - "loc": { - "start": { - "line": 45, - "column": 40 - }, - "end": { - "line": 45, - "column": 41 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "NumericLiteral", - "start": 3952, - "end": 3953, - "loc": { - "start": { - "line": 45, - "column": 44 - }, - "end": { - "line": 45, - "column": 45 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 3955, - "end": 3977, - "loc": { - "start": { - "line": 45, - "column": 47 - }, - "end": { - "line": 45, - "column": 69 - } - }, - "id": { - "type": "Identifier", - "start": 3955, - "end": 3956, - "loc": { - "start": { - "line": 45, - "column": 47 - }, - "end": { - "line": 45, - "column": 48 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "LogicalExpression", - "start": 3959, - "end": 3977, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 69 - } - }, - "left": { - "type": "CallExpression", - "start": 3959, - "end": 3971, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 63 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3959, - "end": 3968, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 60 - } - }, - "object": { - "type": "MemberExpression", - "start": 3959, - "end": 3962, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "object": { - "type": "Identifier", - "start": 3959, - "end": 3960, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 52 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 3961, - "end": 3962, - "loc": { - "start": { - "line": 45, - "column": 53 - }, - "end": { - "line": 45, - "column": 54 - }, - "identifierName": "a" - }, - "name": "a" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3963, - "end": 3968, - "loc": { - "start": { - "line": 45, - "column": 55 - }, - "end": { - "line": 45, - "column": 60 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 3969, - "end": 3970, - "loc": { - "start": { - "line": 45, - "column": 61 - }, - "end": { - "line": 45, - "column": 62 - }, - "identifierName": "y" - }, - "name": "y" - } - ] - }, - "operator": "||", - "right": { - "type": "ArrayExpression", - "start": 3975, - "end": 3977, - "loc": { - "start": { - "line": 45, - "column": 67 - }, - "end": { - "line": 45, - "column": 69 - } - }, - "elements": [] - } - } - }, - { - "type": "VariableDeclarator", - "start": 3979, - "end": 3985, - "loc": { - "start": { - "line": 45, - "column": 71 - }, - "end": { - "line": 45, - "column": 77 - } - }, - "id": { - "type": "Identifier", - "start": 3979, - "end": 3980, - "loc": { - "start": { - "line": 45, - "column": 71 - }, - "end": { - "line": 45, - "column": 72 - }, - "identifierName": "r" - }, - "name": "r" - }, - "init": { - "type": "ObjectExpression", - "start": 3983, - "end": 3985, - "loc": { - "start": { - "line": 45, - "column": 75 - }, - "end": { - "line": 45, - "column": 77 - } - }, - "properties": [] - } - }, - { - "type": "VariableDeclarator", - "start": 3987, - "end": 3992, - "loc": { - "start": { - "line": 45, - "column": 79 - }, - "end": { - "line": 45, - "column": 84 - } - }, - "id": { - "type": "Identifier", - "start": 3987, - "end": 3988, - "loc": { - "start": { - "line": 45, - "column": 79 - }, - "end": { - "line": 45, - "column": 80 - }, - "identifierName": "n" - }, - "name": "n" - }, - "init": { - "type": "NumericLiteral", - "start": 3991, - "end": 3992, - "loc": { - "start": { - "line": 45, - "column": 83 - }, - "end": { - "line": 45, - "column": 84 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 3994, - "end": 4006, - "loc": { - "start": { - "line": 45, - "column": 86 - }, - "end": { - "line": 45, - "column": 98 - } - }, - "id": { - "type": "Identifier", - "start": 3994, - "end": 3995, - "loc": { - "start": { - "line": 45, - "column": 86 - }, - "end": { - "line": 45, - "column": 87 - }, - "identifierName": "z" - }, - "name": "z" - }, - "init": { - "type": "MemberExpression", - "start": 3998, - "end": 4006, - "loc": { - "start": { - "line": 45, - "column": 90 - }, - "end": { - "line": 45, - "column": 98 - } - }, - "object": { - "type": "Identifier", - "start": 3998, - "end": 3999, - "loc": { - "start": { - "line": 45, - "column": 90 - }, - "end": { - "line": 45, - "column": 91 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 4000, - "end": 4006, - "loc": { - "start": { - "line": 45, - "column": 92 - }, - "end": { - "line": 45, - "column": 98 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 4008, - "end": 4013, - "loc": { - "start": { - "line": 45, - "column": 100 - }, - "end": { - "line": 45, - "column": 105 - } - }, - "left": { - "type": "Identifier", - "start": 4008, - "end": 4009, - "loc": { - "start": { - "line": 45, - "column": 100 - }, - "end": { - "line": 45, - "column": 101 - }, - "identifierName": "n" - }, - "name": "n" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 4012, - "end": 4013, - "loc": { - "start": { - "line": 45, - "column": 104 - }, - "end": { - "line": 45, - "column": 105 - }, - "identifierName": "z" - }, - "name": "z" - } - }, - "update": { - "type": "UpdateExpression", - "start": 4015, - "end": 4018, - "loc": { - "start": { - "line": 45, - "column": 107 - }, - "end": { - "line": 45, - "column": 110 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 4017, - "end": 4018, - "loc": { - "start": { - "line": 45, - "column": 109 - }, - "end": { - "line": 45, - "column": 110 - }, - "identifierName": "n" - }, - "name": "n" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 4020, - "end": 4814, - "loc": { - "start": { - "line": 45, - "column": 112 - }, - "end": { - "line": 59, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 4030, - "end": 4104, - "loc": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 49, - "column": 14 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4034, - "end": 4042, - "loc": { - "start": { - "line": 46, - "column": 12 - }, - "end": { - "line": 46, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 4034, - "end": 4035, - "loc": { - "start": { - "line": 46, - "column": 12 - }, - "end": { - "line": 46, - "column": 13 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "MemberExpression", - "start": 4038, - "end": 4042, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 4038, - "end": 4039, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 17 - }, - "identifierName": "g" - }, - "name": "g" - }, - "property": { - "type": "Identifier", - "start": 4040, - "end": 4041, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 19 - }, - "identifierName": "n" - }, - "name": "n" - }, - "computed": true - } - }, - { - "type": "VariableDeclarator", - "start": 4056, - "end": 4064, - "loc": { - "start": { - "line": 47, - "column": 12 - }, - "end": { - "line": 47, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 4056, - "end": 4057, - "loc": { - "start": { - "line": 47, - "column": 12 - }, - "end": { - "line": 47, - "column": 13 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": { - "type": "MemberExpression", - "start": 4060, - "end": 4064, - "loc": { - "start": { - "line": 47, - "column": 16 - }, - "end": { - "line": 47, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 4060, - "end": 4061, - "loc": { - "start": { - "line": 47, - "column": 16 - }, - "end": { - "line": 47, - "column": 17 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "Identifier", - "start": 4062, - "end": 4063, - "loc": { - "start": { - "line": 47, - "column": 18 - }, - "end": { - "line": 47, - "column": 19 - }, - "identifierName": "f" - }, - "name": "f" - }, - "computed": true - } - }, - { - "type": "VariableDeclarator", - "start": 4078, - "end": 4088, - "loc": { - "start": { - "line": 48, - "column": 12 - }, - "end": { - "line": 48, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 4078, - "end": 4079, - "loc": { - "start": { - "line": 48, - "column": 12 - }, - "end": { - "line": 48, - "column": 13 - }, - "identifierName": "o" - }, - "name": "o" - }, - "init": { - "type": "UnaryExpression", - "start": 4082, - "end": 4088, - "loc": { - "start": { - "line": 48, - "column": 16 - }, - "end": { - "line": 48, - "column": 22 - } - }, - "operator": "void", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 4087, - "end": 4088, - "loc": { - "start": { - "line": 48, - "column": 21 - }, - "end": { - "line": 48, - "column": 22 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "VariableDeclarator", - "start": 4102, - "end": 4103, - "loc": { - "start": { - "line": 49, - "column": 12 - }, - "end": { - "line": 49, - "column": 13 - } - }, - "id": { - "type": "Identifier", - "start": 4102, - "end": 4103, - "loc": { - "start": { - "line": 49, - "column": 12 - }, - "end": { - "line": 49, - "column": 13 - }, - "identifierName": "c" - }, - "name": "c" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 4104, - "end": 4501, - "loc": { - "start": { - "line": 49, - "column": 14 - }, - "end": { - "line": 55, - "column": 9 - } - }, - "test": { - "type": "BinaryExpression", - "start": 4108, - "end": 4129, - "loc": { - "start": { - "line": 49, - "column": 18 - }, - "end": { - "line": 49, - "column": 39 - } - }, - "left": { - "type": "UnaryExpression", - "start": 4108, - "end": 4116, - "loc": { - "start": { - "line": 49, - "column": 18 - }, - "end": { - "line": 49, - "column": 26 - } - }, - "operator": "typeof", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 4115, - "end": 4116, - "loc": { - "start": { - "line": 49, - "column": 25 - }, - "end": { - "line": 49, - "column": 26 - }, - "identifierName": "b" - }, - "name": "b" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 4121, - "end": 4129, - "loc": { - "start": { - "line": 49, - "column": 31 - }, - "end": { - "line": 49, - "column": 39 - } - }, - "extra": { - "rawValue": "string", - "raw": "\"string\"" - }, - "value": "string" - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 4131, - "end": 4138, - "loc": { - "start": { - "line": 49, - "column": 41 - }, - "end": { - "line": 49, - "column": 48 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4131, - "end": 4137, - "loc": { - "start": { - "line": 49, - "column": 41 - }, - "end": { - "line": 49, - "column": 47 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4131, - "end": 4132, - "loc": { - "start": { - "line": 49, - "column": 41 - }, - "end": { - "line": 49, - "column": 42 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "UnaryExpression", - "start": 4135, - "end": 4137, - "loc": { - "start": { - "line": 49, - "column": 45 - }, - "end": { - "line": 49, - "column": 47 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 4136, - "end": 4137, - "loc": { - "start": { - "line": 49, - "column": 46 - }, - "end": { - "line": 49, - "column": 47 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - "alternate": { - "type": "BlockStatement", - "start": 4143, - "end": 4501, - "loc": { - "start": { - "line": 49, - "column": 53 - }, - "end": { - "line": 55, - "column": 9 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 4155, - "end": 4178, - "loc": { - "start": { - "line": 50, - "column": 10 - }, - "end": { - "line": 50, - "column": 33 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4159, - "end": 4177, - "loc": { - "start": { - "line": 50, - "column": 14 - }, - "end": { - "line": 50, - "column": 32 - } - }, - "id": { - "type": "Identifier", - "start": 4159, - "end": 4160, - "loc": { - "start": { - "line": 50, - "column": 14 - }, - "end": { - "line": 50, - "column": 15 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "MemberExpression", - "start": 4163, - "end": 4177, - "loc": { - "start": { - "line": 50, - "column": 18 - }, - "end": { - "line": 50, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 4163, - "end": 4164, - "loc": { - "start": { - "line": 50, - "column": 18 - }, - "end": { - "line": 50, - "column": 19 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "CallExpression", - "start": 4165, - "end": 4176, - "loc": { - "start": { - "line": 50, - "column": 20 - }, - "end": { - "line": 50, - "column": 31 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4165, - "end": 4173, - "loc": { - "start": { - "line": 50, - "column": 20 - }, - "end": { - "line": 50, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 4165, - "end": 4166, - "loc": { - "start": { - "line": 50, - "column": 20 - }, - "end": { - "line": 50, - "column": 21 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4167, - "end": 4173, - "loc": { - "start": { - "line": 50, - "column": 22 - }, - "end": { - "line": 50, - "column": 28 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 4174, - "end": 4175, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 50, - "column": 30 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 4178, - "end": 4363, - "loc": { - "start": { - "line": 50, - "column": 33 - }, - "end": { - "line": 54, - "column": 11 - } - }, - "test": { - "type": "Identifier", - "start": 4182, - "end": 4183, - "loc": { - "start": { - "line": 50, - "column": 37 - }, - "end": { - "line": 50, - "column": 38 - }, - "identifierName": "i" - }, - "name": "i" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 4185, - "end": 4213, - "loc": { - "start": { - "line": 50, - "column": 40 - }, - "end": { - "line": 50, - "column": 68 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 4185, - "end": 4212, - "loc": { - "start": { - "line": 50, - "column": 40 - }, - "end": { - "line": 50, - "column": 67 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 4185, - "end": 4202, - "loc": { - "start": { - "line": 50, - "column": 40 - }, - "end": { - "line": 50, - "column": 57 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4185, - "end": 4186, - "loc": { - "start": { - "line": 50, - "column": 40 - }, - "end": { - "line": 50, - "column": 41 - }, - "identifierName": "o" - }, - "name": "o" - }, - "right": { - "type": "CallExpression", - "start": 4189, - "end": 4202, - "loc": { - "start": { - "line": 50, - "column": 44 - }, - "end": { - "line": 50, - "column": 57 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4189, - "end": 4196, - "loc": { - "start": { - "line": 50, - "column": 44 - }, - "end": { - "line": 50, - "column": 51 - } - }, - "object": { - "type": "Identifier", - "start": 4189, - "end": 4190, - "loc": { - "start": { - "line": 50, - "column": 44 - }, - "end": { - "line": 50, - "column": 45 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4191, - "end": 4196, - "loc": { - "start": { - "line": 50, - "column": 46 - }, - "end": { - "line": 50, - "column": 51 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4197, - "end": 4201, - "loc": { - "start": { - "line": 50, - "column": 52 - }, - "end": { - "line": 50, - "column": 56 - } - }, - "object": { - "type": "Identifier", - "start": 4197, - "end": 4198, - "loc": { - "start": { - "line": 50, - "column": 52 - }, - "end": { - "line": 50, - "column": 53 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 4199, - "end": 4200, - "loc": { - "start": { - "line": 50, - "column": 54 - }, - "end": { - "line": 50, - "column": 55 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - ] - } - }, - { - "type": "AssignmentExpression", - "start": 4204, - "end": 4212, - "loc": { - "start": { - "line": 50, - "column": 59 - }, - "end": { - "line": 50, - "column": 67 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4204, - "end": 4205, - "loc": { - "start": { - "line": 50, - "column": 59 - }, - "end": { - "line": 50, - "column": 60 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "MemberExpression", - "start": 4208, - "end": 4212, - "loc": { - "start": { - "line": 50, - "column": 63 - }, - "end": { - "line": 50, - "column": 67 - } - }, - "object": { - "type": "Identifier", - "start": 4208, - "end": 4209, - "loc": { - "start": { - "line": 50, - "column": 63 - }, - "end": { - "line": 50, - "column": 64 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 4210, - "end": 4211, - "loc": { - "start": { - "line": 50, - "column": 65 - }, - "end": { - "line": 50, - "column": 66 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - } - ] - } - }, - "alternate": { - "type": "BlockStatement", - "start": 4218, - "end": 4363, - "loc": { - "start": { - "line": 50, - "column": 73 - }, - "end": { - "line": 54, - "column": 11 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 4232, - "end": 4334, - "loc": { - "start": { - "line": 51, - "column": 12 - }, - "end": { - "line": 53, - "column": 13 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 4237, - "end": 4242, - "loc": { - "start": { - "line": 51, - "column": 17 - }, - "end": { - "line": 51, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4237, - "end": 4238, - "loc": { - "start": { - "line": 51, - "column": 17 - }, - "end": { - "line": 51, - "column": 18 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "NumericLiteral", - "start": 4241, - "end": 4242, - "loc": { - "start": { - "line": 51, - "column": 21 - }, - "end": { - "line": 51, - "column": 22 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "test": { - "type": "BinaryExpression", - "start": 4244, - "end": 4249, - "loc": { - "start": { - "line": 51, - "column": 24 - }, - "end": { - "line": 51, - "column": 29 - } - }, - "left": { - "type": "Identifier", - "start": 4244, - "end": 4245, - "loc": { - "start": { - "line": 51, - "column": 24 - }, - "end": { - "line": 51, - "column": 25 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 4248, - "end": 4249, - "loc": { - "start": { - "line": 51, - "column": 28 - }, - "end": { - "line": 51, - "column": 29 - }, - "identifierName": "t" - }, - "name": "t" - } - }, - "update": { - "type": "UpdateExpression", - "start": 4251, - "end": 4254, - "loc": { - "start": { - "line": 51, - "column": 31 - }, - "end": { - "line": 51, - "column": 34 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 4253, - "end": 4254, - "loc": { - "start": { - "line": 51, - "column": 33 - }, - "end": { - "line": 51, - "column": 34 - }, - "identifierName": "c" - }, - "name": "c" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "IfStatement", - "start": 4256, - "end": 4334, - "loc": { - "start": { - "line": 51, - "column": 36 - }, - "end": { - "line": 53, - "column": 13 - } - }, - "test": { - "type": "SequenceExpression", - "start": 4260, - "end": 4287, - "loc": { - "start": { - "line": 51, - "column": 40 - }, - "end": { - "line": 51, - "column": 67 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 4260, - "end": 4268, - "loc": { - "start": { - "line": 51, - "column": 40 - }, - "end": { - "line": 51, - "column": 48 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4260, - "end": 4261, - "loc": { - "start": { - "line": 51, - "column": 40 - }, - "end": { - "line": 51, - "column": 41 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "MemberExpression", - "start": 4264, - "end": 4268, - "loc": { - "start": { - "line": 51, - "column": 44 - }, - "end": { - "line": 51, - "column": 48 - } - }, - "object": { - "type": "Identifier", - "start": 4264, - "end": 4265, - "loc": { - "start": { - "line": 51, - "column": 44 - }, - "end": { - "line": 51, - "column": 45 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 4266, - "end": 4267, - "loc": { - "start": { - "line": 51, - "column": 46 - }, - "end": { - "line": 51, - "column": 47 - }, - "identifierName": "c" - }, - "name": "c" - }, - "computed": true - } - }, - { - "type": "AssignmentExpression", - "start": 4270, - "end": 4287, - "loc": { - "start": { - "line": 51, - "column": 50 - }, - "end": { - "line": 51, - "column": 67 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4270, - "end": 4271, - "loc": { - "start": { - "line": 51, - "column": 50 - }, - "end": { - "line": 51, - "column": 51 - }, - "identifierName": "o" - }, - "name": "o" - }, - "right": { - "type": "CallExpression", - "start": 4274, - "end": 4287, - "loc": { - "start": { - "line": 51, - "column": 54 - }, - "end": { - "line": 51, - "column": 67 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4274, - "end": 4281, - "loc": { - "start": { - "line": 51, - "column": 54 - }, - "end": { - "line": 51, - "column": 61 - } - }, - "object": { - "type": "Identifier", - "start": 4274, - "end": 4275, - "loc": { - "start": { - "line": 51, - "column": 54 - }, - "end": { - "line": 51, - "column": 55 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4276, - "end": 4281, - "loc": { - "start": { - "line": 51, - "column": 56 - }, - "end": { - "line": 51, - "column": 61 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4282, - "end": 4286, - "loc": { - "start": { - "line": 51, - "column": 62 - }, - "end": { - "line": 51, - "column": 66 - } - }, - "object": { - "type": "Identifier", - "start": 4282, - "end": 4283, - "loc": { - "start": { - "line": 51, - "column": 62 - }, - "end": { - "line": 51, - "column": 63 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 4284, - "end": 4285, - "loc": { - "start": { - "line": 51, - "column": 64 - }, - "end": { - "line": 51, - "column": 65 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - ] - } - } - ] - }, - "consequent": { - "type": "BlockStatement", - "start": 4289, - "end": 4334, - "loc": { - "start": { - "line": 51, - "column": 69 - }, - "end": { - "line": 53, - "column": 13 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 4305, - "end": 4314, - "loc": { - "start": { - "line": 52, - "column": 14 - }, - "end": { - "line": 52, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4305, - "end": 4313, - "loc": { - "start": { - "line": 52, - "column": 14 - }, - "end": { - "line": 52, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4305, - "end": 4306, - "loc": { - "start": { - "line": 52, - "column": 14 - }, - "end": { - "line": 52, - "column": 15 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "MemberExpression", - "start": 4309, - "end": 4313, - "loc": { - "start": { - "line": 52, - "column": 18 - }, - "end": { - "line": 52, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 4309, - "end": 4310, - "loc": { - "start": { - "line": 52, - "column": 18 - }, - "end": { - "line": 52, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "property": { - "type": "NumericLiteral", - "start": 4311, - "end": 4312, - "loc": { - "start": { - "line": 52, - "column": 20 - }, - "end": { - "line": 52, - "column": 21 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - } - } - }, - { - "type": "BreakStatement", - "start": 4314, - "end": 4320, - "loc": { - "start": { - "line": 52, - "column": 23 - }, - "end": { - "line": 52, - "column": 29 - } - }, - "label": null - } - ], - "directives": [] - }, - "alternate": null - } - }, - { - "type": "ExpressionStatement", - "start": 4334, - "end": 4351, - "loc": { - "start": { - "line": 53, - "column": 13 - }, - "end": { - "line": 53, - "column": 30 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 4334, - "end": 4350, - "loc": { - "start": { - "line": 53, - "column": 13 - }, - "end": { - "line": 53, - "column": 29 - } - }, - "left": { - "type": "Identifier", - "start": 4334, - "end": 4335, - "loc": { - "start": { - "line": 53, - "column": 13 - }, - "end": { - "line": 53, - "column": 14 - }, - "identifierName": "o" - }, - "name": "o" - }, - "operator": "||", - "right": { - "type": "AssignmentExpression", - "start": 4340, - "end": 4349, - "loc": { - "start": { - "line": 53, - "column": 19 - }, - "end": { - "line": 53, - "column": 28 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4340, - "end": 4341, - "loc": { - "start": { - "line": 53, - "column": 19 - }, - "end": { - "line": 53, - "column": 20 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "StringLiteral", - "start": 4344, - "end": 4349, - "loc": { - "start": { - "line": 53, - "column": 23 - }, - "end": { - "line": 53, - "column": 28 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - "extra": { - "parenthesized": true, - "parenStart": 4339 - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "IfStatement", - "start": 4363, - "end": 4475, - "loc": { - "start": { - "line": 54, - "column": 11 - }, - "end": { - "line": 54, - "column": 123 - } - }, - "test": { - "type": "LogicalExpression", - "start": 4367, - "end": 4455, - "loc": { - "start": { - "line": 54, - "column": 15 - }, - "end": { - "line": 54, - "column": 103 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 4368, - "end": 4418, - "loc": { - "start": { - "line": 54, - "column": 16 - }, - "end": { - "line": 54, - "column": 66 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4368, - "end": 4369, - "loc": { - "start": { - "line": 54, - "column": 16 - }, - "end": { - "line": 54, - "column": 17 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "LogicalExpression", - "start": 4372, - "end": 4418, - "loc": { - "start": { - "line": 54, - "column": 20 - }, - "end": { - "line": 54, - "column": 66 - } - }, - "left": { - "type": "BinaryExpression", - "start": 4372, - "end": 4385, - "loc": { - "start": { - "line": 54, - "column": 20 - }, - "end": { - "line": 54, - "column": 33 - } - }, - "left": { - "type": "MemberExpression", - "start": 4372, - "end": 4380, - "loc": { - "start": { - "line": 54, - "column": 20 - }, - "end": { - "line": 54, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 4372, - "end": 4373, - "loc": { - "start": { - "line": 54, - "column": 20 - }, - "end": { - "line": 54, - "column": 21 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 4374, - "end": 4380, - "loc": { - "start": { - "line": 54, - "column": 22 - }, - "end": { - "line": 54, - "column": 28 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 4384, - "end": 4385, - "loc": { - "start": { - "line": 54, - "column": 32 - }, - "end": { - "line": 54, - "column": 33 - } - }, - "extra": { - "rawValue": 5, - "raw": "5" - }, - "value": 5 - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 4389, - "end": 4418, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 66 - } - }, - "left": { - "type": "StringLiteral", - "start": 4389, - "end": 4396, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 44 - } - }, - "extra": { - "rawValue": "lang-", - "raw": "\"lang-\"" - }, - "value": "lang-" - }, - "operator": "===", - "right": { - "type": "CallExpression", - "start": 4401, - "end": 4418, - "loc": { - "start": { - "line": 54, - "column": 49 - }, - "end": { - "line": 54, - "column": 66 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4401, - "end": 4412, - "loc": { - "start": { - "line": 54, - "column": 49 - }, - "end": { - "line": 54, - "column": 60 - } - }, - "object": { - "type": "Identifier", - "start": 4401, - "end": 4402, - "loc": { - "start": { - "line": 54, - "column": 49 - }, - "end": { - "line": 54, - "column": 50 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 4403, - "end": 4412, - "loc": { - "start": { - "line": 54, - "column": 51 - }, - "end": { - "line": 54, - "column": 60 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 4413, - "end": 4414, - "loc": { - "start": { - "line": 54, - "column": 61 - }, - "end": { - "line": 54, - "column": 62 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "NumericLiteral", - "start": 4416, - "end": 4417, - "loc": { - "start": { - "line": 54, - "column": 64 - }, - "end": { - "line": 54, - "column": 65 - } - }, - "extra": { - "rawValue": 5, - "raw": "5" - }, - "value": 5 - } - ] - } - } - }, - "extra": { - "parenthesized": true, - "parenStart": 4367 - } - }, - "operator": "&&", - "right": { - "type": "UnaryExpression", - "start": 4423, - "end": 4455, - "loc": { - "start": { - "line": 54, - "column": 71 - }, - "end": { - "line": 54, - "column": 103 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "LogicalExpression", - "start": 4425, - "end": 4454, - "loc": { - "start": { - "line": 54, - "column": 73 - }, - "end": { - "line": 54, - "column": 102 - } - }, - "left": { - "type": "Identifier", - "start": 4425, - "end": 4426, - "loc": { - "start": { - "line": 54, - "column": 73 - }, - "end": { - "line": 54, - "column": 74 - }, - "identifierName": "o" - }, - "name": "o" - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 4430, - "end": 4454, - "loc": { - "start": { - "line": 54, - "column": 78 - }, - "end": { - "line": 54, - "column": 102 - } - }, - "left": { - "type": "UnaryExpression", - "start": 4430, - "end": 4441, - "loc": { - "start": { - "line": 54, - "column": 78 - }, - "end": { - "line": 54, - "column": 89 - } - }, - "operator": "typeof", - "prefix": true, - "argument": { - "type": "MemberExpression", - "start": 4437, - "end": 4441, - "loc": { - "start": { - "line": 54, - "column": 85 - }, - "end": { - "line": 54, - "column": 89 - } - }, - "object": { - "type": "Identifier", - "start": 4437, - "end": 4438, - "loc": { - "start": { - "line": 54, - "column": 85 - }, - "end": { - "line": 54, - "column": 86 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "NumericLiteral", - "start": 4439, - "end": 4440, - "loc": { - "start": { - "line": 54, - "column": 87 - }, - "end": { - "line": 54, - "column": 88 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 4446, - "end": 4454, - "loc": { - "start": { - "line": 54, - "column": 94 - }, - "end": { - "line": 54, - "column": 102 - } - }, - "extra": { - "rawValue": "string", - "raw": "\"string\"" - }, - "value": "string" - } - }, - "extra": { - "parenthesized": true, - "parenStart": 4424 - } - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 4457, - "end": 4475, - "loc": { - "start": { - "line": 54, - "column": 105 - }, - "end": { - "line": 54, - "column": 123 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 4457, - "end": 4474, - "loc": { - "start": { - "line": 54, - "column": 105 - }, - "end": { - "line": 54, - "column": 122 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 4457, - "end": 4463, - "loc": { - "start": { - "line": 54, - "column": 105 - }, - "end": { - "line": 54, - "column": 111 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4457, - "end": 4458, - "loc": { - "start": { - "line": 54, - "column": 105 - }, - "end": { - "line": 54, - "column": 106 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "UnaryExpression", - "start": 4461, - "end": 4463, - "loc": { - "start": { - "line": 54, - "column": 109 - }, - "end": { - "line": 54, - "column": 111 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 4462, - "end": 4463, - "loc": { - "start": { - "line": 54, - "column": 110 - }, - "end": { - "line": 54, - "column": 111 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "AssignmentExpression", - "start": 4465, - "end": 4474, - "loc": { - "start": { - "line": 54, - "column": 113 - }, - "end": { - "line": 54, - "column": 122 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4465, - "end": 4466, - "loc": { - "start": { - "line": 54, - "column": 113 - }, - "end": { - "line": 54, - "column": 114 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "StringLiteral", - "start": 4469, - "end": 4474, - "loc": { - "start": { - "line": 54, - "column": 117 - }, - "end": { - "line": 54, - "column": 122 - } - }, - "extra": { - "rawValue": "src", - "raw": "\"src\"" - }, - "value": "src" - } - } - ] - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 4475, - "end": 4491, - "loc": { - "start": { - "line": 54, - "column": 123 - }, - "end": { - "line": 54, - "column": 139 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 4475, - "end": 4490, - "loc": { - "start": { - "line": 54, - "column": 123 - }, - "end": { - "line": 54, - "column": 138 - } - }, - "left": { - "type": "Identifier", - "start": 4475, - "end": 4476, - "loc": { - "start": { - "line": 54, - "column": 123 - }, - "end": { - "line": 54, - "column": 124 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "||", - "right": { - "type": "AssignmentExpression", - "start": 4481, - "end": 4489, - "loc": { - "start": { - "line": 54, - "column": 129 - }, - "end": { - "line": 54, - "column": 137 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 4481, - "end": 4485, - "loc": { - "start": { - "line": 54, - "column": 129 - }, - "end": { - "line": 54, - "column": 133 - } - }, - "object": { - "type": "Identifier", - "start": 4481, - "end": 4482, - "loc": { - "start": { - "line": 54, - "column": 129 - }, - "end": { - "line": 54, - "column": 130 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "Identifier", - "start": 4483, - "end": 4484, - "loc": { - "start": { - "line": 54, - "column": 131 - }, - "end": { - "line": 54, - "column": 132 - }, - "identifierName": "f" - }, - "name": "f" - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 4488, - "end": 4489, - "loc": { - "start": { - "line": 54, - "column": 136 - }, - "end": { - "line": 54, - "column": 137 - }, - "identifierName": "b" - }, - "name": "b" - }, - "extra": { - "parenthesized": true, - "parenStart": 4480 - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 4501, - "end": 4507, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 15 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4501, - "end": 4506, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 14 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4501, - "end": 4502, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - }, - "identifierName": "i" - }, - "name": "i" - }, - "right": { - "type": "Identifier", - "start": 4505, - "end": 4506, - "loc": { - "start": { - "line": 55, - "column": 13 - }, - "end": { - "line": 55, - "column": 14 - }, - "identifierName": "d" - }, - "name": "d" - } - } - }, - { - "type": "ExpressionStatement", - "start": 4507, - "end": 4521, - "loc": { - "start": { - "line": 55, - "column": 15 - }, - "end": { - "line": 55, - "column": 29 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4507, - "end": 4520, - "loc": { - "start": { - "line": 55, - "column": 15 - }, - "end": { - "line": 55, - "column": 28 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 4507, - "end": 4508, - "loc": { - "start": { - "line": 55, - "column": 15 - }, - "end": { - "line": 55, - "column": 16 - }, - "identifierName": "d" - }, - "name": "d" - }, - "right": { - "type": "MemberExpression", - "start": 4512, - "end": 4520, - "loc": { - "start": { - "line": 55, - "column": 20 - }, - "end": { - "line": 55, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 4512, - "end": 4513, - "loc": { - "start": { - "line": 55, - "column": 20 - }, - "end": { - "line": 55, - "column": 21 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4514, - "end": 4520, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 28 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - }, - { - "type": "IfStatement", - "start": 4521, - "end": 4806, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 58, - "column": 32 - } - }, - "test": { - "type": "Identifier", - "start": 4525, - "end": 4526, - "loc": { - "start": { - "line": 55, - "column": 33 - }, - "end": { - "line": 55, - "column": 34 - }, - "identifierName": "c" - }, - "name": "c" - }, - "consequent": { - "type": "BlockStatement", - "start": 4528, - "end": 4783, - "loc": { - "start": { - "line": 55, - "column": 36 - }, - "end": { - "line": 58, - "column": 9 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 4540, - "end": 4549, - "loc": { - "start": { - "line": 56, - "column": 10 - }, - "end": { - "line": 56, - "column": 19 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4540, - "end": 4548, - "loc": { - "start": { - "line": 56, - "column": 10 - }, - "end": { - "line": 56, - "column": 18 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4540, - "end": 4541, - "loc": { - "start": { - "line": 56, - "column": 10 - }, - "end": { - "line": 56, - "column": 11 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "MemberExpression", - "start": 4544, - "end": 4548, - "loc": { - "start": { - "line": 56, - "column": 14 - }, - "end": { - "line": 56, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 4544, - "end": 4545, - "loc": { - "start": { - "line": 56, - "column": 14 - }, - "end": { - "line": 56, - "column": 15 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "NumericLiteral", - "start": 4546, - "end": 4547, - "loc": { - "start": { - "line": 56, - "column": 16 - }, - "end": { - "line": 56, - "column": 17 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - } - }, - { - "type": "VariableDeclaration", - "start": 4549, - "end": 4602, - "loc": { - "start": { - "line": 56, - "column": 19 - }, - "end": { - "line": 57, - "column": 31 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4553, - "end": 4569, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 39 - } - }, - "id": { - "type": "Identifier", - "start": 4553, - "end": 4554, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 24 - }, - "identifierName": "j" - }, - "name": "j" - }, - "init": { - "type": "CallExpression", - "start": 4557, - "end": 4569, - "loc": { - "start": { - "line": 56, - "column": 27 - }, - "end": { - "line": 56, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4557, - "end": 4566, - "loc": { - "start": { - "line": 56, - "column": 27 - }, - "end": { - "line": 56, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 4557, - "end": 4558, - "loc": { - "start": { - "line": 56, - "column": 27 - }, - "end": { - "line": 56, - "column": 28 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4559, - "end": 4566, - "loc": { - "start": { - "line": 56, - "column": 29 - }, - "end": { - "line": 56, - "column": 36 - }, - "identifierName": "indexOf" - }, - "name": "indexOf" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 4567, - "end": 4568, - "loc": { - "start": { - "line": 56, - "column": 37 - }, - "end": { - "line": 56, - "column": 38 - }, - "identifierName": "c" - }, - "name": "c" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 4585, - "end": 4601, - "loc": { - "start": { - "line": 57, - "column": 14 - }, - "end": { - "line": 57, - "column": 30 - } - }, - "id": { - "type": "Identifier", - "start": 4585, - "end": 4586, - "loc": { - "start": { - "line": 57, - "column": 14 - }, - "end": { - "line": 57, - "column": 15 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "BinaryExpression", - "start": 4589, - "end": 4601, - "loc": { - "start": { - "line": 57, - "column": 18 - }, - "end": { - "line": 57, - "column": 30 - } - }, - "left": { - "type": "Identifier", - "start": 4589, - "end": 4590, - "loc": { - "start": { - "line": 57, - "column": 18 - }, - "end": { - "line": 57, - "column": 19 - }, - "identifierName": "j" - }, - "name": "j" - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 4593, - "end": 4601, - "loc": { - "start": { - "line": 57, - "column": 22 - }, - "end": { - "line": 57, - "column": 30 - } - }, - "object": { - "type": "Identifier", - "start": 4593, - "end": 4594, - "loc": { - "start": { - "line": 57, - "column": 22 - }, - "end": { - "line": 57, - "column": 23 - }, - "identifierName": "c" - }, - "name": "c" - }, - "property": { - "type": "Identifier", - "start": 4595, - "end": 4601, - "loc": { - "start": { - "line": 57, - "column": 24 - }, - "end": { - "line": 57, - "column": 30 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 4602, - "end": 4657, - "loc": { - "start": { - "line": 57, - "column": 31 - }, - "end": { - "line": 57, - "column": 86 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 4602, - "end": 4656, - "loc": { - "start": { - "line": 57, - "column": 31 - }, - "end": { - "line": 57, - "column": 85 - } - }, - "left": { - "type": "MemberExpression", - "start": 4602, - "end": 4606, - "loc": { - "start": { - "line": 57, - "column": 31 - }, - "end": { - "line": 57, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 4602, - "end": 4603, - "loc": { - "start": { - "line": 57, - "column": 31 - }, - "end": { - "line": 57, - "column": 32 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "NumericLiteral", - "start": 4604, - "end": 4605, - "loc": { - "start": { - "line": 57, - "column": 33 - }, - "end": { - "line": 57, - "column": 34 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - }, - "computed": true - }, - "operator": "&&", - "right": { - "type": "SequenceExpression", - "start": 4611, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 40 - }, - "end": { - "line": 57, - "column": 84 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 4611, - "end": 4637, - "loc": { - "start": { - "line": 57, - "column": 40 - }, - "end": { - "line": 57, - "column": 66 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4611, - "end": 4612, - "loc": { - "start": { - "line": 57, - "column": 40 - }, - "end": { - "line": 57, - "column": 41 - }, - "identifierName": "k" - }, - "name": "k" - }, - "right": { - "type": "BinaryExpression", - "start": 4615, - "end": 4637, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 57, - "column": 66 - } - }, - "left": { - "type": "MemberExpression", - "start": 4615, - "end": 4623, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 57, - "column": 52 - } - }, - "object": { - "type": "Identifier", - "start": 4615, - "end": 4616, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 57, - "column": 45 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4617, - "end": 4623, - "loc": { - "start": { - "line": 57, - "column": 46 - }, - "end": { - "line": 57, - "column": 52 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "-", - "right": { - "type": "MemberExpression", - "start": 4626, - "end": 4637, - "loc": { - "start": { - "line": 57, - "column": 55 - }, - "end": { - "line": 57, - "column": 66 - } - }, - "object": { - "type": "MemberExpression", - "start": 4626, - "end": 4630, - "loc": { - "start": { - "line": 57, - "column": 55 - }, - "end": { - "line": 57, - "column": 59 - } - }, - "object": { - "type": "Identifier", - "start": 4626, - "end": 4627, - "loc": { - "start": { - "line": 57, - "column": 55 - }, - "end": { - "line": 57, - "column": 56 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "NumericLiteral", - "start": 4628, - "end": 4629, - "loc": { - "start": { - "line": 57, - "column": 57 - }, - "end": { - "line": 57, - "column": 58 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 4631, - "end": 4637, - "loc": { - "start": { - "line": 57, - "column": 60 - }, - "end": { - "line": 57, - "column": 66 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - }, - { - "type": "AssignmentExpression", - "start": 4639, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 68 - }, - "end": { - "line": 57, - "column": 84 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4639, - "end": 4640, - "loc": { - "start": { - "line": 57, - "column": 68 - }, - "end": { - "line": 57, - "column": 69 - }, - "identifierName": "j" - }, - "name": "j" - }, - "right": { - "type": "BinaryExpression", - "start": 4643, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 72 - }, - "end": { - "line": 57, - "column": 84 - } - }, - "left": { - "type": "Identifier", - "start": 4643, - "end": 4644, - "loc": { - "start": { - "line": 57, - "column": 72 - }, - "end": { - "line": 57, - "column": 73 - }, - "identifierName": "k" - }, - "name": "k" - }, - "operator": "-", - "right": { - "type": "MemberExpression", - "start": 4647, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 76 - }, - "end": { - "line": 57, - "column": 84 - } - }, - "object": { - "type": "Identifier", - "start": 4647, - "end": 4648, - "loc": { - "start": { - "line": 57, - "column": 76 - }, - "end": { - "line": 57, - "column": 77 - }, - "identifierName": "c" - }, - "name": "c" - }, - "property": { - "type": "Identifier", - "start": 4649, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 78 - }, - "end": { - "line": 57, - "column": 84 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 4610 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 4657, - "end": 4676, - "loc": { - "start": { - "line": 57, - "column": 86 - }, - "end": { - "line": 57, - "column": 105 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4657, - "end": 4675, - "loc": { - "start": { - "line": 57, - "column": 86 - }, - "end": { - "line": 57, - "column": 104 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 4657, - "end": 4658, - "loc": { - "start": { - "line": 57, - "column": 86 - }, - "end": { - "line": 57, - "column": 87 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "CallExpression", - "start": 4661, - "end": 4675, - "loc": { - "start": { - "line": 57, - "column": 90 - }, - "end": { - "line": 57, - "column": 104 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4661, - "end": 4672, - "loc": { - "start": { - "line": 57, - "column": 90 - }, - "end": { - "line": 57, - "column": 101 - } - }, - "object": { - "type": "Identifier", - "start": 4661, - "end": 4662, - "loc": { - "start": { - "line": 57, - "column": 90 - }, - "end": { - "line": 57, - "column": 91 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 4663, - "end": 4672, - "loc": { - "start": { - "line": 57, - "column": 92 - }, - "end": { - "line": 57, - "column": 101 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 4673, - "end": 4674, - "loc": { - "start": { - "line": 57, - "column": 102 - }, - "end": { - "line": 57, - "column": 103 - } - }, - "extra": { - "rawValue": 5, - "raw": "5" - }, - "value": 5 - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 4676, - "end": 4710, - "loc": { - "start": { - "line": 57, - "column": 105 - }, - "end": { - "line": 57, - "column": 139 - } - }, - "expression": { - "type": "CallExpression", - "start": 4676, - "end": 4709, - "loc": { - "start": { - "line": 57, - "column": 105 - }, - "end": { - "line": 57, - "column": 138 - } - }, - "callee": { - "type": "Identifier", - "start": 4676, - "end": 4677, - "loc": { - "start": { - "line": 57, - "column": 105 - }, - "end": { - "line": 57, - "column": 106 - }, - "identifierName": "B" - }, - "name": "B" - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 4678, - "end": 4683, - "loc": { - "start": { - "line": 57, - "column": 107 - }, - "end": { - "line": 57, - "column": 112 - } - }, - "left": { - "type": "Identifier", - "start": 4678, - "end": 4679, - "loc": { - "start": { - "line": 57, - "column": 107 - }, - "end": { - "line": 57, - "column": 108 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4682, - "end": 4683, - "loc": { - "start": { - "line": 57, - "column": 111 - }, - "end": { - "line": 57, - "column": 112 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - { - "type": "CallExpression", - "start": 4685, - "end": 4702, - "loc": { - "start": { - "line": 57, - "column": 114 - }, - "end": { - "line": 57, - "column": 131 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4685, - "end": 4696, - "loc": { - "start": { - "line": 57, - "column": 114 - }, - "end": { - "line": 57, - "column": 125 - } - }, - "object": { - "type": "Identifier", - "start": 4685, - "end": 4686, - "loc": { - "start": { - "line": 57, - "column": 114 - }, - "end": { - "line": 57, - "column": 115 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4687, - "end": 4696, - "loc": { - "start": { - "line": 57, - "column": 116 - }, - "end": { - "line": 57, - "column": 125 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 4697, - "end": 4698, - "loc": { - "start": { - "line": 57, - "column": 126 - }, - "end": { - "line": 57, - "column": 127 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "Identifier", - "start": 4700, - "end": 4701, - "loc": { - "start": { - "line": 57, - "column": 129 - }, - "end": { - "line": 57, - "column": 130 - }, - "identifierName": "j" - }, - "name": "j" - } - ] - }, - { - "type": "Identifier", - "start": 4704, - "end": 4705, - "loc": { - "start": { - "line": 57, - "column": 133 - }, - "end": { - "line": 57, - "column": 134 - }, - "identifierName": "e" - }, - "name": "e" - }, - { - "type": "Identifier", - "start": 4707, - "end": 4708, - "loc": { - "start": { - "line": 57, - "column": 136 - }, - "end": { - "line": 57, - "column": 137 - }, - "identifierName": "p" - }, - "name": "p" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 4710, - "end": 4738, - "loc": { - "start": { - "line": 57, - "column": 139 - }, - "end": { - "line": 57, - "column": 167 - } - }, - "expression": { - "type": "CallExpression", - "start": 4710, - "end": 4737, - "loc": { - "start": { - "line": 57, - "column": 139 - }, - "end": { - "line": 57, - "column": 166 - } - }, - "callee": { - "type": "Identifier", - "start": 4710, - "end": 4711, - "loc": { - "start": { - "line": 57, - "column": 139 - }, - "end": { - "line": 57, - "column": 140 - }, - "identifierName": "B" - }, - "name": "B" - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 4712, - "end": 4721, - "loc": { - "start": { - "line": 57, - "column": 141 - }, - "end": { - "line": 57, - "column": 150 - } - }, - "left": { - "type": "BinaryExpression", - "start": 4712, - "end": 4717, - "loc": { - "start": { - "line": 57, - "column": 141 - }, - "end": { - "line": 57, - "column": 146 - } - }, - "left": { - "type": "Identifier", - "start": 4712, - "end": 4713, - "loc": { - "start": { - "line": 57, - "column": 141 - }, - "end": { - "line": 57, - "column": 142 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4716, - "end": 4717, - "loc": { - "start": { - "line": 57, - "column": 145 - }, - "end": { - "line": 57, - "column": 146 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4720, - "end": 4721, - "loc": { - "start": { - "line": 57, - "column": 149 - }, - "end": { - "line": 57, - "column": 150 - }, - "identifierName": "j" - }, - "name": "j" - } - }, - { - "type": "Identifier", - "start": 4723, - "end": 4724, - "loc": { - "start": { - "line": 57, - "column": 152 - }, - "end": { - "line": 57, - "column": 153 - }, - "identifierName": "c" - }, - "name": "c" - }, - { - "type": "CallExpression", - "start": 4726, - "end": 4733, - "loc": { - "start": { - "line": 57, - "column": 155 - }, - "end": { - "line": 57, - "column": 162 - } - }, - "callee": { - "type": "Identifier", - "start": 4726, - "end": 4727, - "loc": { - "start": { - "line": 57, - "column": 155 - }, - "end": { - "line": 57, - "column": 156 - }, - "identifierName": "C" - }, - "name": "C" - }, - "arguments": [ - { - "type": "Identifier", - "start": 4728, - "end": 4729, - "loc": { - "start": { - "line": 57, - "column": 157 - }, - "end": { - "line": 57, - "column": 158 - }, - "identifierName": "b" - }, - "name": "b" - }, - { - "type": "Identifier", - "start": 4731, - "end": 4732, - "loc": { - "start": { - "line": 57, - "column": 160 - }, - "end": { - "line": 57, - "column": 161 - }, - "identifierName": "c" - }, - "name": "c" - } - ] - }, - { - "type": "Identifier", - "start": 4735, - "end": 4736, - "loc": { - "start": { - "line": 57, - "column": 164 - }, - "end": { - "line": 57, - "column": 165 - }, - "identifierName": "p" - }, - "name": "p" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 4738, - "end": 4773, - "loc": { - "start": { - "line": 57, - "column": 167 - }, - "end": { - "line": 57, - "column": 202 - } - }, - "expression": { - "type": "CallExpression", - "start": 4738, - "end": 4772, - "loc": { - "start": { - "line": 57, - "column": 167 - }, - "end": { - "line": 57, - "column": 201 - } - }, - "callee": { - "type": "Identifier", - "start": 4738, - "end": 4739, - "loc": { - "start": { - "line": 57, - "column": 167 - }, - "end": { - "line": 57, - "column": 168 - }, - "identifierName": "B" - }, - "name": "B" - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 4740, - "end": 4749, - "loc": { - "start": { - "line": 57, - "column": 169 - }, - "end": { - "line": 57, - "column": 178 - } - }, - "left": { - "type": "BinaryExpression", - "start": 4740, - "end": 4745, - "loc": { - "start": { - "line": 57, - "column": 169 - }, - "end": { - "line": 57, - "column": 174 - } - }, - "left": { - "type": "Identifier", - "start": 4740, - "end": 4741, - "loc": { - "start": { - "line": 57, - "column": 169 - }, - "end": { - "line": 57, - "column": 170 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4744, - "end": 4745, - "loc": { - "start": { - "line": 57, - "column": 173 - }, - "end": { - "line": 57, - "column": 174 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4748, - "end": 4749, - "loc": { - "start": { - "line": 57, - "column": 177 - }, - "end": { - "line": 57, - "column": 178 - }, - "identifierName": "k" - }, - "name": "k" - } - }, - { - "type": "CallExpression", - "start": 4751, - "end": 4765, - "loc": { - "start": { - "line": 57, - "column": 180 - }, - "end": { - "line": 57, - "column": 194 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4751, - "end": 4762, - "loc": { - "start": { - "line": 57, - "column": 180 - }, - "end": { - "line": 57, - "column": 191 - } - }, - "object": { - "type": "Identifier", - "start": 4751, - "end": 4752, - "loc": { - "start": { - "line": 57, - "column": 180 - }, - "end": { - "line": 57, - "column": 181 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 4753, - "end": 4762, - "loc": { - "start": { - "line": 57, - "column": 182 - }, - "end": { - "line": 57, - "column": 191 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 4763, - "end": 4764, - "loc": { - "start": { - "line": 57, - "column": 192 - }, - "end": { - "line": 57, - "column": 193 - }, - "identifierName": "k" - }, - "name": "k" - } - ] - }, - { - "type": "Identifier", - "start": 4767, - "end": 4768, - "loc": { - "start": { - "line": 57, - "column": 196 - }, - "end": { - "line": 57, - "column": 197 - }, - "identifierName": "e" - }, - "name": "e" - }, - { - "type": "Identifier", - "start": 4770, - "end": 4771, - "loc": { - "start": { - "line": 57, - "column": 199 - }, - "end": { - "line": 57, - "column": 200 - }, - "identifierName": "p" - }, - "name": "p" - } - ] - } - } - ], - "directives": [] - }, - "alternate": { - "type": "ExpressionStatement", - "start": 4789, - "end": 4806, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 32 - } - }, - "expression": { - "type": "CallExpression", - "start": 4789, - "end": 4805, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 31 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4789, - "end": 4795, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 21 - } - }, - "object": { - "type": "Identifier", - "start": 4789, - "end": 4790, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 16 - }, - "identifierName": "p" - }, - "name": "p" - }, - "property": { - "type": "Identifier", - "start": 4791, - "end": 4795, - "loc": { - "start": { - "line": 58, - "column": 17 - }, - "end": { - "line": 58, - "column": 21 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 4796, - "end": 4801, - "loc": { - "start": { - "line": 58, - "column": 22 - }, - "end": { - "line": 58, - "column": 27 - } - }, - "left": { - "type": "Identifier", - "start": 4796, - "end": 4797, - "loc": { - "start": { - "line": 58, - "column": 22 - }, - "end": { - "line": 58, - "column": 23 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 4800, - "end": 4801, - "loc": { - "start": { - "line": 58, - "column": 26 - }, - "end": { - "line": 58, - "column": 27 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - { - "type": "Identifier", - "start": 4803, - "end": 4804, - "loc": { - "start": { - "line": 58, - "column": 29 - }, - "end": { - "line": 58, - "column": 30 - }, - "identifierName": "b" - }, - "name": "b" - } - ] - } - } - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 4814, - "end": 4822, - "loc": { - "start": { - "line": 59, - "column": 7 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 4814, - "end": 4821, - "loc": { - "start": { - "line": 59, - "column": 7 - }, - "end": { - "line": 59, - "column": 14 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 4814, - "end": 4817, - "loc": { - "start": { - "line": 59, - "column": 7 - }, - "end": { - "line": 59, - "column": 10 - } - }, - "object": { - "type": "Identifier", - "start": 4814, - "end": 4815, - "loc": { - "start": { - "line": 59, - "column": 7 - }, - "end": { - "line": 59, - "column": 8 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 4816, - "end": 4817, - "loc": { - "start": { - "line": 59, - "column": 9 - }, - "end": { - "line": 59, - "column": 10 - }, - "identifierName": "e" - }, - "name": "e" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 4820, - "end": 4821, - "loc": { - "start": { - "line": 59, - "column": 13 - }, - "end": { - "line": 59, - "column": 14 - }, - "identifierName": "p" - }, - "name": "p" - } - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 4828, - "end": 4850, - "loc": { - "start": { - "line": 60, - "column": 5 - }, - "end": { - "line": 61, - "column": 10 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4832, - "end": 4838, - "loc": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 15 - } - }, - "id": { - "type": "Identifier", - "start": 4832, - "end": 4833, - "loc": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "ObjectExpression", - "start": 4836, - "end": 4838, - "loc": { - "start": { - "line": 60, - "column": 13 - }, - "end": { - "line": 60, - "column": 15 - } - }, - "properties": [] - } - }, - { - "type": "VariableDeclarator", - "start": 4848, - "end": 4849, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 9 - } - }, - "id": { - "type": "Identifier", - "start": 4848, - "end": 4849, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 9 - }, - "identifierName": "y" - }, - "name": "y" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 4850, - "end": 5160, - "loc": { - "start": { - "line": 61, - "column": 10 - }, - "end": { - "line": 66, - "column": 9 - } - }, - "expression": { - "type": "CallExpression", - "start": 4850, - "end": 5159, - "loc": { - "start": { - "line": 61, - "column": 10 - }, - "end": { - "line": 66, - "column": 8 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 4851, - "end": 5156, - "loc": { - "start": { - "line": 61, - "column": 11 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 4863, - "end": 5156, - "loc": { - "start": { - "line": 61, - "column": 23 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 4871, - "end": 5124, - "loc": { - "start": { - "line": 62, - "column": 6 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 4876, - "end": 4932, - "loc": { - "start": { - "line": 62, - "column": 11 - }, - "end": { - "line": 62, - "column": 67 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4880, - "end": 4895, - "loc": { - "start": { - "line": 62, - "column": 15 - }, - "end": { - "line": 62, - "column": 30 - } - }, - "id": { - "type": "Identifier", - "start": 4880, - "end": 4881, - "loc": { - "start": { - "line": 62, - "column": 15 - }, - "end": { - "line": 62, - "column": 16 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "CallExpression", - "start": 4884, - "end": 4895, - "loc": { - "start": { - "line": 62, - "column": 19 - }, - "end": { - "line": 62, - "column": 30 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4884, - "end": 4892, - "loc": { - "start": { - "line": 62, - "column": 19 - }, - "end": { - "line": 62, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 4884, - "end": 4885, - "loc": { - "start": { - "line": 62, - "column": 19 - }, - "end": { - "line": 62, - "column": 20 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 4886, - "end": 4892, - "loc": { - "start": { - "line": 62, - "column": 21 - }, - "end": { - "line": 62, - "column": 27 - }, - "identifierName": "concat" - }, - "name": "concat" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 4893, - "end": 4894, - "loc": { - "start": { - "line": 62, - "column": 28 - }, - "end": { - "line": 62, - "column": 29 - }, - "identifierName": "m" - }, - "name": "m" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 4897, - "end": 4903, - "loc": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 38 - } - }, - "id": { - "type": "Identifier", - "start": 4897, - "end": 4898, - "loc": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 33 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": { - "type": "ArrayExpression", - "start": 4901, - "end": 4903, - "loc": { - "start": { - "line": 62, - "column": 36 - }, - "end": { - "line": 62, - "column": 38 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 4905, - "end": 4911, - "loc": { - "start": { - "line": 62, - "column": 40 - }, - "end": { - "line": 62, - "column": 46 - } - }, - "id": { - "type": "Identifier", - "start": 4905, - "end": 4906, - "loc": { - "start": { - "line": 62, - "column": 40 - }, - "end": { - "line": 62, - "column": 41 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "ObjectExpression", - "start": 4909, - "end": 4911, - "loc": { - "start": { - "line": 62, - "column": 44 - }, - "end": { - "line": 62, - "column": 46 - } - }, - "properties": [] - } - }, - { - "type": "VariableDeclarator", - "start": 4913, - "end": 4918, - "loc": { - "start": { - "line": 62, - "column": 48 - }, - "end": { - "line": 62, - "column": 53 - } - }, - "id": { - "type": "Identifier", - "start": 4913, - "end": 4914, - "loc": { - "start": { - "line": 62, - "column": 48 - }, - "end": { - "line": 62, - "column": 49 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "NumericLiteral", - "start": 4917, - "end": 4918, - "loc": { - "start": { - "line": 62, - "column": 52 - }, - "end": { - "line": 62, - "column": 53 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 4920, - "end": 4932, - "loc": { - "start": { - "line": 62, - "column": 55 - }, - "end": { - "line": 62, - "column": 67 - } - }, - "id": { - "type": "Identifier", - "start": 4920, - "end": 4921, - "loc": { - "start": { - "line": 62, - "column": 55 - }, - "end": { - "line": 62, - "column": 56 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "MemberExpression", - "start": 4924, - "end": 4932, - "loc": { - "start": { - "line": 62, - "column": 59 - }, - "end": { - "line": 62, - "column": 67 - } - }, - "object": { - "type": "Identifier", - "start": 4924, - "end": 4925, - "loc": { - "start": { - "line": 62, - "column": 59 - }, - "end": { - "line": 62, - "column": 60 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 4926, - "end": 4932, - "loc": { - "start": { - "line": 62, - "column": 61 - }, - "end": { - "line": 62, - "column": 67 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 4934, - "end": 4939, - "loc": { - "start": { - "line": 62, - "column": 69 - }, - "end": { - "line": 62, - "column": 74 - } - }, - "left": { - "type": "Identifier", - "start": 4934, - "end": 4935, - "loc": { - "start": { - "line": 62, - "column": 69 - }, - "end": { - "line": 62, - "column": 70 - }, - "identifierName": "d" - }, - "name": "d" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 4938, - "end": 4939, - "loc": { - "start": { - "line": 62, - "column": 73 - }, - "end": { - "line": 62, - "column": 74 - }, - "identifierName": "g" - }, - "name": "g" - } - }, - "update": { - "type": "UpdateExpression", - "start": 4941, - "end": 4944, - "loc": { - "start": { - "line": 62, - "column": 76 - }, - "end": { - "line": 62, - "column": 79 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 4943, - "end": 4944, - "loc": { - "start": { - "line": 62, - "column": 78 - }, - "end": { - "line": 62, - "column": 79 - }, - "identifierName": "d" - }, - "name": "d" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "BlockStatement", - "start": 4946, - "end": 5124, - "loc": { - "start": { - "line": 62, - "column": 81 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 4956, - "end": 4991, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 64, - "column": 21 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 4960, - "end": 4968, - "loc": { - "start": { - "line": 63, - "column": 12 - }, - "end": { - "line": 63, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 4960, - "end": 4961, - "loc": { - "start": { - "line": 63, - "column": 12 - }, - "end": { - "line": 63, - "column": 13 - }, - "identifierName": "r" - }, - "name": "r" - }, - "init": { - "type": "MemberExpression", - "start": 4964, - "end": 4968, - "loc": { - "start": { - "line": 63, - "column": 16 - }, - "end": { - "line": 63, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 4964, - "end": 4965, - "loc": { - "start": { - "line": 63, - "column": 16 - }, - "end": { - "line": 63, - "column": 17 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 4966, - "end": 4967, - "loc": { - "start": { - "line": 63, - "column": 18 - }, - "end": { - "line": 63, - "column": 19 - }, - "identifierName": "d" - }, - "name": "d" - }, - "computed": true - } - }, - { - "type": "VariableDeclarator", - "start": 4982, - "end": 4990, - "loc": { - "start": { - "line": 64, - "column": 12 - }, - "end": { - "line": 64, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 4982, - "end": 4983, - "loc": { - "start": { - "line": 64, - "column": 12 - }, - "end": { - "line": 64, - "column": 13 - }, - "identifierName": "n" - }, - "name": "n" - }, - "init": { - "type": "MemberExpression", - "start": 4986, - "end": 4990, - "loc": { - "start": { - "line": 64, - "column": 16 - }, - "end": { - "line": 64, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 4986, - "end": 4987, - "loc": { - "start": { - "line": 64, - "column": 16 - }, - "end": { - "line": 64, - "column": 17 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "NumericLiteral", - "start": 4988, - "end": 4989, - "loc": { - "start": { - "line": 64, - "column": 18 - }, - "end": { - "line": 64, - "column": 19 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 4991, - "end": 5051, - "loc": { - "start": { - "line": 64, - "column": 21 - }, - "end": { - "line": 64, - "column": 81 - } - }, - "test": { - "type": "Identifier", - "start": 4995, - "end": 4996, - "loc": { - "start": { - "line": 64, - "column": 25 - }, - "end": { - "line": 64, - "column": 26 - }, - "identifierName": "n" - }, - "name": "n" - }, - "consequent": { - "type": "ForStatement", - "start": 4998, - "end": 5051, - "loc": { - "start": { - "line": 64, - "column": 28 - }, - "end": { - "line": 64, - "column": 81 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 5003, - "end": 5019, - "loc": { - "start": { - "line": 64, - "column": 33 - }, - "end": { - "line": 64, - "column": 49 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 5007, - "end": 5019, - "loc": { - "start": { - "line": 64, - "column": 37 - }, - "end": { - "line": 64, - "column": 49 - } - }, - "id": { - "type": "Identifier", - "start": 5007, - "end": 5008, - "loc": { - "start": { - "line": 64, - "column": 37 - }, - "end": { - "line": 64, - "column": 38 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "MemberExpression", - "start": 5011, - "end": 5019, - "loc": { - "start": { - "line": 64, - "column": 41 - }, - "end": { - "line": 64, - "column": 49 - } - }, - "object": { - "type": "Identifier", - "start": 5011, - "end": 5012, - "loc": { - "start": { - "line": 64, - "column": 41 - }, - "end": { - "line": 64, - "column": 42 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 5013, - "end": 5019, - "loc": { - "start": { - "line": 64, - "column": 43 - }, - "end": { - "line": 64, - "column": 49 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 5021, - "end": 5029, - "loc": { - "start": { - "line": 64, - "column": 51 - }, - "end": { - "line": 64, - "column": 59 - } - }, - "left": { - "type": "UpdateExpression", - "start": 5021, - "end": 5024, - "loc": { - "start": { - "line": 64, - "column": 51 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "operator": "--", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 5023, - "end": 5024, - "loc": { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 64, - "column": 54 - }, - "identifierName": "k" - }, - "name": "k" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 5028, - "end": 5029, - "loc": { - "start": { - "line": 64, - "column": 58 - }, - "end": { - "line": 64, - "column": 59 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "update": null, - "body": { - "type": "ExpressionStatement", - "start": 5032, - "end": 5051, - "loc": { - "start": { - "line": 64, - "column": 62 - }, - "end": { - "line": 64, - "column": 81 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 5032, - "end": 5050, - "loc": { - "start": { - "line": 64, - "column": 62 - }, - "end": { - "line": 64, - "column": 80 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 5032, - "end": 5046, - "loc": { - "start": { - "line": 64, - "column": 62 - }, - "end": { - "line": 64, - "column": 76 - } - }, - "object": { - "type": "Identifier", - "start": 5032, - "end": 5033, - "loc": { - "start": { - "line": 64, - "column": 62 - }, - "end": { - "line": 64, - "column": 63 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "CallExpression", - "start": 5034, - "end": 5045, - "loc": { - "start": { - "line": 64, - "column": 64 - }, - "end": { - "line": 64, - "column": 75 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5034, - "end": 5042, - "loc": { - "start": { - "line": 64, - "column": 64 - }, - "end": { - "line": 64, - "column": 72 - } - }, - "object": { - "type": "Identifier", - "start": 5034, - "end": 5035, - "loc": { - "start": { - "line": 64, - "column": 64 - }, - "end": { - "line": 64, - "column": 65 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 5036, - "end": 5042, - "loc": { - "start": { - "line": 64, - "column": 66 - }, - "end": { - "line": 64, - "column": 72 - }, - "identifierName": "charAt" - }, - "name": "charAt" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 5043, - "end": 5044, - "loc": { - "start": { - "line": 64, - "column": 73 - }, - "end": { - "line": 64, - "column": 74 - }, - "identifierName": "k" - }, - "name": "k" - } - ] - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 5049, - "end": 5050, - "loc": { - "start": { - "line": 64, - "column": 79 - }, - "end": { - "line": 64, - "column": 80 - }, - "identifierName": "r" - }, - "name": "r" - } - } - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 5051, - "end": 5060, - "loc": { - "start": { - "line": 64, - "column": 81 - }, - "end": { - "line": 64, - "column": 90 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 5051, - "end": 5059, - "loc": { - "start": { - "line": 64, - "column": 81 - }, - "end": { - "line": 64, - "column": 89 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 5051, - "end": 5052, - "loc": { - "start": { - "line": 64, - "column": 81 - }, - "end": { - "line": 64, - "column": 82 - }, - "identifierName": "r" - }, - "name": "r" - }, - "right": { - "type": "MemberExpression", - "start": 5055, - "end": 5059, - "loc": { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 64, - "column": 89 - } - }, - "object": { - "type": "Identifier", - "start": 5055, - "end": 5056, - "loc": { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 64, - "column": 86 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "NumericLiteral", - "start": 5057, - "end": 5058, - "loc": { - "start": { - "line": 64, - "column": 87 - }, - "end": { - "line": 64, - "column": 88 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - } - } - }, - { - "type": "ExpressionStatement", - "start": 5060, - "end": 5071, - "loc": { - "start": { - "line": 64, - "column": 90 - }, - "end": { - "line": 64, - "column": 101 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 5060, - "end": 5070, - "loc": { - "start": { - "line": 64, - "column": 90 - }, - "end": { - "line": 64, - "column": 100 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 5060, - "end": 5061, - "loc": { - "start": { - "line": 64, - "column": 90 - }, - "end": { - "line": 64, - "column": 91 - }, - "identifierName": "n" - }, - "name": "n" - }, - "right": { - "type": "BinaryExpression", - "start": 5064, - "end": 5070, - "loc": { - "start": { - "line": 64, - "column": 94 - }, - "end": { - "line": 64, - "column": 100 - } - }, - "left": { - "type": "StringLiteral", - "start": 5064, - "end": 5066, - "loc": { - "start": { - "line": 64, - "column": 94 - }, - "end": { - "line": 64, - "column": 96 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 5069, - "end": 5070, - "loc": { - "start": { - "line": 64, - "column": 99 - }, - "end": { - "line": 64, - "column": 100 - }, - "identifierName": "r" - }, - "name": "r" - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 5071, - "end": 5116, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 146 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 5071, - "end": 5115, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 145 - } - }, - "left": { - "type": "CallExpression", - "start": 5071, - "end": 5090, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 120 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5071, - "end": 5087, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 117 - } - }, - "object": { - "type": "Identifier", - "start": 5071, - "end": 5072, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 102 - }, - "identifierName": "p" - }, - "name": "p" - }, - "property": { - "type": "Identifier", - "start": 5073, - "end": 5087, - "loc": { - "start": { - "line": 64, - "column": 103 - }, - "end": { - "line": 64, - "column": 117 - }, - "identifierName": "hasOwnProperty" - }, - "name": "hasOwnProperty" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 5088, - "end": 5089, - "loc": { - "start": { - "line": 64, - "column": 118 - }, - "end": { - "line": 64, - "column": 119 - }, - "identifierName": "n" - }, - "name": "n" - } - ] - }, - "operator": "||", - "right": { - "type": "SequenceExpression", - "start": 5095, - "end": 5114, - "loc": { - "start": { - "line": 64, - "column": 125 - }, - "end": { - "line": 64, - "column": 144 - } - }, - "expressions": [ - { - "type": "CallExpression", - "start": 5095, - "end": 5104, - "loc": { - "start": { - "line": 64, - "column": 125 - }, - "end": { - "line": 64, - "column": 134 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5095, - "end": 5101, - "loc": { - "start": { - "line": 64, - "column": 125 - }, - "end": { - "line": 64, - "column": 131 - } - }, - "object": { - "type": "Identifier", - "start": 5095, - "end": 5096, - "loc": { - "start": { - "line": 64, - "column": 125 - }, - "end": { - "line": 64, - "column": 126 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 5097, - "end": 5101, - "loc": { - "start": { - "line": 64, - "column": 127 - }, - "end": { - "line": 64, - "column": 131 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 5102, - "end": 5103, - "loc": { - "start": { - "line": 64, - "column": 132 - }, - "end": { - "line": 64, - "column": 133 - }, - "identifierName": "r" - }, - "name": "r" - } - ] - }, - { - "type": "AssignmentExpression", - "start": 5106, - "end": 5114, - "loc": { - "start": { - "line": 64, - "column": 136 - }, - "end": { - "line": 64, - "column": 144 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 5106, - "end": 5110, - "loc": { - "start": { - "line": 64, - "column": 136 - }, - "end": { - "line": 64, - "column": 140 - } - }, - "object": { - "type": "Identifier", - "start": 5106, - "end": 5107, - "loc": { - "start": { - "line": 64, - "column": 136 - }, - "end": { - "line": 64, - "column": 137 - }, - "identifierName": "p" - }, - "name": "p" - }, - "property": { - "type": "Identifier", - "start": 5108, - "end": 5109, - "loc": { - "start": { - "line": 64, - "column": 138 - }, - "end": { - "line": 64, - "column": 139 - }, - "identifierName": "n" - }, - "name": "n" - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 5113, - "end": 5114, - "loc": { - "start": { - "line": 64, - "column": 143 - }, - "end": { - "line": 64, - "column": 144 - }, - "identifierName": "q" - }, - "name": "q" - } - } - ], - "extra": { - "parenthesized": true, - "parenStart": 5094 - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 5124, - "end": 5141, - "loc": { - "start": { - "line": 65, - "column": 7 - }, - "end": { - "line": 65, - "column": 24 - } - }, - "expression": { - "type": "CallExpression", - "start": 5124, - "end": 5140, - "loc": { - "start": { - "line": 65, - "column": 7 - }, - "end": { - "line": 65, - "column": 23 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5124, - "end": 5130, - "loc": { - "start": { - "line": 65, - "column": 7 - }, - "end": { - "line": 65, - "column": 13 - } - }, - "object": { - "type": "Identifier", - "start": 5124, - "end": 5125, - "loc": { - "start": { - "line": 65, - "column": 7 - }, - "end": { - "line": 65, - "column": 8 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 5126, - "end": 5130, - "loc": { - "start": { - "line": 65, - "column": 9 - }, - "end": { - "line": 65, - "column": 13 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 5131, - "end": 5139, - "loc": { - "start": { - "line": 65, - "column": 14 - }, - "end": { - "line": 65, - "column": 22 - } - }, - "extra": { - "raw": "/[\\S\\s]/" - }, - "pattern": "[\\S\\s]", - "flags": "" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 5141, - "end": 5150, - "loc": { - "start": { - "line": 65, - "column": 24 - }, - "end": { - "line": 65, - "column": 33 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 5141, - "end": 5149, - "loc": { - "start": { - "line": 65, - "column": 24 - }, - "end": { - "line": 65, - "column": 32 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 5141, - "end": 5142, - "loc": { - "start": { - "line": 65, - "column": 24 - }, - "end": { - "line": 65, - "column": 25 - }, - "identifierName": "y" - }, - "name": "y" - }, - "right": { - "type": "CallExpression", - "start": 5145, - "end": 5149, - "loc": { - "start": { - "line": 65, - "column": 28 - }, - "end": { - "line": 65, - "column": 32 - } - }, - "callee": { - "type": "Identifier", - "start": 5145, - "end": 5146, - "loc": { - "start": { - "line": 65, - "column": 28 - }, - "end": { - "line": 65, - "column": 29 - }, - "identifierName": "L" - }, - "name": "L" - }, - "arguments": [ - { - "type": "Identifier", - "start": 5147, - "end": 5148, - "loc": { - "start": { - "line": 65, - "column": 30 - }, - "end": { - "line": 65, - "column": 31 - }, - "identifierName": "l" - }, - "name": "l" - } - ] - } - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 4850 - } - }, - "arguments": [] - } - }, - { - "type": "VariableDeclaration", - "start": 5160, - "end": 5177, - "loc": { - "start": { - "line": 66, - "column": 9 - }, - "end": { - "line": 66, - "column": 26 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 5164, - "end": 5176, - "loc": { - "start": { - "line": 66, - "column": 13 - }, - "end": { - "line": 66, - "column": 25 - } - }, - "id": { - "type": "Identifier", - "start": 5164, - "end": 5165, - "loc": { - "start": { - "line": 66, - "column": 13 - }, - "end": { - "line": 66, - "column": 14 - }, - "identifierName": "t" - }, - "name": "t" - }, - "init": { - "type": "MemberExpression", - "start": 5168, - "end": 5176, - "loc": { - "start": { - "line": 66, - "column": 17 - }, - "end": { - "line": 66, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 5168, - "end": 5169, - "loc": { - "start": { - "line": 66, - "column": 17 - }, - "end": { - "line": 66, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5170, - "end": 5176, - "loc": { - "start": { - "line": 66, - "column": 19 - }, - "end": { - "line": 66, - "column": 25 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "ReturnStatement", - "start": 5177, - "end": 5186, - "loc": { - "start": { - "line": 66, - "column": 26 - }, - "end": { - "line": 66, - "column": 35 - } - }, - "argument": { - "type": "Identifier", - "start": 5184, - "end": 5185, - "loc": { - "start": { - "line": 66, - "column": 33 - }, - "end": { - "line": 66, - "column": 34 - }, - "identifierName": "e" - }, - "name": "e" - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 5190, - "end": 7104, - "loc": { - "start": { - "line": 67, - "column": 3 - }, - "end": { - "line": 70, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 5199, - "end": 5200, - "loc": { - "start": { - "line": 67, - "column": 12 - }, - "end": { - "line": 67, - "column": 13 - }, - "identifierName": "u" - }, - "name": "u" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 5201, - "end": 5202, - "loc": { - "start": { - "line": 67, - "column": 14 - }, - "end": { - "line": 67, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 5204, - "end": 7104, - "loc": { - "start": { - "line": 67, - "column": 17 - }, - "end": { - "line": 70, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 5210, - "end": 5237, - "loc": { - "start": { - "line": 68, - "column": 4 - }, - "end": { - "line": 69, - "column": 15 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 5214, - "end": 5220, - "loc": { - "start": { - "line": 68, - "column": 8 - }, - "end": { - "line": 68, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 5214, - "end": 5215, - "loc": { - "start": { - "line": 68, - "column": 8 - }, - "end": { - "line": 68, - "column": 9 - }, - "identifierName": "m" - }, - "name": "m" - }, - "init": { - "type": "ArrayExpression", - "start": 5218, - "end": 5220, - "loc": { - "start": { - "line": 68, - "column": 12 - }, - "end": { - "line": 68, - "column": 14 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 5230, - "end": 5236, - "loc": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 5230, - "end": 5231, - "loc": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 9 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "ArrayExpression", - "start": 5234, - "end": 5236, - "loc": { - "start": { - "line": 69, - "column": 12 - }, - "end": { - "line": 69, - "column": 14 - } - }, - "elements": [] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 5237, - "end": 5680, - "loc": { - "start": { - "line": 69, - "column": 15 - }, - "end": { - "line": 69, - "column": 458 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 5237, - "end": 5679, - "loc": { - "start": { - "line": 69, - "column": 15 - }, - "end": { - "line": 69, - "column": 457 - } - }, - "test": { - "type": "MemberExpression", - "start": 5237, - "end": 5258, - "loc": { - "start": { - "line": 69, - "column": 15 - }, - "end": { - "line": 69, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 5237, - "end": 5238, - "loc": { - "start": { - "line": 69, - "column": 15 - }, - "end": { - "line": 69, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 5239, - "end": 5258, - "loc": { - "start": { - "line": 69, - "column": 17 - }, - "end": { - "line": 69, - "column": 36 - }, - "identifierName": "tripleQuotedStrings" - }, - "name": "tripleQuotedStrings" - }, - "computed": false - }, - "consequent": { - "type": "CallExpression", - "start": 5261, - "end": 5442, - "loc": { - "start": { - "line": 69, - "column": 39 - }, - "end": { - "line": 69, - "column": 220 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5261, - "end": 5267, - "loc": { - "start": { - "line": 69, - "column": 39 - }, - "end": { - "line": 69, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 5261, - "end": 5262, - "loc": { - "start": { - "line": 69, - "column": 39 - }, - "end": { - "line": 69, - "column": 40 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5263, - "end": 5267, - "loc": { - "start": { - "line": 69, - "column": 41 - }, - "end": { - "line": 69, - "column": 45 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5268, - "end": 5441, - "loc": { - "start": { - "line": 69, - "column": 46 - }, - "end": { - "line": 69, - "column": 219 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5269, - "end": 5274, - "loc": { - "start": { - "line": 69, - "column": 47 - }, - "end": { - "line": 69, - "column": 52 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 5276, - "end": 5430, - "loc": { - "start": { - "line": 69, - "column": 54 - }, - "end": { - "line": 69, - "column": 208 - } - }, - "extra": { - "raw": "/^(?:'''(?:[^'\\\\]|\\\\[\\S\\s]|''?(?=[^']))*(?:'''|$)|\"\"\"(?:[^\"\\\\]|\\\\[\\S\\s]|\"\"?(?=[^\"]))*(?:\"\"\"|$)|'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$))/" - }, - "pattern": "^(?:'''(?:[^'\\\\]|\\\\[\\S\\s]|''?(?=[^']))*(?:'''|$)|\"\"\"(?:[^\"\\\\]|\\\\[\\S\\s]|\"\"?(?=[^\"]))*(?:\"\"\"|$)|'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$))", - "flags": "" - }, - { - "type": "Identifier", - "start": 5432, - "end": 5433, - "loc": { - "start": { - "line": 69, - "column": 210 - }, - "end": { - "line": 69, - "column": 211 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 5435, - "end": 5440, - "loc": { - "start": { - "line": 69, - "column": 213 - }, - "end": { - "line": 69, - "column": 218 - } - }, - "extra": { - "rawValue": "'\"", - "raw": "\"'\\\"\"" - }, - "value": "'\"" - } - ] - } - ] - }, - "alternate": { - "type": "ConditionalExpression", - "start": 5445, - "end": 5679, - "loc": { - "start": { - "line": 69, - "column": 223 - }, - "end": { - "line": 69, - "column": 457 - } - }, - "test": { - "type": "MemberExpression", - "start": 5445, - "end": 5463, - "loc": { - "start": { - "line": 69, - "column": 223 - }, - "end": { - "line": 69, - "column": 241 - } - }, - "object": { - "type": "Identifier", - "start": 5445, - "end": 5446, - "loc": { - "start": { - "line": 69, - "column": 223 - }, - "end": { - "line": 69, - "column": 224 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 5447, - "end": 5463, - "loc": { - "start": { - "line": 69, - "column": 225 - }, - "end": { - "line": 69, - "column": 241 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "computed": false - }, - "consequent": { - "type": "CallExpression", - "start": 5466, - "end": 5587, - "loc": { - "start": { - "line": 69, - "column": 244 - }, - "end": { - "line": 69, - "column": 365 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5466, - "end": 5472, - "loc": { - "start": { - "line": 69, - "column": 244 - }, - "end": { - "line": 69, - "column": 250 - } - }, - "object": { - "type": "Identifier", - "start": 5466, - "end": 5467, - "loc": { - "start": { - "line": 69, - "column": 244 - }, - "end": { - "line": 69, - "column": 245 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5468, - "end": 5472, - "loc": { - "start": { - "line": 69, - "column": 246 - }, - "end": { - "line": 69, - "column": 250 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5473, - "end": 5586, - "loc": { - "start": { - "line": 69, - "column": 251 - }, - "end": { - "line": 69, - "column": 364 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5474, - "end": 5479, - "loc": { - "start": { - "line": 69, - "column": 252 - }, - "end": { - "line": 69, - "column": 257 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 5481, - "end": 5574, - "loc": { - "start": { - "line": 69, - "column": 259 - }, - "end": { - "line": 69, - "column": 352 - } - }, - "extra": { - "raw": "/^(?:'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$)|`(?:[^\\\\`]|\\\\[\\S\\s])*(?:`|$))/" - }, - "pattern": "^(?:'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$)|`(?:[^\\\\`]|\\\\[\\S\\s])*(?:`|$))", - "flags": "" - }, - { - "type": "Identifier", - "start": 5576, - "end": 5577, - "loc": { - "start": { - "line": 69, - "column": 354 - }, - "end": { - "line": 69, - "column": 355 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 5579, - "end": 5585, - "loc": { - "start": { - "line": 69, - "column": 357 - }, - "end": { - "line": 69, - "column": 363 - } - }, - "extra": { - "rawValue": "'\"`", - "raw": "\"'\\\"`\"" - }, - "value": "'\"`" - } - ] - } - ] - }, - "alternate": { - "type": "CallExpression", - "start": 5590, - "end": 5679, - "loc": { - "start": { - "line": 69, - "column": 368 - }, - "end": { - "line": 69, - "column": 457 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5590, - "end": 5596, - "loc": { - "start": { - "line": 69, - "column": 368 - }, - "end": { - "line": 69, - "column": 374 - } - }, - "object": { - "type": "Identifier", - "start": 5590, - "end": 5591, - "loc": { - "start": { - "line": 69, - "column": 368 - }, - "end": { - "line": 69, - "column": 369 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5592, - "end": 5596, - "loc": { - "start": { - "line": 69, - "column": 370 - }, - "end": { - "line": 69, - "column": 374 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5597, - "end": 5678, - "loc": { - "start": { - "line": 69, - "column": 375 - }, - "end": { - "line": 69, - "column": 456 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5598, - "end": 5603, - "loc": { - "start": { - "line": 69, - "column": 376 - }, - "end": { - "line": 69, - "column": 381 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 5605, - "end": 5667, - "loc": { - "start": { - "line": 69, - "column": 383 - }, - "end": { - "line": 69, - "column": 445 - } - }, - "extra": { - "raw": "/^(?:'(?:[^\\n\\r'\\\\]|\\\\.)*(?:'|$)|\"(?:[^\\n\\r\"\\\\]|\\\\.)*(?:\"|$))/" - }, - "pattern": "^(?:'(?:[^\\n\\r'\\\\]|\\\\.)*(?:'|$)|\"(?:[^\\n\\r\"\\\\]|\\\\.)*(?:\"|$))", - "flags": "" - }, - { - "type": "Identifier", - "start": 5669, - "end": 5670, - "loc": { - "start": { - "line": 69, - "column": 447 - }, - "end": { - "line": 69, - "column": 448 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 5672, - "end": 5677, - "loc": { - "start": { - "line": 69, - "column": 450 - }, - "end": { - "line": 69, - "column": 455 - } - }, - "extra": { - "rawValue": "\"'", - "raw": "\"\\\"'\"" - }, - "value": "\"'" - } - ] - } - ] - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 5680, - "end": 5746, - "loc": { - "start": { - "line": 69, - "column": 458 - }, - "end": { - "line": 69, - "column": 524 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 5680, - "end": 5745, - "loc": { - "start": { - "line": 69, - "column": 458 - }, - "end": { - "line": 69, - "column": 523 - } - }, - "left": { - "type": "MemberExpression", - "start": 5680, - "end": 5697, - "loc": { - "start": { - "line": 69, - "column": 458 - }, - "end": { - "line": 69, - "column": 475 - } - }, - "object": { - "type": "Identifier", - "start": 5680, - "end": 5681, - "loc": { - "start": { - "line": 69, - "column": 458 - }, - "end": { - "line": 69, - "column": 459 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 5682, - "end": 5697, - "loc": { - "start": { - "line": 69, - "column": 460 - }, - "end": { - "line": 69, - "column": 475 - }, - "identifierName": "verbatimStrings" - }, - "name": "verbatimStrings" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 5701, - "end": 5745, - "loc": { - "start": { - "line": 69, - "column": 479 - }, - "end": { - "line": 69, - "column": 523 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5701, - "end": 5707, - "loc": { - "start": { - "line": 69, - "column": 479 - }, - "end": { - "line": 69, - "column": 485 - } - }, - "object": { - "type": "Identifier", - "start": 5701, - "end": 5702, - "loc": { - "start": { - "line": 69, - "column": 479 - }, - "end": { - "line": 69, - "column": 480 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 5703, - "end": 5707, - "loc": { - "start": { - "line": 69, - "column": 481 - }, - "end": { - "line": 69, - "column": 485 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5708, - "end": 5744, - "loc": { - "start": { - "line": 69, - "column": 486 - }, - "end": { - "line": 69, - "column": 522 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5709, - "end": 5714, - "loc": { - "start": { - "line": 69, - "column": 487 - }, - "end": { - "line": 69, - "column": 492 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 5716, - "end": 5740, - "loc": { - "start": { - "line": 69, - "column": 494 - }, - "end": { - "line": 69, - "column": 518 - } - }, - "extra": { - "raw": "/^@\"(?:[^\"]|\"\")*(?:\"|$)/" - }, - "pattern": "^@\"(?:[^\"]|\"\")*(?:\"|$)", - "flags": "" - }, - { - "type": "Identifier", - "start": 5742, - "end": 5743, - "loc": { - "start": { - "line": 69, - "column": 520 - }, - "end": { - "line": 69, - "column": 521 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - } - } - }, - { - "type": "VariableDeclaration", - "start": 5746, - "end": 5769, - "loc": { - "start": { - "line": 69, - "column": 524 - }, - "end": { - "line": 69, - "column": 547 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 5750, - "end": 5768, - "loc": { - "start": { - "line": 69, - "column": 528 - }, - "end": { - "line": 69, - "column": 546 - } - }, - "id": { - "type": "Identifier", - "start": 5750, - "end": 5751, - "loc": { - "start": { - "line": 69, - "column": 528 - }, - "end": { - "line": 69, - "column": 529 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "MemberExpression", - "start": 5754, - "end": 5768, - "loc": { - "start": { - "line": 69, - "column": 532 - }, - "end": { - "line": 69, - "column": 546 - } - }, - "object": { - "type": "Identifier", - "start": 5754, - "end": 5755, - "loc": { - "start": { - "line": 69, - "column": 532 - }, - "end": { - "line": 69, - "column": 533 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 5756, - "end": 5768, - "loc": { - "start": { - "line": 69, - "column": 534 - }, - "end": { - "line": 69, - "column": 546 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 5769, - "end": 6128, - "loc": { - "start": { - "line": 69, - "column": 547 - }, - "end": { - "line": 69, - "column": 906 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 5769, - "end": 6127, - "loc": { - "start": { - "line": 69, - "column": 547 - }, - "end": { - "line": 69, - "column": 905 - } - }, - "left": { - "type": "Identifier", - "start": 5769, - "end": 5770, - "loc": { - "start": { - "line": 69, - "column": 547 - }, - "end": { - "line": 69, - "column": 548 - }, - "identifierName": "h" - }, - "name": "h" - }, - "operator": "&&", - "right": { - "type": "ConditionalExpression", - "start": 5775, - "end": 6126, - "loc": { - "start": { - "line": 69, - "column": 553 - }, - "end": { - "line": 69, - "column": 904 - } - }, - "test": { - "type": "MemberExpression", - "start": 5775, - "end": 5791, - "loc": { - "start": { - "line": 69, - "column": 553 - }, - "end": { - "line": 69, - "column": 569 - } - }, - "object": { - "type": "Identifier", - "start": 5775, - "end": 5776, - "loc": { - "start": { - "line": 69, - "column": 553 - }, - "end": { - "line": 69, - "column": 554 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 5777, - "end": 5791, - "loc": { - "start": { - "line": 69, - "column": 555 - }, - "end": { - "line": 69, - "column": 569 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "computed": false - }, - "consequent": { - "type": "SequenceExpression", - "start": 5795, - "end": 6085, - "loc": { - "start": { - "line": 69, - "column": 573 - }, - "end": { - "line": 69, - "column": 863 - } - }, - "expressions": [ - { - "type": "ConditionalExpression", - "start": 5795, - "end": 5993, - "loc": { - "start": { - "line": 69, - "column": 573 - }, - "end": { - "line": 69, - "column": 771 - } - }, - "test": { - "type": "BinaryExpression", - "start": 5795, - "end": 5800, - "loc": { - "start": { - "line": 69, - "column": 573 - }, - "end": { - "line": 69, - "column": 578 - } - }, - "left": { - "type": "Identifier", - "start": 5795, - "end": 5796, - "loc": { - "start": { - "line": 69, - "column": 573 - }, - "end": { - "line": 69, - "column": 574 - }, - "identifierName": "h" - }, - "name": "h" - }, - "operator": ">", - "right": { - "type": "NumericLiteral", - "start": 5799, - "end": 5800, - "loc": { - "start": { - "line": 69, - "column": 577 - }, - "end": { - "line": 69, - "column": 578 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "consequent": { - "type": "CallExpression", - "start": 5803, - "end": 5867, - "loc": { - "start": { - "line": 69, - "column": 581 - }, - "end": { - "line": 69, - "column": 645 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5803, - "end": 5809, - "loc": { - "start": { - "line": 69, - "column": 581 - }, - "end": { - "line": 69, - "column": 587 - } - }, - "object": { - "type": "Identifier", - "start": 5803, - "end": 5804, - "loc": { - "start": { - "line": 69, - "column": 581 - }, - "end": { - "line": 69, - "column": 582 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5805, - "end": 5809, - "loc": { - "start": { - "line": 69, - "column": 583 - }, - "end": { - "line": 69, - "column": 587 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5810, - "end": 5866, - "loc": { - "start": { - "line": 69, - "column": 588 - }, - "end": { - "line": 69, - "column": 644 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5811, - "end": 5816, - "loc": { - "start": { - "line": 69, - "column": 589 - }, - "end": { - "line": 69, - "column": 594 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 5818, - "end": 5857, - "loc": { - "start": { - "line": 69, - "column": 596 - }, - "end": { - "line": 69, - "column": 635 - } - }, - "extra": { - "raw": "/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/" - }, - "pattern": "^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)", - "flags": "" - }, - { - "type": "Identifier", - "start": 5859, - "end": 5860, - "loc": { - "start": { - "line": 69, - "column": 637 - }, - "end": { - "line": 69, - "column": 638 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 5862, - "end": 5865, - "loc": { - "start": { - "line": 69, - "column": 640 - }, - "end": { - "line": 69, - "column": 643 - } - }, - "extra": { - "rawValue": "#", - "raw": "\"#\"" - }, - "value": "#" - } - ] - } - ] - }, - "alternate": { - "type": "CallExpression", - "start": 5870, - "end": 5993, - "loc": { - "start": { - "line": 69, - "column": 648 - }, - "end": { - "line": 69, - "column": 771 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5870, - "end": 5876, - "loc": { - "start": { - "line": 69, - "column": 648 - }, - "end": { - "line": 69, - "column": 654 - } - }, - "object": { - "type": "Identifier", - "start": 5870, - "end": 5871, - "loc": { - "start": { - "line": 69, - "column": 648 - }, - "end": { - "line": 69, - "column": 649 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 5872, - "end": 5876, - "loc": { - "start": { - "line": 69, - "column": 650 - }, - "end": { - "line": 69, - "column": 654 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 5877, - "end": 5992, - "loc": { - "start": { - "line": 69, - "column": 655 - }, - "end": { - "line": 69, - "column": 770 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5878, - "end": 5883, - "loc": { - "start": { - "line": 69, - "column": 656 - }, - "end": { - "line": 69, - "column": 661 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 5885, - "end": 5983, - "loc": { - "start": { - "line": 69, - "column": 663 - }, - "end": { - "line": 69, - "column": 761 - } - }, - "extra": { - "raw": "/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\\b|[^\\n\\r]*)/" - }, - "pattern": "^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\\b|[^\\n\\r]*)", - "flags": "" - }, - { - "type": "Identifier", - "start": 5985, - "end": 5986, - "loc": { - "start": { - "line": 69, - "column": 763 - }, - "end": { - "line": 69, - "column": 764 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 5988, - "end": 5991, - "loc": { - "start": { - "line": 69, - "column": 766 - }, - "end": { - "line": 69, - "column": 769 - } - }, - "extra": { - "rawValue": "#", - "raw": "\"#\"" - }, - "value": "#" - } - ] - } - ] - } - }, - { - "type": "CallExpression", - "start": 5995, - "end": 6085, - "loc": { - "start": { - "line": 69, - "column": 773 - }, - "end": { - "line": 69, - "column": 863 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5995, - "end": 6001, - "loc": { - "start": { - "line": 69, - "column": 773 - }, - "end": { - "line": 69, - "column": 779 - } - }, - "object": { - "type": "Identifier", - "start": 5995, - "end": 5996, - "loc": { - "start": { - "line": 69, - "column": 773 - }, - "end": { - "line": 69, - "column": 774 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 5997, - "end": 6001, - "loc": { - "start": { - "line": 69, - "column": 775 - }, - "end": { - "line": 69, - "column": 779 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6002, - "end": 6084, - "loc": { - "start": { - "line": 69, - "column": 780 - }, - "end": { - "line": 69, - "column": 862 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6003, - "end": 6008, - "loc": { - "start": { - "line": 69, - "column": 781 - }, - "end": { - "line": 69, - "column": 786 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 6010, - "end": 6080, - "loc": { - "start": { - "line": 69, - "column": 788 - }, - "end": { - "line": 69, - "column": 858 - } - }, - "extra": { - "raw": "/^<(?:(?:(?:\\.\\.\\/)*|\\/?)(?:[\\w-]+(?:\\/[\\w-]+)+)?[\\w-]+\\.h|[a-z]\\w*)>/" - }, - "pattern": "^<(?:(?:(?:\\.\\.\\/)*|\\/?)(?:[\\w-]+(?:\\/[\\w-]+)+)?[\\w-]+\\.h|[a-z]\\w*)>", - "flags": "" - }, - { - "type": "Identifier", - "start": 6082, - "end": 6083, - "loc": { - "start": { - "line": 69, - "column": 860 - }, - "end": { - "line": 69, - "column": 861 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - } - ], - "extra": { - "parenthesized": true, - "parenStart": 5794 - } - }, - "alternate": { - "type": "CallExpression", - "start": 6089, - "end": 6126, - "loc": { - "start": { - "line": 69, - "column": 867 - }, - "end": { - "line": 69, - "column": 904 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6089, - "end": 6095, - "loc": { - "start": { - "line": 69, - "column": 867 - }, - "end": { - "line": 69, - "column": 873 - } - }, - "object": { - "type": "Identifier", - "start": 6089, - "end": 6090, - "loc": { - "start": { - "line": 69, - "column": 867 - }, - "end": { - "line": 69, - "column": 868 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 6091, - "end": 6095, - "loc": { - "start": { - "line": 69, - "column": 869 - }, - "end": { - "line": 69, - "column": 873 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6096, - "end": 6125, - "loc": { - "start": { - "line": 69, - "column": 874 - }, - "end": { - "line": 69, - "column": 903 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6097, - "end": 6102, - "loc": { - "start": { - "line": 69, - "column": 875 - }, - "end": { - "line": 69, - "column": 880 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 6104, - "end": 6116, - "loc": { - "start": { - "line": 69, - "column": 882 - }, - "end": { - "line": 69, - "column": 894 - } - }, - "extra": { - "raw": "/^#[^\\n\\r]*/" - }, - "pattern": "^#[^\\n\\r]*", - "flags": "" - }, - { - "type": "Identifier", - "start": 6118, - "end": 6119, - "loc": { - "start": { - "line": 69, - "column": 896 - }, - "end": { - "line": 69, - "column": 897 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 6121, - "end": 6124, - "loc": { - "start": { - "line": 69, - "column": 899 - }, - "end": { - "line": 69, - "column": 902 - } - }, - "extra": { - "rawValue": "#", - "raw": "\"#\"" - }, - "value": "#" - } - ] - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 5774 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 6128, - "end": 6233, - "loc": { - "start": { - "line": 69, - "column": 906 - }, - "end": { - "line": 69, - "column": 1011 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 6128, - "end": 6232, - "loc": { - "start": { - "line": 69, - "column": 906 - }, - "end": { - "line": 69, - "column": 1010 - } - }, - "left": { - "type": "MemberExpression", - "start": 6128, - "end": 6144, - "loc": { - "start": { - "line": 69, - "column": 906 - }, - "end": { - "line": 69, - "column": 922 - } - }, - "object": { - "type": "Identifier", - "start": 6128, - "end": 6129, - "loc": { - "start": { - "line": 69, - "column": 906 - }, - "end": { - "line": 69, - "column": 907 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6130, - "end": 6144, - "loc": { - "start": { - "line": 69, - "column": 908 - }, - "end": { - "line": 69, - "column": 922 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "SequenceExpression", - "start": 6149, - "end": 6231, - "loc": { - "start": { - "line": 69, - "column": 927 - }, - "end": { - "line": 69, - "column": 1009 - } - }, - "expressions": [ - { - "type": "CallExpression", - "start": 6149, - "end": 6184, - "loc": { - "start": { - "line": 69, - "column": 927 - }, - "end": { - "line": 69, - "column": 962 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6149, - "end": 6155, - "loc": { - "start": { - "line": 69, - "column": 927 - }, - "end": { - "line": 69, - "column": 933 - } - }, - "object": { - "type": "Identifier", - "start": 6149, - "end": 6150, - "loc": { - "start": { - "line": 69, - "column": 927 - }, - "end": { - "line": 69, - "column": 928 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6151, - "end": 6155, - "loc": { - "start": { - "line": 69, - "column": 929 - }, - "end": { - "line": 69, - "column": 933 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6156, - "end": 6183, - "loc": { - "start": { - "line": 69, - "column": 934 - }, - "end": { - "line": 69, - "column": 961 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6157, - "end": 6162, - "loc": { - "start": { - "line": 69, - "column": 935 - }, - "end": { - "line": 69, - "column": 940 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 6164, - "end": 6179, - "loc": { - "start": { - "line": 69, - "column": 942 - }, - "end": { - "line": 69, - "column": 957 - } - }, - "extra": { - "raw": "/^\\/\\/[^\\n\\r]*/" - }, - "pattern": "^\\/\\/[^\\n\\r]*", - "flags": "" - }, - { - "type": "Identifier", - "start": 6181, - "end": 6182, - "loc": { - "start": { - "line": 69, - "column": 959 - }, - "end": { - "line": 69, - "column": 960 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - }, - { - "type": "CallExpression", - "start": 6186, - "end": 6231, - "loc": { - "start": { - "line": 69, - "column": 964 - }, - "end": { - "line": 69, - "column": 1009 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6186, - "end": 6192, - "loc": { - "start": { - "line": 69, - "column": 964 - }, - "end": { - "line": 69, - "column": 970 - } - }, - "object": { - "type": "Identifier", - "start": 6186, - "end": 6187, - "loc": { - "start": { - "line": 69, - "column": 964 - }, - "end": { - "line": 69, - "column": 965 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6188, - "end": 6192, - "loc": { - "start": { - "line": 69, - "column": 966 - }, - "end": { - "line": 69, - "column": 970 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6193, - "end": 6230, - "loc": { - "start": { - "line": 69, - "column": 971 - }, - "end": { - "line": 69, - "column": 1008 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6194, - "end": 6199, - "loc": { - "start": { - "line": 69, - "column": 972 - }, - "end": { - "line": 69, - "column": 977 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 6201, - "end": 6226, - "loc": { - "start": { - "line": 69, - "column": 979 - }, - "end": { - "line": 69, - "column": 1004 - } - }, - "extra": { - "raw": "/^\\/\\*[\\S\\s]*?(?:\\*\\/|$)/" - }, - "pattern": "^\\/\\*[\\S\\s]*?(?:\\*\\/|$)", - "flags": "" - }, - { - "type": "Identifier", - "start": 6228, - "end": 6229, - "loc": { - "start": { - "line": 69, - "column": 1006 - }, - "end": { - "line": 69, - "column": 1007 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - } - ], - "extra": { - "parenthesized": true, - "parenStart": 6148 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 6233, - "end": 6591, - "loc": { - "start": { - "line": 69, - "column": 1011 - }, - "end": { - "line": 69, - "column": 1369 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 6233, - "end": 6590, - "loc": { - "start": { - "line": 69, - "column": 1011 - }, - "end": { - "line": 69, - "column": 1368 - } - }, - "left": { - "type": "MemberExpression", - "start": 6233, - "end": 6248, - "loc": { - "start": { - "line": 69, - "column": 1011 - }, - "end": { - "line": 69, - "column": 1026 - } - }, - "object": { - "type": "Identifier", - "start": 6233, - "end": 6234, - "loc": { - "start": { - "line": 69, - "column": 1011 - }, - "end": { - "line": 69, - "column": 1012 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6235, - "end": 6248, - "loc": { - "start": { - "line": 69, - "column": 1013 - }, - "end": { - "line": 69, - "column": 1026 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 6252, - "end": 6590, - "loc": { - "start": { - "line": 69, - "column": 1030 - }, - "end": { - "line": 69, - "column": 1368 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6252, - "end": 6258, - "loc": { - "start": { - "line": 69, - "column": 1030 - }, - "end": { - "line": 69, - "column": 1036 - } - }, - "object": { - "type": "Identifier", - "start": 6252, - "end": 6253, - "loc": { - "start": { - "line": 69, - "column": 1030 - }, - "end": { - "line": 69, - "column": 1031 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6254, - "end": 6258, - "loc": { - "start": { - "line": 69, - "column": 1032 - }, - "end": { - "line": 69, - "column": 1036 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6259, - "end": 6589, - "loc": { - "start": { - "line": 69, - "column": 1037 - }, - "end": { - "line": 69, - "column": 1367 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6260, - "end": 6272, - "loc": { - "start": { - "line": 69, - "column": 1038 - }, - "end": { - "line": 69, - "column": 1050 - } - }, - "extra": { - "rawValue": "lang-regex", - "raw": "\"lang-regex\"" - }, - "value": "lang-regex" - }, - { - "type": "RegExpLiteral", - "start": 6274, - "end": 6588, - "loc": { - "start": { - "line": 69, - "column": 1052 - }, - "end": { - "line": 69, - "column": 1366 - } - }, - "extra": { - "raw": "/^(?:^^\\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|,|-=|->|\\/|\\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\\^=|\\^\\^|\\^\\^=|{|\\||\\|=|\\|\\||\\|\\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*(\\/(?=[^*/])(?:[^/[\\\\]|\\\\[\\S\\s]|\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*(?:]|$))+\\/)/" - }, - "pattern": "^(?:^^\\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|,|-=|->|\\/|\\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\\^=|\\^\\^|\\^\\^=|{|\\||\\|=|\\|\\||\\|\\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*(\\/(?=[^*/])(?:[^/[\\\\]|\\\\[\\S\\s]|\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*(?:]|$))+\\/)", - "flags": "" - } - ] - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 6591, - "end": 6627, - "loc": { - "start": { - "line": 69, - "column": 1369 - }, - "end": { - "line": 69, - "column": 1405 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 6591, - "end": 6626, - "loc": { - "start": { - "line": 69, - "column": 1369 - }, - "end": { - "line": 69, - "column": 1404 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 6592, - "end": 6603, - "loc": { - "start": { - "line": 69, - "column": 1370 - }, - "end": { - "line": 69, - "column": 1381 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 6592, - "end": 6593, - "loc": { - "start": { - "line": 69, - "column": 1370 - }, - "end": { - "line": 69, - "column": 1371 - }, - "identifierName": "h" - }, - "name": "h" - }, - "right": { - "type": "MemberExpression", - "start": 6596, - "end": 6603, - "loc": { - "start": { - "line": 69, - "column": 1374 - }, - "end": { - "line": 69, - "column": 1381 - } - }, - "object": { - "type": "Identifier", - "start": 6596, - "end": 6597, - "loc": { - "start": { - "line": 69, - "column": 1374 - }, - "end": { - "line": 69, - "column": 1375 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6598, - "end": 6603, - "loc": { - "start": { - "line": 69, - "column": 1376 - }, - "end": { - "line": 69, - "column": 1381 - }, - "identifierName": "types" - }, - "name": "types" - }, - "computed": false - }, - "extra": { - "parenthesized": true, - "parenStart": 6591 - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 6608, - "end": 6626, - "loc": { - "start": { - "line": 69, - "column": 1386 - }, - "end": { - "line": 69, - "column": 1404 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6608, - "end": 6614, - "loc": { - "start": { - "line": 69, - "column": 1386 - }, - "end": { - "line": 69, - "column": 1392 - } - }, - "object": { - "type": "Identifier", - "start": 6608, - "end": 6609, - "loc": { - "start": { - "line": 69, - "column": 1386 - }, - "end": { - "line": 69, - "column": 1387 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6610, - "end": 6614, - "loc": { - "start": { - "line": 69, - "column": 1388 - }, - "end": { - "line": 69, - "column": 1392 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6615, - "end": 6625, - "loc": { - "start": { - "line": 69, - "column": 1393 - }, - "end": { - "line": 69, - "column": 1403 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6616, - "end": 6621, - "loc": { - "start": { - "line": 69, - "column": 1394 - }, - "end": { - "line": 69, - "column": 1399 - } - }, - "extra": { - "rawValue": "typ", - "raw": "\"typ\"" - }, - "value": "typ" - }, - { - "type": "Identifier", - "start": 6623, - "end": 6624, - "loc": { - "start": { - "line": 69, - "column": 1401 - }, - "end": { - "line": 69, - "column": 1402 - }, - "identifierName": "h" - }, - "name": "h" - } - ] - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 6627, - "end": 6671, - "loc": { - "start": { - "line": 69, - "column": 1405 - }, - "end": { - "line": 69, - "column": 1449 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 6627, - "end": 6670, - "loc": { - "start": { - "line": 69, - "column": 1405 - }, - "end": { - "line": 69, - "column": 1448 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 6627, - "end": 6628, - "loc": { - "start": { - "line": 69, - "column": 1405 - }, - "end": { - "line": 69, - "column": 1406 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "CallExpression", - "start": 6631, - "end": 6670, - "loc": { - "start": { - "line": 69, - "column": 1409 - }, - "end": { - "line": 69, - "column": 1448 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6631, - "end": 6656, - "loc": { - "start": { - "line": 69, - "column": 1409 - }, - "end": { - "line": 69, - "column": 1434 - } - }, - "object": { - "type": "BinaryExpression", - "start": 6632, - "end": 6647, - "loc": { - "start": { - "line": 69, - "column": 1410 - }, - "end": { - "line": 69, - "column": 1425 - } - }, - "left": { - "type": "StringLiteral", - "start": 6632, - "end": 6634, - "loc": { - "start": { - "line": 69, - "column": 1410 - }, - "end": { - "line": 69, - "column": 1412 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 6637, - "end": 6647, - "loc": { - "start": { - "line": 69, - "column": 1415 - }, - "end": { - "line": 69, - "column": 1425 - } - }, - "object": { - "type": "Identifier", - "start": 6637, - "end": 6638, - "loc": { - "start": { - "line": 69, - "column": 1415 - }, - "end": { - "line": 69, - "column": 1416 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6639, - "end": 6647, - "loc": { - "start": { - "line": 69, - "column": 1417 - }, - "end": { - "line": 69, - "column": 1425 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "computed": false - }, - "extra": { - "parenthesized": true, - "parenStart": 6631 - } - }, - "property": { - "type": "Identifier", - "start": 6649, - "end": 6656, - "loc": { - "start": { - "line": 69, - "column": 1427 - }, - "end": { - "line": 69, - "column": 1434 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 6657, - "end": 6665, - "loc": { - "start": { - "line": 69, - "column": 1435 - }, - "end": { - "line": 69, - "column": 1443 - } - }, - "extra": { - "raw": "/^ | $/g" - }, - "pattern": "^ | $", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 6667, - "end": 6669, - "loc": { - "start": { - "line": 69, - "column": 1445 - }, - "end": { - "line": 69, - "column": 1447 - } - }, - "extra": { - "rawValue": "", - "raw": "\"\"" - }, - "value": "" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 6671, - "end": 6755, - "loc": { - "start": { - "line": 69, - "column": 1449 - }, - "end": { - "line": 69, - "column": 1533 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 6671, - "end": 6754, - "loc": { - "start": { - "line": 69, - "column": 1449 - }, - "end": { - "line": 69, - "column": 1532 - } - }, - "left": { - "type": "MemberExpression", - "start": 6671, - "end": 6679, - "loc": { - "start": { - "line": 69, - "column": 1449 - }, - "end": { - "line": 69, - "column": 1457 - } - }, - "object": { - "type": "Identifier", - "start": 6671, - "end": 6672, - "loc": { - "start": { - "line": 69, - "column": 1449 - }, - "end": { - "line": 69, - "column": 1450 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6673, - "end": 6679, - "loc": { - "start": { - "line": 69, - "column": 1451 - }, - "end": { - "line": 69, - "column": 1457 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 6683, - "end": 6754, - "loc": { - "start": { - "line": 69, - "column": 1461 - }, - "end": { - "line": 69, - "column": 1532 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6683, - "end": 6689, - "loc": { - "start": { - "line": 69, - "column": 1461 - }, - "end": { - "line": 69, - "column": 1467 - } - }, - "object": { - "type": "Identifier", - "start": 6683, - "end": 6684, - "loc": { - "start": { - "line": 69, - "column": 1461 - }, - "end": { - "line": 69, - "column": 1462 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6685, - "end": 6689, - "loc": { - "start": { - "line": 69, - "column": 1463 - }, - "end": { - "line": 69, - "column": 1467 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6690, - "end": 6753, - "loc": { - "start": { - "line": 69, - "column": 1468 - }, - "end": { - "line": 69, - "column": 1531 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6691, - "end": 6696, - "loc": { - "start": { - "line": 69, - "column": 1469 - }, - "end": { - "line": 69, - "column": 1474 - } - }, - "extra": { - "rawValue": "kwd", - "raw": "\"kwd\"" - }, - "value": "kwd" - }, - { - "type": "CallExpression", - "start": 6698, - "end": 6749, - "loc": { - "start": { - "line": 69, - "column": 1476 - }, - "end": { - "line": 69, - "column": 1527 - } - }, - "callee": { - "type": "Identifier", - "start": 6698, - "end": 6704, - "loc": { - "start": { - "line": 69, - "column": 1476 - }, - "end": { - "line": 69, - "column": 1482 - }, - "identifierName": "RegExp" - }, - "name": "RegExp" - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 6705, - "end": 6748, - "loc": { - "start": { - "line": 69, - "column": 1483 - }, - "end": { - "line": 69, - "column": 1526 - } - }, - "left": { - "type": "BinaryExpression", - "start": 6705, - "end": 6739, - "loc": { - "start": { - "line": 69, - "column": 1483 - }, - "end": { - "line": 69, - "column": 1517 - } - }, - "left": { - "type": "StringLiteral", - "start": 6705, - "end": 6711, - "loc": { - "start": { - "line": 69, - "column": 1483 - }, - "end": { - "line": 69, - "column": 1489 - } - }, - "extra": { - "rawValue": "^(?:", - "raw": "\"^(?:\"" - }, - "value": "^(?:" - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 6714, - "end": 6739, - "loc": { - "start": { - "line": 69, - "column": 1492 - }, - "end": { - "line": 69, - "column": 1517 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6714, - "end": 6723, - "loc": { - "start": { - "line": 69, - "column": 1492 - }, - "end": { - "line": 69, - "column": 1501 - } - }, - "object": { - "type": "Identifier", - "start": 6714, - "end": 6715, - "loc": { - "start": { - "line": 69, - "column": 1492 - }, - "end": { - "line": 69, - "column": 1493 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 6716, - "end": 6723, - "loc": { - "start": { - "line": 69, - "column": 1494 - }, - "end": { - "line": 69, - "column": 1501 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 6724, - "end": 6733, - "loc": { - "start": { - "line": 69, - "column": 1502 - }, - "end": { - "line": 69, - "column": 1511 - } - }, - "extra": { - "raw": "/[\\s,]+/g" - }, - "pattern": "[\\s,]+", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 6735, - "end": 6738, - "loc": { - "start": { - "line": 69, - "column": 1513 - }, - "end": { - "line": 69, - "column": 1516 - } - }, - "extra": { - "rawValue": "|", - "raw": "\"|\"" - }, - "value": "|" - } - ] - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 6742, - "end": 6748, - "loc": { - "start": { - "line": 69, - "column": 1520 - }, - "end": { - "line": 69, - "column": 1526 - } - }, - "extra": { - "rawValue": ")\\b", - "raw": "\")\\\\b\"" - }, - "value": ")\\b" - } - } - ] - }, - { - "type": "Identifier", - "start": 6751, - "end": 6752, - "loc": { - "start": { - "line": 69, - "column": 1529 - }, - "end": { - "line": 69, - "column": 1530 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 6755, - "end": 6797, - "loc": { - "start": { - "line": 69, - "column": 1533 - }, - "end": { - "line": 69, - "column": 1575 - } - }, - "expression": { - "type": "CallExpression", - "start": 6755, - "end": 6796, - "loc": { - "start": { - "line": 69, - "column": 1533 - }, - "end": { - "line": 69, - "column": 1574 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6755, - "end": 6761, - "loc": { - "start": { - "line": 69, - "column": 1533 - }, - "end": { - "line": 69, - "column": 1539 - } - }, - "object": { - "type": "Identifier", - "start": 6755, - "end": 6756, - "loc": { - "start": { - "line": 69, - "column": 1533 - }, - "end": { - "line": 69, - "column": 1534 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 6757, - "end": 6761, - "loc": { - "start": { - "line": 69, - "column": 1535 - }, - "end": { - "line": 69, - "column": 1539 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6762, - "end": 6795, - "loc": { - "start": { - "line": 69, - "column": 1540 - }, - "end": { - "line": 69, - "column": 1573 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6763, - "end": 6768, - "loc": { - "start": { - "line": 69, - "column": 1541 - }, - "end": { - "line": 69, - "column": 1546 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - { - "type": "RegExpLiteral", - "start": 6770, - "end": 6776, - "loc": { - "start": { - "line": 69, - "column": 1548 - }, - "end": { - "line": 69, - "column": 1554 - } - }, - "extra": { - "raw": "/^\\s+/" - }, - "pattern": "^\\s+", - "flags": "" - }, - { - "type": "Identifier", - "start": 6778, - "end": 6779, - "loc": { - "start": { - "line": 69, - "column": 1556 - }, - "end": { - "line": 69, - "column": 1557 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 6781, - "end": 6794, - "loc": { - "start": { - "line": 69, - "column": 1559 - }, - "end": { - "line": 69, - "column": 1572 - } - }, - "extra": { - "rawValue": " \r\n\t ", - "raw": "\" \\r\\n\\t\\xa0\"" - }, - "value": " \r\n\t " - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 6797, - "end": 7085, - "loc": { - "start": { - "line": 69, - "column": 1575 - }, - "end": { - "line": 69, - "column": 1863 - } - }, - "expression": { - "type": "CallExpression", - "start": 6797, - "end": 7084, - "loc": { - "start": { - "line": 69, - "column": 1575 - }, - "end": { - "line": 69, - "column": 1862 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6797, - "end": 6803, - "loc": { - "start": { - "line": 69, - "column": 1575 - }, - "end": { - "line": 69, - "column": 1581 - } - }, - "object": { - "type": "Identifier", - "start": 6797, - "end": 6798, - "loc": { - "start": { - "line": 69, - "column": 1575 - }, - "end": { - "line": 69, - "column": 1576 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 6799, - "end": 6803, - "loc": { - "start": { - "line": 69, - "column": 1577 - }, - "end": { - "line": 69, - "column": 1581 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 6804, - "end": 6835, - "loc": { - "start": { - "line": 69, - "column": 1582 - }, - "end": { - "line": 69, - "column": 1613 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6805, - "end": 6810, - "loc": { - "start": { - "line": 69, - "column": 1583 - }, - "end": { - "line": 69, - "column": 1588 - } - }, - "extra": { - "rawValue": "lit", - "raw": "\"lit\"" - }, - "value": "lit" - }, - { - "type": "RegExpLiteral", - "start": 6812, - "end": 6831, - "loc": { - "start": { - "line": 69, - "column": 1590 - }, - "end": { - "line": 69, - "column": 1609 - } - }, - "extra": { - "raw": "/^@[$_a-z][\\w$@]*/i" - }, - "pattern": "^@[$_a-z][\\w$@]*", - "flags": "i" - }, - { - "type": "Identifier", - "start": 6833, - "end": 6834, - "loc": { - "start": { - "line": 69, - "column": 1611 - }, - "end": { - "line": 69, - "column": 1612 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6837, - "end": 6887, - "loc": { - "start": { - "line": 69, - "column": 1615 - }, - "end": { - "line": 69, - "column": 1665 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6838, - "end": 6843, - "loc": { - "start": { - "line": 69, - "column": 1616 - }, - "end": { - "line": 69, - "column": 1621 - } - }, - "extra": { - "rawValue": "typ", - "raw": "\"typ\"" - }, - "value": "typ" - }, - { - "type": "RegExpLiteral", - "start": 6845, - "end": 6883, - "loc": { - "start": { - "line": 69, - "column": 1623 - }, - "end": { - "line": 69, - "column": 1661 - } - }, - "extra": { - "raw": "/^(?:[@_]?[A-Z]+[a-z][\\w$@]*|\\w+_t\\b)/" - }, - "pattern": "^(?:[@_]?[A-Z]+[a-z][\\w$@]*|\\w+_t\\b)", - "flags": "" - }, - { - "type": "Identifier", - "start": 6885, - "end": 6886, - "loc": { - "start": { - "line": 69, - "column": 1663 - }, - "end": { - "line": 69, - "column": 1664 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6889, - "end": 6919, - "loc": { - "start": { - "line": 69, - "column": 1667 - }, - "end": { - "line": 69, - "column": 1697 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6890, - "end": 6895, - "loc": { - "start": { - "line": 69, - "column": 1668 - }, - "end": { - "line": 69, - "column": 1673 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - { - "type": "RegExpLiteral", - "start": 6897, - "end": 6915, - "loc": { - "start": { - "line": 69, - "column": 1675 - }, - "end": { - "line": 69, - "column": 1693 - } - }, - "extra": { - "raw": "/^[$_a-z][\\w$@]*/i" - }, - "pattern": "^[$_a-z][\\w$@]*", - "flags": "i" - }, - { - "type": "Identifier", - "start": 6917, - "end": 6918, - "loc": { - "start": { - "line": 69, - "column": 1695 - }, - "end": { - "line": 69, - "column": 1696 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6921, - "end": 7021, - "loc": { - "start": { - "line": 69, - "column": 1699 - }, - "end": { - "line": 69, - "column": 1799 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6922, - "end": 6927, - "loc": { - "start": { - "line": 69, - "column": 1700 - }, - "end": { - "line": 69, - "column": 1705 - } - }, - "extra": { - "rawValue": "lit", - "raw": "\"lit\"" - }, - "value": "lit" - }, - { - "type": "RegExpLiteral", - "start": 6929, - "end": 7003, - "loc": { - "start": { - "line": 69, - "column": 1707 - }, - "end": { - "line": 69, - "column": 1781 - } - }, - "extra": { - "raw": "/^(?:0x[\\da-f]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+-]?\\d+)?)[a-z]*/i" - }, - "pattern": "^(?:0x[\\da-f]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+-]?\\d+)?)[a-z]*", - "flags": "i" - }, - { - "type": "Identifier", - "start": 7005, - "end": 7006, - "loc": { - "start": { - "line": 69, - "column": 1783 - }, - "end": { - "line": 69, - "column": 1784 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 7008, - "end": 7020, - "loc": { - "start": { - "line": 69, - "column": 1786 - }, - "end": { - "line": 69, - "column": 1798 - } - }, - "extra": { - "rawValue": "0123456789", - "raw": "\"0123456789\"" - }, - "value": "0123456789" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7023, - "end": 7047, - "loc": { - "start": { - "line": 69, - "column": 1801 - }, - "end": { - "line": 69, - "column": 1825 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7024, - "end": 7029, - "loc": { - "start": { - "line": 69, - "column": 1802 - }, - "end": { - "line": 69, - "column": 1807 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - { - "type": "RegExpLiteral", - "start": 7031, - "end": 7043, - "loc": { - "start": { - "line": 69, - "column": 1809 - }, - "end": { - "line": 69, - "column": 1821 - } - }, - "extra": { - "raw": "/^\\\\[\\S\\s]?/" - }, - "pattern": "^\\\\[\\S\\s]?", - "flags": "" - }, - { - "type": "Identifier", - "start": 7045, - "end": 7046, - "loc": { - "start": { - "line": 69, - "column": 1823 - }, - "end": { - "line": 69, - "column": 1824 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7049, - "end": 7083, - "loc": { - "start": { - "line": 69, - "column": 1827 - }, - "end": { - "line": 69, - "column": 1861 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7050, - "end": 7055, - "loc": { - "start": { - "line": 69, - "column": 1828 - }, - "end": { - "line": 69, - "column": 1833 - } - }, - "extra": { - "rawValue": "pun", - "raw": "\"pun\"" - }, - "value": "pun" - }, - { - "type": "RegExpLiteral", - "start": 7057, - "end": 7079, - "loc": { - "start": { - "line": 69, - "column": 1835 - }, - "end": { - "line": 69, - "column": 1857 - } - }, - "extra": { - "raw": "/^.[^\\s\\w\"-$'./@\\\\`]*/" - }, - "pattern": "^.[^\\s\\w\"-$'./@\\\\`]*", - "flags": "" - }, - { - "type": "Identifier", - "start": 7081, - "end": 7082, - "loc": { - "start": { - "line": 69, - "column": 1859 - }, - "end": { - "line": 69, - "column": 1860 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 7085, - "end": 7100, - "loc": { - "start": { - "line": 69, - "column": 1863 - }, - "end": { - "line": 69, - "column": 1878 - } - }, - "argument": { - "type": "CallExpression", - "start": 7092, - "end": 7099, - "loc": { - "start": { - "line": 69, - "column": 1870 - }, - "end": { - "line": 69, - "column": 1877 - } - }, - "callee": { - "type": "Identifier", - "start": 7092, - "end": 7093, - "loc": { - "start": { - "line": 69, - "column": 1870 - }, - "end": { - "line": 69, - "column": 1871 - }, - "identifierName": "x" - }, - "name": "x" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7094, - "end": 7095, - "loc": { - "start": { - "line": 69, - "column": 1872 - }, - "end": { - "line": 69, - "column": 1873 - }, - "identifierName": "m" - }, - "name": "m" - }, - { - "type": "Identifier", - "start": 7097, - "end": 7098, - "loc": { - "start": { - "line": 69, - "column": 1875 - }, - "end": { - "line": 69, - "column": 1876 - }, - "identifierName": "e" - }, - "name": "e" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 7104, - "end": 8882, - "loc": { - "start": { - "line": 70, - "column": 3 - }, - "end": { - "line": 93, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 7113, - "end": 7114, - "loc": { - "start": { - "line": 70, - "column": 12 - }, - "end": { - "line": 70, - "column": 13 - }, - "identifierName": "D" - }, - "name": "D" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 7115, - "end": 7116, - "loc": { - "start": { - "line": 70, - "column": 14 - }, - "end": { - "line": 70, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 7118, - "end": 7119, - "loc": { - "start": { - "line": 70, - "column": 17 - }, - "end": { - "line": 70, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - } - ], - "body": { - "type": "BlockStatement", - "start": 7121, - "end": 8882, - "loc": { - "start": { - "line": 70, - "column": 20 - }, - "end": { - "line": 93, - "column": 3 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 7127, - "end": 7701, - "loc": { - "start": { - "line": 71, - "column": 4 - }, - "end": { - "line": 80, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 7136, - "end": 7137, - "loc": { - "start": { - "line": 71, - "column": 13 - }, - "end": { - "line": 71, - "column": 14 - }, - "identifierName": "e" - }, - "name": "e" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 7138, - "end": 7139, - "loc": { - "start": { - "line": 71, - "column": 15 - }, - "end": { - "line": 71, - "column": 16 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 7141, - "end": 7701, - "loc": { - "start": { - "line": 71, - "column": 18 - }, - "end": { - "line": 80, - "column": 5 - } - }, - "body": [ - { - "type": "SwitchStatement", - "start": 7149, - "end": 7695, - "loc": { - "start": { - "line": 72, - "column": 6 - }, - "end": { - "line": 79, - "column": 12 - } - }, - "discriminant": { - "type": "MemberExpression", - "start": 7157, - "end": 7167, - "loc": { - "start": { - "line": 72, - "column": 14 - }, - "end": { - "line": 72, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 7157, - "end": 7158, - "loc": { - "start": { - "line": 72, - "column": 14 - }, - "end": { - "line": 72, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7159, - "end": 7167, - "loc": { - "start": { - "line": 72, - "column": 16 - }, - "end": { - "line": 72, - "column": 24 - }, - "identifierName": "nodeType" - }, - "name": "nodeType" - }, - "computed": false - }, - "cases": [ - { - "type": "SwitchCase", - "start": 7170, - "end": 7355, - "loc": { - "start": { - "line": 72, - "column": 27 - }, - "end": { - "line": 73, - "column": 177 - } - }, - "consequent": [ - { - "type": "IfStatement", - "start": 7188, - "end": 7219, - "loc": { - "start": { - "line": 73, - "column": 10 - }, - "end": { - "line": 73, - "column": 41 - } - }, - "test": { - "type": "CallExpression", - "start": 7192, - "end": 7211, - "loc": { - "start": { - "line": 73, - "column": 14 - }, - "end": { - "line": 73, - "column": 33 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7192, - "end": 7198, - "loc": { - "start": { - "line": 73, - "column": 14 - }, - "end": { - "line": 73, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 7192, - "end": 7193, - "loc": { - "start": { - "line": 73, - "column": 14 - }, - "end": { - "line": 73, - "column": 15 - }, - "identifierName": "k" - }, - "name": "k" - }, - "property": { - "type": "Identifier", - "start": 7194, - "end": 7198, - "loc": { - "start": { - "line": 73, - "column": 16 - }, - "end": { - "line": 73, - "column": 20 - }, - "identifierName": "test" - }, - "name": "test" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 7199, - "end": 7210, - "loc": { - "start": { - "line": 73, - "column": 21 - }, - "end": { - "line": 73, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 7199, - "end": 7200, - "loc": { - "start": { - "line": 73, - "column": 21 - }, - "end": { - "line": 73, - "column": 22 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7201, - "end": 7210, - "loc": { - "start": { - "line": 73, - "column": 23 - }, - "end": { - "line": 73, - "column": 32 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - } - ] - }, - "consequent": { - "type": "BreakStatement", - "start": 7213, - "end": 7219, - "loc": { - "start": { - "line": 73, - "column": 35 - }, - "end": { - "line": 73, - "column": 41 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 7219, - "end": 7349, - "loc": { - "start": { - "line": 73, - "column": 41 - }, - "end": { - "line": 73, - "column": 171 - } - }, - "test": { - "type": "BinaryExpression", - "start": 7223, - "end": 7242, - "loc": { - "start": { - "line": 73, - "column": 45 - }, - "end": { - "line": 73, - "column": 64 - } - }, - "left": { - "type": "StringLiteral", - "start": 7223, - "end": 7227, - "loc": { - "start": { - "line": 73, - "column": 45 - }, - "end": { - "line": 73, - "column": 49 - } - }, - "extra": { - "rawValue": "BR", - "raw": "\"BR\"" - }, - "value": "BR" - }, - "operator": "===", - "right": { - "type": "MemberExpression", - "start": 7232, - "end": 7242, - "loc": { - "start": { - "line": 73, - "column": 54 - }, - "end": { - "line": 73, - "column": 64 - } - }, - "object": { - "type": "Identifier", - "start": 7232, - "end": 7233, - "loc": { - "start": { - "line": 73, - "column": 54 - }, - "end": { - "line": 73, - "column": 55 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7234, - "end": 7242, - "loc": { - "start": { - "line": 73, - "column": 56 - }, - "end": { - "line": 73, - "column": 64 - }, - "identifierName": "nodeName" - }, - "name": "nodeName" - }, - "computed": false - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 7244, - "end": 7294, - "loc": { - "start": { - "line": 73, - "column": 66 - }, - "end": { - "line": 73, - "column": 116 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 7244, - "end": 7293, - "loc": { - "start": { - "line": 73, - "column": 66 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "expressions": [ - { - "type": "CallExpression", - "start": 7244, - "end": 7248, - "loc": { - "start": { - "line": 73, - "column": 66 - }, - "end": { - "line": 73, - "column": 70 - } - }, - "callee": { - "type": "Identifier", - "start": 7244, - "end": 7245, - "loc": { - "start": { - "line": 73, - "column": 66 - }, - "end": { - "line": 73, - "column": 67 - }, - "identifierName": "h" - }, - "name": "h" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7246, - "end": 7247, - "loc": { - "start": { - "line": 73, - "column": 68 - }, - "end": { - "line": 73, - "column": 69 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - }, - { - "type": "LogicalExpression", - "start": 7250, - "end": 7293, - "loc": { - "start": { - "line": 73, - "column": 72 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "left": { - "type": "MemberExpression", - "start": 7250, - "end": 7262, - "loc": { - "start": { - "line": 73, - "column": 72 - }, - "end": { - "line": 73, - "column": 84 - } - }, - "object": { - "type": "Identifier", - "start": 7250, - "end": 7251, - "loc": { - "start": { - "line": 73, - "column": 72 - }, - "end": { - "line": 73, - "column": 73 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7252, - "end": 7262, - "loc": { - "start": { - "line": 73, - "column": 74 - }, - "end": { - "line": 73, - "column": 84 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 7266, - "end": 7293, - "loc": { - "start": { - "line": 73, - "column": 88 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7266, - "end": 7290, - "loc": { - "start": { - "line": 73, - "column": 88 - }, - "end": { - "line": 73, - "column": 112 - } - }, - "object": { - "type": "MemberExpression", - "start": 7266, - "end": 7278, - "loc": { - "start": { - "line": 73, - "column": 88 - }, - "end": { - "line": 73, - "column": 100 - } - }, - "object": { - "type": "Identifier", - "start": 7266, - "end": 7267, - "loc": { - "start": { - "line": 73, - "column": 88 - }, - "end": { - "line": 73, - "column": 89 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7268, - "end": 7278, - "loc": { - "start": { - "line": 73, - "column": 90 - }, - "end": { - "line": 73, - "column": 100 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 7279, - "end": 7290, - "loc": { - "start": { - "line": 73, - "column": 101 - }, - "end": { - "line": 73, - "column": 112 - }, - "identifierName": "removeChild" - }, - "name": "removeChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7291, - "end": 7292, - "loc": { - "start": { - "line": 73, - "column": 113 - }, - "end": { - "line": 73, - "column": 114 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - } - ] - } - }, - "alternate": { - "type": "ForStatement", - "start": 7299, - "end": 7349, - "loc": { - "start": { - "line": 73, - "column": 121 - }, - "end": { - "line": 73, - "column": 171 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 7304, - "end": 7320, - "loc": { - "start": { - "line": 73, - "column": 126 - }, - "end": { - "line": 73, - "column": 142 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 7304, - "end": 7305, - "loc": { - "start": { - "line": 73, - "column": 126 - }, - "end": { - "line": 73, - "column": 127 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "MemberExpression", - "start": 7308, - "end": 7320, - "loc": { - "start": { - "line": 73, - "column": 130 - }, - "end": { - "line": 73, - "column": 142 - } - }, - "object": { - "type": "Identifier", - "start": 7308, - "end": 7309, - "loc": { - "start": { - "line": 73, - "column": 130 - }, - "end": { - "line": 73, - "column": 131 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7310, - "end": 7320, - "loc": { - "start": { - "line": 73, - "column": 132 - }, - "end": { - "line": 73, - "column": 142 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - } - }, - "test": { - "type": "Identifier", - "start": 7322, - "end": 7323, - "loc": { - "start": { - "line": 73, - "column": 144 - }, - "end": { - "line": 73, - "column": 145 - }, - "identifierName": "a" - }, - "name": "a" - }, - "update": { - "type": "AssignmentExpression", - "start": 7325, - "end": 7342, - "loc": { - "start": { - "line": 73, - "column": 147 - }, - "end": { - "line": 73, - "column": 164 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 7325, - "end": 7326, - "loc": { - "start": { - "line": 73, - "column": 147 - }, - "end": { - "line": 73, - "column": 148 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "MemberExpression", - "start": 7329, - "end": 7342, - "loc": { - "start": { - "line": 73, - "column": 151 - }, - "end": { - "line": 73, - "column": 164 - } - }, - "object": { - "type": "Identifier", - "start": 7329, - "end": 7330, - "loc": { - "start": { - "line": 73, - "column": 151 - }, - "end": { - "line": 73, - "column": 152 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7331, - "end": 7342, - "loc": { - "start": { - "line": 73, - "column": 153 - }, - "end": { - "line": 73, - "column": 164 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 7344, - "end": 7349, - "loc": { - "start": { - "line": 73, - "column": 166 - }, - "end": { - "line": 73, - "column": 171 - } - }, - "expression": { - "type": "CallExpression", - "start": 7344, - "end": 7348, - "loc": { - "start": { - "line": 73, - "column": 166 - }, - "end": { - "line": 73, - "column": 170 - } - }, - "callee": { - "type": "Identifier", - "start": 7344, - "end": 7345, - "loc": { - "start": { - "line": 73, - "column": 166 - }, - "end": { - "line": 73, - "column": 167 - }, - "identifierName": "e" - }, - "name": "e" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7346, - "end": 7347, - "loc": { - "start": { - "line": 73, - "column": 168 - }, - "end": { - "line": 73, - "column": 169 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - } - } - }, - { - "type": "BreakStatement", - "start": 7349, - "end": 7355, - "loc": { - "start": { - "line": 73, - "column": 171 - }, - "end": { - "line": 73, - "column": 177 - } - }, - "label": null - } - ], - "test": { - "type": "NumericLiteral", - "start": 7175, - "end": 7176, - "loc": { - "start": { - "line": 72, - "column": 32 - }, - "end": { - "line": 72, - "column": 33 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - { - "type": "SwitchCase", - "start": 7355, - "end": 7362, - "loc": { - "start": { - "line": 73, - "column": 177 - }, - "end": { - "line": 73, - "column": 184 - } - }, - "consequent": [], - "test": { - "type": "NumericLiteral", - "start": 7360, - "end": 7361, - "loc": { - "start": { - "line": 73, - "column": 182 - }, - "end": { - "line": 73, - "column": 183 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - }, - { - "type": "SwitchCase", - "start": 7362, - "end": 7694, - "loc": { - "start": { - "line": 73, - "column": 184 - }, - "end": { - "line": 79, - "column": 11 - } - }, - "consequent": [ - { - "type": "IfStatement", - "start": 7380, - "end": 7694, - "loc": { - "start": { - "line": 74, - "column": 10 - }, - "end": { - "line": 79, - "column": 11 - } - }, - "test": { - "type": "Identifier", - "start": 7384, - "end": 7385, - "loc": { - "start": { - "line": 74, - "column": 14 - }, - "end": { - "line": 74, - "column": 15 - }, - "identifierName": "p" - }, - "name": "p" - }, - "consequent": { - "type": "BlockStatement", - "start": 7387, - "end": 7694, - "loc": { - "start": { - "line": 74, - "column": 17 - }, - "end": { - "line": 79, - "column": 11 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 7401, - "end": 7453, - "loc": { - "start": { - "line": 75, - "column": 12 - }, - "end": { - "line": 76, - "column": 31 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7405, - "end": 7420, - "loc": { - "start": { - "line": 75, - "column": 16 - }, - "end": { - "line": 75, - "column": 31 - } - }, - "id": { - "type": "Identifier", - "start": 7405, - "end": 7406, - "loc": { - "start": { - "line": 75, - "column": 16 - }, - "end": { - "line": 75, - "column": 17 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": { - "type": "MemberExpression", - "start": 7409, - "end": 7420, - "loc": { - "start": { - "line": 75, - "column": 20 - }, - "end": { - "line": 75, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 7409, - "end": 7410, - "loc": { - "start": { - "line": 75, - "column": 20 - }, - "end": { - "line": 75, - "column": 21 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7411, - "end": 7420, - "loc": { - "start": { - "line": 75, - "column": 22 - }, - "end": { - "line": 75, - "column": 31 - }, - "identifierName": "nodeValue" - }, - "name": "nodeValue" - }, - "computed": false - } - }, - { - "type": "VariableDeclarator", - "start": 7438, - "end": 7452, - "loc": { - "start": { - "line": 76, - "column": 16 - }, - "end": { - "line": 76, - "column": 30 - } - }, - "id": { - "type": "Identifier", - "start": 7438, - "end": 7439, - "loc": { - "start": { - "line": 76, - "column": 16 - }, - "end": { - "line": 76, - "column": 17 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "CallExpression", - "start": 7442, - "end": 7452, - "loc": { - "start": { - "line": 76, - "column": 20 - }, - "end": { - "line": 76, - "column": 30 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7442, - "end": 7449, - "loc": { - "start": { - "line": 76, - "column": 20 - }, - "end": { - "line": 76, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 7442, - "end": 7443, - "loc": { - "start": { - "line": 76, - "column": 20 - }, - "end": { - "line": 76, - "column": 21 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 7444, - "end": 7449, - "loc": { - "start": { - "line": 76, - "column": 22 - }, - "end": { - "line": 76, - "column": 27 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7450, - "end": 7451, - "loc": { - "start": { - "line": 76, - "column": 28 - }, - "end": { - "line": 76, - "column": 29 - }, - "identifierName": "t" - }, - "name": "t" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 7453, - "end": 7682, - "loc": { - "start": { - "line": 76, - "column": 31 - }, - "end": { - "line": 78, - "column": 13 - } - }, - "test": { - "type": "Identifier", - "start": 7457, - "end": 7458, - "loc": { - "start": { - "line": 76, - "column": 35 - }, - "end": { - "line": 76, - "column": 36 - }, - "identifierName": "d" - }, - "name": "d" - }, - "consequent": { - "type": "BlockStatement", - "start": 7460, - "end": 7682, - "loc": { - "start": { - "line": 76, - "column": 38 - }, - "end": { - "line": 78, - "column": 13 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 7476, - "end": 7508, - "loc": { - "start": { - "line": 77, - "column": 14 - }, - "end": { - "line": 77, - "column": 46 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7480, - "end": 7507, - "loc": { - "start": { - "line": 77, - "column": 18 - }, - "end": { - "line": 77, - "column": 45 - } - }, - "id": { - "type": "Identifier", - "start": 7480, - "end": 7481, - "loc": { - "start": { - "line": 77, - "column": 18 - }, - "end": { - "line": 77, - "column": 19 - }, - "identifierName": "c" - }, - "name": "c" - }, - "init": { - "type": "CallExpression", - "start": 7484, - "end": 7507, - "loc": { - "start": { - "line": 77, - "column": 22 - }, - "end": { - "line": 77, - "column": 45 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7484, - "end": 7495, - "loc": { - "start": { - "line": 77, - "column": 22 - }, - "end": { - "line": 77, - "column": 33 - } - }, - "object": { - "type": "Identifier", - "start": 7484, - "end": 7485, - "loc": { - "start": { - "line": 77, - "column": 22 - }, - "end": { - "line": 77, - "column": 23 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 7486, - "end": 7495, - "loc": { - "start": { - "line": 77, - "column": 24 - }, - "end": { - "line": 77, - "column": 33 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 7496, - "end": 7497, - "loc": { - "start": { - "line": 77, - "column": 34 - }, - "end": { - "line": 77, - "column": 35 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "MemberExpression", - "start": 7499, - "end": 7506, - "loc": { - "start": { - "line": 77, - "column": 37 - }, - "end": { - "line": 77, - "column": 44 - } - }, - "object": { - "type": "Identifier", - "start": 7499, - "end": 7500, - "loc": { - "start": { - "line": 77, - "column": 37 - }, - "end": { - "line": 77, - "column": 38 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 7501, - "end": 7506, - "loc": { - "start": { - "line": 77, - "column": 39 - }, - "end": { - "line": 77, - "column": 44 - }, - "identifierName": "index" - }, - "name": "index" - }, - "computed": false - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 7508, - "end": 7524, - "loc": { - "start": { - "line": 77, - "column": 46 - }, - "end": { - "line": 77, - "column": 62 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 7508, - "end": 7523, - "loc": { - "start": { - "line": 77, - "column": 46 - }, - "end": { - "line": 77, - "column": 61 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 7508, - "end": 7519, - "loc": { - "start": { - "line": 77, - "column": 46 - }, - "end": { - "line": 77, - "column": 57 - } - }, - "object": { - "type": "Identifier", - "start": 7508, - "end": 7509, - "loc": { - "start": { - "line": 77, - "column": 46 - }, - "end": { - "line": 77, - "column": 47 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7510, - "end": 7519, - "loc": { - "start": { - "line": 77, - "column": 48 - }, - "end": { - "line": 77, - "column": 57 - }, - "identifierName": "nodeValue" - }, - "name": "nodeValue" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 7522, - "end": 7523, - "loc": { - "start": { - "line": 77, - "column": 60 - }, - "end": { - "line": 77, - "column": 61 - }, - "identifierName": "c" - }, - "name": "c" - } - } - }, - { - "type": "ExpressionStatement", - "start": 7524, - "end": 7630, - "loc": { - "start": { - "line": 77, - "column": 62 - }, - "end": { - "line": 77, - "column": 168 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 7524, - "end": 7629, - "loc": { - "start": { - "line": 77, - "column": 62 - }, - "end": { - "line": 77, - "column": 167 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 7525, - "end": 7563, - "loc": { - "start": { - "line": 77, - "column": 63 - }, - "end": { - "line": 77, - "column": 101 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 7525, - "end": 7526, - "loc": { - "start": { - "line": 77, - "column": 63 - }, - "end": { - "line": 77, - "column": 64 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "CallExpression", - "start": 7529, - "end": 7563, - "loc": { - "start": { - "line": 77, - "column": 67 - }, - "end": { - "line": 77, - "column": 101 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7529, - "end": 7540, - "loc": { - "start": { - "line": 77, - "column": 67 - }, - "end": { - "line": 77, - "column": 78 - } - }, - "object": { - "type": "Identifier", - "start": 7529, - "end": 7530, - "loc": { - "start": { - "line": 77, - "column": 67 - }, - "end": { - "line": 77, - "column": 68 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 7531, - "end": 7540, - "loc": { - "start": { - "line": 77, - "column": 69 - }, - "end": { - "line": 77, - "column": 78 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 7541, - "end": 7562, - "loc": { - "start": { - "line": 77, - "column": 79 - }, - "end": { - "line": 77, - "column": 100 - } - }, - "left": { - "type": "MemberExpression", - "start": 7541, - "end": 7548, - "loc": { - "start": { - "line": 77, - "column": 79 - }, - "end": { - "line": 77, - "column": 86 - } - }, - "object": { - "type": "Identifier", - "start": 7541, - "end": 7542, - "loc": { - "start": { - "line": 77, - "column": 79 - }, - "end": { - "line": 77, - "column": 80 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 7543, - "end": 7548, - "loc": { - "start": { - "line": 77, - "column": 81 - }, - "end": { - "line": 77, - "column": 86 - }, - "identifierName": "index" - }, - "name": "index" - }, - "computed": false - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 7551, - "end": 7562, - "loc": { - "start": { - "line": 77, - "column": 89 - }, - "end": { - "line": 77, - "column": 100 - } - }, - "object": { - "type": "MemberExpression", - "start": 7551, - "end": 7555, - "loc": { - "start": { - "line": 77, - "column": 89 - }, - "end": { - "line": 77, - "column": 93 - } - }, - "object": { - "type": "Identifier", - "start": 7551, - "end": 7552, - "loc": { - "start": { - "line": 77, - "column": 89 - }, - "end": { - "line": 77, - "column": 90 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "NumericLiteral", - "start": 7553, - "end": 7554, - "loc": { - "start": { - "line": 77, - "column": 91 - }, - "end": { - "line": 77, - "column": 92 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 7556, - "end": 7562, - "loc": { - "start": { - "line": 77, - "column": 94 - }, - "end": { - "line": 77, - "column": 100 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 7524 - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 7568, - "end": 7629, - "loc": { - "start": { - "line": 77, - "column": 106 - }, - "end": { - "line": 77, - "column": 167 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7568, - "end": 7593, - "loc": { - "start": { - "line": 77, - "column": 106 - }, - "end": { - "line": 77, - "column": 131 - } - }, - "object": { - "type": "MemberExpression", - "start": 7568, - "end": 7580, - "loc": { - "start": { - "line": 77, - "column": 106 - }, - "end": { - "line": 77, - "column": 118 - } - }, - "object": { - "type": "Identifier", - "start": 7568, - "end": 7569, - "loc": { - "start": { - "line": 77, - "column": 106 - }, - "end": { - "line": 77, - "column": 107 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7570, - "end": 7580, - "loc": { - "start": { - "line": 77, - "column": 108 - }, - "end": { - "line": 77, - "column": 118 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 7581, - "end": 7593, - "loc": { - "start": { - "line": 77, - "column": 119 - }, - "end": { - "line": 77, - "column": 131 - }, - "identifierName": "insertBefore" - }, - "name": "insertBefore" - }, - "computed": false - }, - "arguments": [ - { - "type": "CallExpression", - "start": 7594, - "end": 7613, - "loc": { - "start": { - "line": 77, - "column": 132 - }, - "end": { - "line": 77, - "column": 151 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7594, - "end": 7610, - "loc": { - "start": { - "line": 77, - "column": 132 - }, - "end": { - "line": 77, - "column": 148 - } - }, - "object": { - "type": "Identifier", - "start": 7594, - "end": 7595, - "loc": { - "start": { - "line": 77, - "column": 132 - }, - "end": { - "line": 77, - "column": 133 - }, - "identifierName": "s" - }, - "name": "s" - }, - "property": { - "type": "Identifier", - "start": 7596, - "end": 7610, - "loc": { - "start": { - "line": 77, - "column": 134 - }, - "end": { - "line": 77, - "column": 148 - }, - "identifierName": "createTextNode" - }, - "name": "createTextNode" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7611, - "end": 7612, - "loc": { - "start": { - "line": 77, - "column": 149 - }, - "end": { - "line": 77, - "column": 150 - }, - "identifierName": "b" - }, - "name": "b" - } - ] - }, - { - "type": "MemberExpression", - "start": 7615, - "end": 7628, - "loc": { - "start": { - "line": 77, - "column": 153 - }, - "end": { - "line": 77, - "column": 166 - } - }, - "object": { - "type": "Identifier", - "start": 7615, - "end": 7616, - "loc": { - "start": { - "line": 77, - "column": 153 - }, - "end": { - "line": 77, - "column": 154 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7617, - "end": 7628, - "loc": { - "start": { - "line": 77, - "column": 155 - }, - "end": { - "line": 77, - "column": 166 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 7630, - "end": 7635, - "loc": { - "start": { - "line": 77, - "column": 168 - }, - "end": { - "line": 77, - "column": 173 - } - }, - "expression": { - "type": "CallExpression", - "start": 7630, - "end": 7634, - "loc": { - "start": { - "line": 77, - "column": 168 - }, - "end": { - "line": 77, - "column": 172 - } - }, - "callee": { - "type": "Identifier", - "start": 7630, - "end": 7631, - "loc": { - "start": { - "line": 77, - "column": 168 - }, - "end": { - "line": 77, - "column": 169 - }, - "identifierName": "h" - }, - "name": "h" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7632, - "end": 7633, - "loc": { - "start": { - "line": 77, - "column": 170 - }, - "end": { - "line": 77, - "column": 171 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 7635, - "end": 7668, - "loc": { - "start": { - "line": 77, - "column": 173 - }, - "end": { - "line": 77, - "column": 206 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 7635, - "end": 7667, - "loc": { - "start": { - "line": 77, - "column": 173 - }, - "end": { - "line": 77, - "column": 205 - } - }, - "left": { - "type": "Identifier", - "start": 7635, - "end": 7636, - "loc": { - "start": { - "line": 77, - "column": 173 - }, - "end": { - "line": 77, - "column": 174 - }, - "identifierName": "c" - }, - "name": "c" - }, - "operator": "||", - "right": { - "type": "CallExpression", - "start": 7640, - "end": 7667, - "loc": { - "start": { - "line": 77, - "column": 178 - }, - "end": { - "line": 77, - "column": 205 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7640, - "end": 7664, - "loc": { - "start": { - "line": 77, - "column": 178 - }, - "end": { - "line": 77, - "column": 202 - } - }, - "object": { - "type": "MemberExpression", - "start": 7640, - "end": 7652, - "loc": { - "start": { - "line": 77, - "column": 178 - }, - "end": { - "line": 77, - "column": 190 - } - }, - "object": { - "type": "Identifier", - "start": 7640, - "end": 7641, - "loc": { - "start": { - "line": 77, - "column": 178 - }, - "end": { - "line": 77, - "column": 179 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7642, - "end": 7652, - "loc": { - "start": { - "line": 77, - "column": 180 - }, - "end": { - "line": 77, - "column": 190 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 7653, - "end": 7664, - "loc": { - "start": { - "line": 77, - "column": 191 - }, - "end": { - "line": 77, - "column": 202 - }, - "identifierName": "removeChild" - }, - "name": "removeChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7665, - "end": 7666, - "loc": { - "start": { - "line": 77, - "column": 203 - }, - "end": { - "line": 77, - "column": 204 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": null - } - ], - "test": { - "type": "NumericLiteral", - "start": 7367, - "end": 7368, - "loc": { - "start": { - "line": 73, - "column": 189 - }, - "end": { - "line": 73, - "column": 190 - } - }, - "extra": { - "rawValue": 4, - "raw": "4" - }, - "value": 4 - } - } - ] - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 7701, - "end": 8150, - "loc": { - "start": { - "line": 80, - "column": 5 - }, - "end": { - "line": 89, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 7710, - "end": 7711, - "loc": { - "start": { - "line": 80, - "column": 14 - }, - "end": { - "line": 80, - "column": 15 - }, - "identifierName": "h" - }, - "name": "h" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 7712, - "end": 7713, - "loc": { - "start": { - "line": 80, - "column": 16 - }, - "end": { - "line": 80, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 7715, - "end": 8150, - "loc": { - "start": { - "line": 80, - "column": 19 - }, - "end": { - "line": 89, - "column": 5 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 7723, - "end": 7986, - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 87, - "column": 7 - } - }, - "id": { - "type": "Identifier", - "start": 7732, - "end": 7733, - "loc": { - "start": { - "line": 81, - "column": 15 - }, - "end": { - "line": 81, - "column": 16 - }, - "identifierName": "b" - }, - "name": "b" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 7734, - "end": 7735, - "loc": { - "start": { - "line": 81, - "column": 17 - }, - "end": { - "line": 81, - "column": 18 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 7737, - "end": 7738, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 21 - }, - "identifierName": "d" - }, - "name": "d" - } - ], - "body": { - "type": "BlockStatement", - "start": 7740, - "end": 7986, - "loc": { - "start": { - "line": 81, - "column": 23 - }, - "end": { - "line": 87, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 7750, - "end": 7812, - "loc": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 83, - "column": 29 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7754, - "end": 7781, - "loc": { - "start": { - "line": 82, - "column": 12 - }, - "end": { - "line": 82, - "column": 39 - } - }, - "id": { - "type": "Identifier", - "start": 7754, - "end": 7755, - "loc": { - "start": { - "line": 82, - "column": 12 - }, - "end": { - "line": 82, - "column": 13 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "ConditionalExpression", - "start": 7758, - "end": 7781, - "loc": { - "start": { - "line": 82, - "column": 16 - }, - "end": { - "line": 82, - "column": 39 - } - }, - "test": { - "type": "Identifier", - "start": 7758, - "end": 7759, - "loc": { - "start": { - "line": 82, - "column": 16 - }, - "end": { - "line": 82, - "column": 17 - }, - "identifierName": "d" - }, - "name": "d" - }, - "consequent": { - "type": "CallExpression", - "start": 7762, - "end": 7777, - "loc": { - "start": { - "line": 82, - "column": 20 - }, - "end": { - "line": 82, - "column": 35 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7762, - "end": 7773, - "loc": { - "start": { - "line": 82, - "column": 20 - }, - "end": { - "line": 82, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 7762, - "end": 7763, - "loc": { - "start": { - "line": 82, - "column": 20 - }, - "end": { - "line": 82, - "column": 21 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7764, - "end": 7773, - "loc": { - "start": { - "line": 82, - "column": 22 - }, - "end": { - "line": 82, - "column": 31 - }, - "identifierName": "cloneNode" - }, - "name": "cloneNode" - }, - "computed": false - }, - "arguments": [ - { - "type": "UnaryExpression", - "start": 7774, - "end": 7776, - "loc": { - "start": { - "line": 82, - "column": 32 - }, - "end": { - "line": 82, - "column": 34 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 7775, - "end": 7776, - "loc": { - "start": { - "line": 82, - "column": 33 - }, - "end": { - "line": 82, - "column": 34 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - ] - }, - "alternate": { - "type": "Identifier", - "start": 7780, - "end": 7781, - "loc": { - "start": { - "line": 82, - "column": 38 - }, - "end": { - "line": 82, - "column": 39 - }, - "identifierName": "a" - }, - "name": "a" - } - } - }, - { - "type": "VariableDeclarator", - "start": 7795, - "end": 7811, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 28 - } - }, - "id": { - "type": "Identifier", - "start": 7795, - "end": 7796, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 13 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "MemberExpression", - "start": 7799, - "end": 7811, - "loc": { - "start": { - "line": 83, - "column": 16 - }, - "end": { - "line": 83, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 7799, - "end": 7800, - "loc": { - "start": { - "line": 83, - "column": 16 - }, - "end": { - "line": 83, - "column": 17 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7801, - "end": 7811, - "loc": { - "start": { - "line": 83, - "column": 18 - }, - "end": { - "line": 83, - "column": 28 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 7812, - "end": 7969, - "loc": { - "start": { - "line": 83, - "column": 29 - }, - "end": { - "line": 86, - "column": 9 - } - }, - "test": { - "type": "Identifier", - "start": 7816, - "end": 7817, - "loc": { - "start": { - "line": 83, - "column": 33 - }, - "end": { - "line": 83, - "column": 34 - }, - "identifierName": "f" - }, - "name": "f" - }, - "consequent": { - "type": "BlockStatement", - "start": 7819, - "end": 7969, - "loc": { - "start": { - "line": 83, - "column": 36 - }, - "end": { - "line": 86, - "column": 9 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 7831, - "end": 7880, - "loc": { - "start": { - "line": 84, - "column": 10 - }, - "end": { - "line": 85, - "column": 32 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7835, - "end": 7846, - "loc": { - "start": { - "line": 84, - "column": 14 - }, - "end": { - "line": 84, - "column": 25 - } - }, - "id": { - "type": "Identifier", - "start": 7835, - "end": 7836, - "loc": { - "start": { - "line": 84, - "column": 14 - }, - "end": { - "line": 84, - "column": 15 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": { - "type": "CallExpression", - "start": 7839, - "end": 7846, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 25 - } - }, - "callee": { - "type": "Identifier", - "start": 7839, - "end": 7840, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 19 - }, - "identifierName": "b" - }, - "name": "b" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7841, - "end": 7842, - "loc": { - "start": { - "line": 84, - "column": 20 - }, - "end": { - "line": 84, - "column": 21 - }, - "identifierName": "f" - }, - "name": "f" - }, - { - "type": "NumericLiteral", - "start": 7844, - "end": 7845, - "loc": { - "start": { - "line": 84, - "column": 23 - }, - "end": { - "line": 84, - "column": 24 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 7862, - "end": 7879, - "loc": { - "start": { - "line": 85, - "column": 14 - }, - "end": { - "line": 85, - "column": 31 - } - }, - "id": { - "type": "Identifier", - "start": 7862, - "end": 7863, - "loc": { - "start": { - "line": 85, - "column": 14 - }, - "end": { - "line": 85, - "column": 15 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "MemberExpression", - "start": 7866, - "end": 7879, - "loc": { - "start": { - "line": 85, - "column": 18 - }, - "end": { - "line": 85, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 7866, - "end": 7867, - "loc": { - "start": { - "line": 85, - "column": 18 - }, - "end": { - "line": 85, - "column": 19 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 7868, - "end": 7879, - "loc": { - "start": { - "line": 85, - "column": 20 - }, - "end": { - "line": 85, - "column": 31 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 7880, - "end": 7897, - "loc": { - "start": { - "line": 85, - "column": 32 - }, - "end": { - "line": 85, - "column": 49 - } - }, - "expression": { - "type": "CallExpression", - "start": 7880, - "end": 7896, - "loc": { - "start": { - "line": 85, - "column": 32 - }, - "end": { - "line": 85, - "column": 48 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7880, - "end": 7893, - "loc": { - "start": { - "line": 85, - "column": 32 - }, - "end": { - "line": 85, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 7880, - "end": 7881, - "loc": { - "start": { - "line": 85, - "column": 32 - }, - "end": { - "line": 85, - "column": 33 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 7882, - "end": 7893, - "loc": { - "start": { - "line": 85, - "column": 34 - }, - "end": { - "line": 85, - "column": 45 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7894, - "end": 7895, - "loc": { - "start": { - "line": 85, - "column": 46 - }, - "end": { - "line": 85, - "column": 47 - }, - "identifierName": "e" - }, - "name": "e" - } - ] - } - }, - { - "type": "ForStatement", - "start": 7897, - "end": 7959, - "loc": { - "start": { - "line": 85, - "column": 49 - }, - "end": { - "line": 85, - "column": 111 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 7902, - "end": 7911, - "loc": { - "start": { - "line": 85, - "column": 54 - }, - "end": { - "line": 85, - "column": 63 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7906, - "end": 7911, - "loc": { - "start": { - "line": 85, - "column": 58 - }, - "end": { - "line": 85, - "column": 63 - } - }, - "id": { - "type": "Identifier", - "start": 7906, - "end": 7907, - "loc": { - "start": { - "line": 85, - "column": 58 - }, - "end": { - "line": 85, - "column": 59 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "Identifier", - "start": 7910, - "end": 7911, - "loc": { - "start": { - "line": 85, - "column": 62 - }, - "end": { - "line": 85, - "column": 63 - }, - "identifierName": "g" - }, - "name": "g" - } - } - ], - "kind": "var" - }, - "test": { - "type": "Identifier", - "start": 7913, - "end": 7914, - "loc": { - "start": { - "line": 85, - "column": 65 - }, - "end": { - "line": 85, - "column": 66 - }, - "identifierName": "h" - }, - "name": "h" - }, - "update": { - "type": "AssignmentExpression", - "start": 7916, - "end": 7921, - "loc": { - "start": { - "line": 85, - "column": 68 - }, - "end": { - "line": 85, - "column": 73 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 7916, - "end": 7917, - "loc": { - "start": { - "line": 85, - "column": 68 - }, - "end": { - "line": 85, - "column": 69 - }, - "identifierName": "h" - }, - "name": "h" - }, - "right": { - "type": "Identifier", - "start": 7920, - "end": 7921, - "loc": { - "start": { - "line": 85, - "column": 72 - }, - "end": { - "line": 85, - "column": 73 - }, - "identifierName": "g" - }, - "name": "g" - } - }, - "body": { - "type": "ExpressionStatement", - "start": 7923, - "end": 7959, - "loc": { - "start": { - "line": 85, - "column": 75 - }, - "end": { - "line": 85, - "column": 111 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 7923, - "end": 7958, - "loc": { - "start": { - "line": 85, - "column": 75 - }, - "end": { - "line": 85, - "column": 110 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 7923, - "end": 7940, - "loc": { - "start": { - "line": 85, - "column": 75 - }, - "end": { - "line": 85, - "column": 92 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 7923, - "end": 7924, - "loc": { - "start": { - "line": 85, - "column": 75 - }, - "end": { - "line": 85, - "column": 76 - }, - "identifierName": "g" - }, - "name": "g" - }, - "right": { - "type": "MemberExpression", - "start": 7927, - "end": 7940, - "loc": { - "start": { - "line": 85, - "column": 79 - }, - "end": { - "line": 85, - "column": 92 - } - }, - "object": { - "type": "Identifier", - "start": 7927, - "end": 7928, - "loc": { - "start": { - "line": 85, - "column": 79 - }, - "end": { - "line": 85, - "column": 80 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 7929, - "end": 7940, - "loc": { - "start": { - "line": 85, - "column": 81 - }, - "end": { - "line": 85, - "column": 92 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - }, - { - "type": "CallExpression", - "start": 7942, - "end": 7958, - "loc": { - "start": { - "line": 85, - "column": 94 - }, - "end": { - "line": 85, - "column": 110 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7942, - "end": 7955, - "loc": { - "start": { - "line": 85, - "column": 94 - }, - "end": { - "line": 85, - "column": 107 - } - }, - "object": { - "type": "Identifier", - "start": 7942, - "end": 7943, - "loc": { - "start": { - "line": 85, - "column": 94 - }, - "end": { - "line": 85, - "column": 95 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 7944, - "end": 7955, - "loc": { - "start": { - "line": 85, - "column": 96 - }, - "end": { - "line": 85, - "column": 107 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7956, - "end": 7957, - "loc": { - "start": { - "line": 85, - "column": 108 - }, - "end": { - "line": 85, - "column": 109 - }, - "identifierName": "h" - }, - "name": "h" - } - ] - } - ] - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "ReturnStatement", - "start": 7969, - "end": 7978, - "loc": { - "start": { - "line": 86, - "column": 9 - }, - "end": { - "line": 86, - "column": 18 - } - }, - "argument": { - "type": "Identifier", - "start": 7976, - "end": 7977, - "loc": { - "start": { - "line": 86, - "column": 16 - }, - "end": { - "line": 86, - "column": 17 - }, - "identifierName": "e" - }, - "name": "e" - } - } - ], - "directives": [] - } - }, - { - "type": "ForStatement", - "start": 7993, - "end": 8050, - "loc": { - "start": { - "line": 88, - "column": 6 - }, - "end": { - "line": 88, - "column": 63 - } - }, - "init": null, - "test": { - "type": "UnaryExpression", - "start": 8000, - "end": 8014, - "loc": { - "start": { - "line": 88, - "column": 13 - }, - "end": { - "line": 88, - "column": 27 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "MemberExpression", - "start": 8001, - "end": 8014, - "loc": { - "start": { - "line": 88, - "column": 14 - }, - "end": { - "line": 88, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 8001, - "end": 8002, - "loc": { - "start": { - "line": 88, - "column": 14 - }, - "end": { - "line": 88, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8003, - "end": 8014, - "loc": { - "start": { - "line": 88, - "column": 16 - }, - "end": { - "line": 88, - "column": 27 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - }, - "extra": { - "parenthesizedArgument": false - } - }, - "update": null, - "body": { - "type": "IfStatement", - "start": 8017, - "end": 8050, - "loc": { - "start": { - "line": 88, - "column": 30 - }, - "end": { - "line": 88, - "column": 63 - } - }, - "test": { - "type": "SequenceExpression", - "start": 8021, - "end": 8041, - "loc": { - "start": { - "line": 88, - "column": 34 - }, - "end": { - "line": 88, - "column": 54 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 8021, - "end": 8037, - "loc": { - "start": { - "line": 88, - "column": 34 - }, - "end": { - "line": 88, - "column": 50 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8021, - "end": 8022, - "loc": { - "start": { - "line": 88, - "column": 34 - }, - "end": { - "line": 88, - "column": 35 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "MemberExpression", - "start": 8025, - "end": 8037, - "loc": { - "start": { - "line": 88, - "column": 38 - }, - "end": { - "line": 88, - "column": 50 - } - }, - "object": { - "type": "Identifier", - "start": 8025, - "end": 8026, - "loc": { - "start": { - "line": 88, - "column": 38 - }, - "end": { - "line": 88, - "column": 39 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8027, - "end": 8037, - "loc": { - "start": { - "line": 88, - "column": 40 - }, - "end": { - "line": 88, - "column": 50 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - } - }, - { - "type": "UnaryExpression", - "start": 8039, - "end": 8041, - "loc": { - "start": { - "line": 88, - "column": 52 - }, - "end": { - "line": 88, - "column": 54 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 8040, - "end": 8041, - "loc": { - "start": { - "line": 88, - "column": 53 - }, - "end": { - "line": 88, - "column": 54 - }, - "identifierName": "a" - }, - "name": "a" - }, - "extra": { - "parenthesizedArgument": false - } - } - ] - }, - "consequent": { - "type": "ReturnStatement", - "start": 8043, - "end": 8050, - "loc": { - "start": { - "line": 88, - "column": 56 - }, - "end": { - "line": 88, - "column": 63 - } - }, - "argument": null - }, - "alternate": null - } - }, - { - "type": "ForStatement", - "start": 8050, - "end": 8134, - "loc": { - "start": { - "line": 88, - "column": 63 - }, - "end": { - "line": 88, - "column": 147 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 8055, - "end": 8085, - "loc": { - "start": { - "line": 88, - "column": 68 - }, - "end": { - "line": 88, - "column": 98 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8059, - "end": 8082, - "loc": { - "start": { - "line": 88, - "column": 72 - }, - "end": { - "line": 88, - "column": 95 - } - }, - "id": { - "type": "Identifier", - "start": 8059, - "end": 8060, - "loc": { - "start": { - "line": 88, - "column": 72 - }, - "end": { - "line": 88, - "column": 73 - }, - "identifierName": "a" - }, - "name": "a" - }, - "init": { - "type": "CallExpression", - "start": 8063, - "end": 8082, - "loc": { - "start": { - "line": 88, - "column": 76 - }, - "end": { - "line": 88, - "column": 95 - } - }, - "callee": { - "type": "Identifier", - "start": 8063, - "end": 8064, - "loc": { - "start": { - "line": 88, - "column": 76 - }, - "end": { - "line": 88, - "column": 77 - }, - "identifierName": "b" - }, - "name": "b" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 8065, - "end": 8078, - "loc": { - "start": { - "line": 88, - "column": 78 - }, - "end": { - "line": 88, - "column": 91 - } - }, - "object": { - "type": "Identifier", - "start": 8065, - "end": 8066, - "loc": { - "start": { - "line": 88, - "column": 78 - }, - "end": { - "line": 88, - "column": 79 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8067, - "end": 8078, - "loc": { - "start": { - "line": 88, - "column": 80 - }, - "end": { - "line": 88, - "column": 91 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - }, - { - "type": "NumericLiteral", - "start": 8080, - "end": 8081, - "loc": { - "start": { - "line": 88, - "column": 93 - }, - "end": { - "line": 88, - "column": 94 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 8084, - "end": 8085, - "loc": { - "start": { - "line": 88, - "column": 97 - }, - "end": { - "line": 88, - "column": 98 - } - }, - "id": { - "type": "Identifier", - "start": 8084, - "end": 8085, - "loc": { - "start": { - "line": 88, - "column": 97 - }, - "end": { - "line": 88, - "column": 98 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": null - } - ], - "kind": "var" - }, - "test": { - "type": "LogicalExpression", - "start": 8087, - "end": 8125, - "loc": { - "start": { - "line": 88, - "column": 100 - }, - "end": { - "line": 88, - "column": 138 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 8088, - "end": 8104, - "loc": { - "start": { - "line": 88, - "column": 101 - }, - "end": { - "line": 88, - "column": 117 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8088, - "end": 8089, - "loc": { - "start": { - "line": 88, - "column": 101 - }, - "end": { - "line": 88, - "column": 102 - }, - "identifierName": "e" - }, - "name": "e" - }, - "right": { - "type": "MemberExpression", - "start": 8092, - "end": 8104, - "loc": { - "start": { - "line": 88, - "column": 105 - }, - "end": { - "line": 88, - "column": 117 - } - }, - "object": { - "type": "Identifier", - "start": 8092, - "end": 8093, - "loc": { - "start": { - "line": 88, - "column": 105 - }, - "end": { - "line": 88, - "column": 106 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8094, - "end": 8104, - "loc": { - "start": { - "line": 88, - "column": 107 - }, - "end": { - "line": 88, - "column": 117 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - }, - "extra": { - "parenthesized": true, - "parenStart": 8087 - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 8109, - "end": 8125, - "loc": { - "start": { - "line": 88, - "column": 122 - }, - "end": { - "line": 88, - "column": 138 - } - }, - "left": { - "type": "MemberExpression", - "start": 8109, - "end": 8119, - "loc": { - "start": { - "line": 88, - "column": 122 - }, - "end": { - "line": 88, - "column": 132 - } - }, - "object": { - "type": "Identifier", - "start": 8109, - "end": 8110, - "loc": { - "start": { - "line": 88, - "column": 122 - }, - "end": { - "line": 88, - "column": 123 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 8111, - "end": 8119, - "loc": { - "start": { - "line": 88, - "column": 124 - }, - "end": { - "line": 88, - "column": 132 - }, - "identifierName": "nodeType" - }, - "name": "nodeType" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 8124, - "end": 8125, - "loc": { - "start": { - "line": 88, - "column": 137 - }, - "end": { - "line": 88, - "column": 138 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - } - }, - "update": null, - "body": { - "type": "ExpressionStatement", - "start": 8128, - "end": 8134, - "loc": { - "start": { - "line": 88, - "column": 141 - }, - "end": { - "line": 88, - "column": 147 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 8128, - "end": 8133, - "loc": { - "start": { - "line": 88, - "column": 141 - }, - "end": { - "line": 88, - "column": 146 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8128, - "end": 8129, - "loc": { - "start": { - "line": 88, - "column": 141 - }, - "end": { - "line": 88, - "column": 142 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "Identifier", - "start": 8132, - "end": 8133, - "loc": { - "start": { - "line": 88, - "column": 145 - }, - "end": { - "line": 88, - "column": 146 - }, - "identifierName": "e" - }, - "name": "e" - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 8134, - "end": 8144, - "loc": { - "start": { - "line": 88, - "column": 147 - }, - "end": { - "line": 88, - "column": 157 - } - }, - "expression": { - "type": "CallExpression", - "start": 8134, - "end": 8143, - "loc": { - "start": { - "line": 88, - "column": 147 - }, - "end": { - "line": 88, - "column": 156 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8134, - "end": 8140, - "loc": { - "start": { - "line": 88, - "column": 147 - }, - "end": { - "line": 88, - "column": 153 - } - }, - "object": { - "type": "Identifier", - "start": 8134, - "end": 8135, - "loc": { - "start": { - "line": 88, - "column": 147 - }, - "end": { - "line": 88, - "column": 148 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 8136, - "end": 8140, - "loc": { - "start": { - "line": 88, - "column": 149 - }, - "end": { - "line": 88, - "column": 153 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8141, - "end": 8142, - "loc": { - "start": { - "line": 88, - "column": 154 - }, - "end": { - "line": 88, - "column": 155 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 8150, - "end": 8247, - "loc": { - "start": { - "line": 89, - "column": 5 - }, - "end": { - "line": 92, - "column": 10 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8154, - "end": 8182, - "loc": { - "start": { - "line": 89, - "column": 9 - }, - "end": { - "line": 89, - "column": 37 - } - }, - "id": { - "type": "Identifier", - "start": 8154, - "end": 8155, - "loc": { - "start": { - "line": 89, - "column": 9 - }, - "end": { - "line": 89, - "column": 10 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "RegExpLiteral", - "start": 8158, - "end": 8182, - "loc": { - "start": { - "line": 89, - "column": 13 - }, - "end": { - "line": 89, - "column": 37 - } - }, - "extra": { - "raw": "/(?:^|\\s)nocode(?:\\s|$)/" - }, - "pattern": "(?:^|\\s)nocode(?:\\s|$)", - "flags": "" - } - }, - { - "type": "VariableDeclarator", - "start": 8192, - "end": 8206, - "loc": { - "start": { - "line": 90, - "column": 8 - }, - "end": { - "line": 90, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 8192, - "end": 8193, - "loc": { - "start": { - "line": 90, - "column": 8 - }, - "end": { - "line": 90, - "column": 9 - }, - "identifierName": "t" - }, - "name": "t" - }, - "init": { - "type": "RegExpLiteral", - "start": 8196, - "end": 8206, - "loc": { - "start": { - "line": 90, - "column": 12 - }, - "end": { - "line": 90, - "column": 22 - } - }, - "extra": { - "raw": "/\\r\\n?|\\n/" - }, - "pattern": "\\r\\n?|\\n", - "flags": "" - } - }, - { - "type": "VariableDeclarator", - "start": 8216, - "end": 8235, - "loc": { - "start": { - "line": 91, - "column": 8 - }, - "end": { - "line": 91, - "column": 27 - } - }, - "id": { - "type": "Identifier", - "start": 8216, - "end": 8217, - "loc": { - "start": { - "line": 91, - "column": 8 - }, - "end": { - "line": 91, - "column": 9 - }, - "identifierName": "s" - }, - "name": "s" - }, - "init": { - "type": "MemberExpression", - "start": 8220, - "end": 8235, - "loc": { - "start": { - "line": 91, - "column": 12 - }, - "end": { - "line": 91, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 8220, - "end": 8221, - "loc": { - "start": { - "line": 91, - "column": 12 - }, - "end": { - "line": 91, - "column": 13 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8222, - "end": 8235, - "loc": { - "start": { - "line": 91, - "column": 14 - }, - "end": { - "line": 91, - "column": 27 - }, - "identifierName": "ownerDocument" - }, - "name": "ownerDocument" - }, - "computed": false - } - }, - { - "type": "VariableDeclarator", - "start": 8245, - "end": 8246, - "loc": { - "start": { - "line": 92, - "column": 8 - }, - "end": { - "line": 92, - "column": 9 - } - }, - "id": { - "type": "Identifier", - "start": 8245, - "end": 8246, - "loc": { - "start": { - "line": 92, - "column": 8 - }, - "end": { - "line": 92, - "column": 9 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 8247, - "end": 8398, - "loc": { - "start": { - "line": 92, - "column": 10 - }, - "end": { - "line": 92, - "column": 161 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 8247, - "end": 8397, - "loc": { - "start": { - "line": 92, - "column": 10 - }, - "end": { - "line": 92, - "column": 160 - } - }, - "test": { - "type": "MemberExpression", - "start": 8247, - "end": 8261, - "loc": { - "start": { - "line": 92, - "column": 10 - }, - "end": { - "line": 92, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 8247, - "end": 8248, - "loc": { - "start": { - "line": 92, - "column": 10 - }, - "end": { - "line": 92, - "column": 11 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8249, - "end": 8261, - "loc": { - "start": { - "line": 92, - "column": 12 - }, - "end": { - "line": 92, - "column": 24 - }, - "identifierName": "currentStyle" - }, - "name": "currentStyle" - }, - "computed": false - }, - "consequent": { - "type": "AssignmentExpression", - "start": 8264, - "end": 8293, - "loc": { - "start": { - "line": 92, - "column": 27 - }, - "end": { - "line": 92, - "column": 56 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8264, - "end": 8265, - "loc": { - "start": { - "line": 92, - "column": 27 - }, - "end": { - "line": 92, - "column": 28 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "MemberExpression", - "start": 8268, - "end": 8293, - "loc": { - "start": { - "line": 92, - "column": 31 - }, - "end": { - "line": 92, - "column": 56 - } - }, - "object": { - "type": "MemberExpression", - "start": 8268, - "end": 8282, - "loc": { - "start": { - "line": 92, - "column": 31 - }, - "end": { - "line": 92, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 8268, - "end": 8269, - "loc": { - "start": { - "line": 92, - "column": 31 - }, - "end": { - "line": 92, - "column": 32 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8270, - "end": 8282, - "loc": { - "start": { - "line": 92, - "column": 33 - }, - "end": { - "line": 92, - "column": 45 - }, - "identifierName": "currentStyle" - }, - "name": "currentStyle" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 8283, - "end": 8293, - "loc": { - "start": { - "line": 92, - "column": 46 - }, - "end": { - "line": 92, - "column": 56 - }, - "identifierName": "whiteSpace" - }, - "name": "whiteSpace" - }, - "computed": false - } - }, - "alternate": { - "type": "LogicalExpression", - "start": 8296, - "end": 8397, - "loc": { - "start": { - "line": 92, - "column": 59 - }, - "end": { - "line": 92, - "column": 160 - } - }, - "left": { - "type": "MemberExpression", - "start": 8296, - "end": 8319, - "loc": { - "start": { - "line": 92, - "column": 59 - }, - "end": { - "line": 92, - "column": 82 - } - }, - "object": { - "type": "Identifier", - "start": 8296, - "end": 8302, - "loc": { - "start": { - "line": 92, - "column": 59 - }, - "end": { - "line": 92, - "column": 65 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 8303, - "end": 8319, - "loc": { - "start": { - "line": 92, - "column": 66 - }, - "end": { - "line": 92, - "column": 82 - }, - "identifierName": "getComputedStyle" - }, - "name": "getComputedStyle" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 8324, - "end": 8396, - "loc": { - "start": { - "line": 92, - "column": 87 - }, - "end": { - "line": 92, - "column": 159 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8324, - "end": 8325, - "loc": { - "start": { - "line": 92, - "column": 87 - }, - "end": { - "line": 92, - "column": 88 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "CallExpression", - "start": 8328, - "end": 8396, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 159 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8328, - "end": 8381, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 144 - } - }, - "object": { - "type": "CallExpression", - "start": 8328, - "end": 8364, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 127 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8328, - "end": 8358, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 121 - } - }, - "object": { - "type": "MemberExpression", - "start": 8328, - "end": 8341, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 104 - } - }, - "object": { - "type": "Identifier", - "start": 8328, - "end": 8329, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 92 - }, - "identifierName": "s" - }, - "name": "s" - }, - "property": { - "type": "Identifier", - "start": 8330, - "end": 8341, - "loc": { - "start": { - "line": 92, - "column": 93 - }, - "end": { - "line": 92, - "column": 104 - }, - "identifierName": "defaultView" - }, - "name": "defaultView" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 8342, - "end": 8358, - "loc": { - "start": { - "line": 92, - "column": 105 - }, - "end": { - "line": 92, - "column": 121 - }, - "identifierName": "getComputedStyle" - }, - "name": "getComputedStyle" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8359, - "end": 8360, - "loc": { - "start": { - "line": 92, - "column": 122 - }, - "end": { - "line": 92, - "column": 123 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 8362, - "end": 8363, - "loc": { - "start": { - "line": 92, - "column": 125 - }, - "end": { - "line": 92, - "column": 126 - }, - "identifierName": "q" - }, - "name": "q" - } - ] - }, - "property": { - "type": "Identifier", - "start": 8365, - "end": 8381, - "loc": { - "start": { - "line": 92, - "column": 128 - }, - "end": { - "line": 92, - "column": 144 - }, - "identifierName": "getPropertyValue" - }, - "name": "getPropertyValue" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 8382, - "end": 8395, - "loc": { - "start": { - "line": 92, - "column": 145 - }, - "end": { - "line": 92, - "column": 158 - } - }, - "extra": { - "rawValue": "white-space", - "raw": "\"white-space\"" - }, - "value": "white-space" - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 8323 - } - } - } - } - }, - { - "type": "VariableDeclaration", - "start": 8398, - "end": 8439, - "loc": { - "start": { - "line": 92, - "column": 161 - }, - "end": { - "line": 92, - "column": 202 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8402, - "end": 8438, - "loc": { - "start": { - "line": 92, - "column": 165 - }, - "end": { - "line": 92, - "column": 201 - } - }, - "id": { - "type": "Identifier", - "start": 8402, - "end": 8403, - "loc": { - "start": { - "line": 92, - "column": 165 - }, - "end": { - "line": 92, - "column": 166 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "LogicalExpression", - "start": 8406, - "end": 8438, - "loc": { - "start": { - "line": 92, - "column": 169 - }, - "end": { - "line": 92, - "column": 201 - } - }, - "left": { - "type": "Identifier", - "start": 8406, - "end": 8407, - "loc": { - "start": { - "line": 92, - "column": 169 - }, - "end": { - "line": 92, - "column": 170 - }, - "identifierName": "l" - }, - "name": "l" - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 8411, - "end": 8438, - "loc": { - "start": { - "line": 92, - "column": 174 - }, - "end": { - "line": 92, - "column": 201 - } - }, - "left": { - "type": "StringLiteral", - "start": 8411, - "end": 8416, - "loc": { - "start": { - "line": 92, - "column": 174 - }, - "end": { - "line": 92, - "column": 179 - } - }, - "extra": { - "rawValue": "pre", - "raw": "\"pre\"" - }, - "value": "pre" - }, - "operator": "===", - "right": { - "type": "CallExpression", - "start": 8421, - "end": 8438, - "loc": { - "start": { - "line": 92, - "column": 184 - }, - "end": { - "line": 92, - "column": 201 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8421, - "end": 8432, - "loc": { - "start": { - "line": 92, - "column": 184 - }, - "end": { - "line": 92, - "column": 195 - } - }, - "object": { - "type": "Identifier", - "start": 8421, - "end": 8422, - "loc": { - "start": { - "line": 92, - "column": 184 - }, - "end": { - "line": 92, - "column": 185 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 8423, - "end": 8432, - "loc": { - "start": { - "line": 92, - "column": 186 - }, - "end": { - "line": 92, - "column": 195 - }, - "identifierName": "substring" - }, - "name": "substring" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 8433, - "end": 8434, - "loc": { - "start": { - "line": 92, - "column": 196 - }, - "end": { - "line": 92, - "column": 197 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "NumericLiteral", - "start": 8436, - "end": 8437, - "loc": { - "start": { - "line": 92, - "column": 199 - }, - "end": { - "line": 92, - "column": 200 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - ] - } - } - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 8439, - "end": 8514, - "loc": { - "start": { - "line": 92, - "column": 202 - }, - "end": { - "line": 92, - "column": 277 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 8444, - "end": 8469, - "loc": { - "start": { - "line": 92, - "column": 207 - }, - "end": { - "line": 92, - "column": 232 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8444, - "end": 8445, - "loc": { - "start": { - "line": 92, - "column": 207 - }, - "end": { - "line": 92, - "column": 208 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "CallExpression", - "start": 8448, - "end": 8469, - "loc": { - "start": { - "line": 92, - "column": 211 - }, - "end": { - "line": 92, - "column": 232 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8448, - "end": 8463, - "loc": { - "start": { - "line": 92, - "column": 211 - }, - "end": { - "line": 92, - "column": 226 - } - }, - "object": { - "type": "Identifier", - "start": 8448, - "end": 8449, - "loc": { - "start": { - "line": 92, - "column": 211 - }, - "end": { - "line": 92, - "column": 212 - }, - "identifierName": "s" - }, - "name": "s" - }, - "property": { - "type": "Identifier", - "start": 8450, - "end": 8463, - "loc": { - "start": { - "line": 92, - "column": 213 - }, - "end": { - "line": 92, - "column": 226 - }, - "identifierName": "createElement" - }, - "name": "createElement" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 8464, - "end": 8468, - "loc": { - "start": { - "line": 92, - "column": 227 - }, - "end": { - "line": 92, - "column": 231 - } - }, - "extra": { - "rawValue": "LI", - "raw": "\"LI\"" - }, - "value": "LI" - } - ] - } - }, - "test": { - "type": "MemberExpression", - "start": 8471, - "end": 8483, - "loc": { - "start": { - "line": 92, - "column": 234 - }, - "end": { - "line": 92, - "column": 246 - } - }, - "object": { - "type": "Identifier", - "start": 8471, - "end": 8472, - "loc": { - "start": { - "line": 92, - "column": 234 - }, - "end": { - "line": 92, - "column": 235 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8473, - "end": 8483, - "loc": { - "start": { - "line": 92, - "column": 236 - }, - "end": { - "line": 92, - "column": 246 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - }, - "update": null, - "body": { - "type": "ExpressionStatement", - "start": 8486, - "end": 8514, - "loc": { - "start": { - "line": 92, - "column": 249 - }, - "end": { - "line": 92, - "column": 277 - } - }, - "expression": { - "type": "CallExpression", - "start": 8486, - "end": 8513, - "loc": { - "start": { - "line": 92, - "column": 249 - }, - "end": { - "line": 92, - "column": 276 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8486, - "end": 8499, - "loc": { - "start": { - "line": 92, - "column": 249 - }, - "end": { - "line": 92, - "column": 262 - } - }, - "object": { - "type": "Identifier", - "start": 8486, - "end": 8487, - "loc": { - "start": { - "line": 92, - "column": 249 - }, - "end": { - "line": 92, - "column": 250 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 8488, - "end": 8499, - "loc": { - "start": { - "line": 92, - "column": 251 - }, - "end": { - "line": 92, - "column": 262 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 8500, - "end": 8512, - "loc": { - "start": { - "line": 92, - "column": 263 - }, - "end": { - "line": 92, - "column": 275 - } - }, - "object": { - "type": "Identifier", - "start": 8500, - "end": 8501, - "loc": { - "start": { - "line": 92, - "column": 263 - }, - "end": { - "line": 92, - "column": 264 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8502, - "end": 8512, - "loc": { - "start": { - "line": 92, - "column": 265 - }, - "end": { - "line": 92, - "column": 275 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - } - ] - } - } - }, - { - "type": "ForStatement", - "start": 8514, - "end": 8566, - "loc": { - "start": { - "line": 92, - "column": 277 - }, - "end": { - "line": 92, - "column": 329 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 8519, - "end": 8537, - "loc": { - "start": { - "line": 92, - "column": 282 - }, - "end": { - "line": 92, - "column": 300 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8523, - "end": 8530, - "loc": { - "start": { - "line": 92, - "column": 286 - }, - "end": { - "line": 92, - "column": 293 - } - }, - "id": { - "type": "Identifier", - "start": 8523, - "end": 8524, - "loc": { - "start": { - "line": 92, - "column": 286 - }, - "end": { - "line": 92, - "column": 287 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": { - "type": "ArrayExpression", - "start": 8527, - "end": 8530, - "loc": { - "start": { - "line": 92, - "column": 290 - }, - "end": { - "line": 92, - "column": 293 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 8528, - "end": 8529, - "loc": { - "start": { - "line": 92, - "column": 291 - }, - "end": { - "line": 92, - "column": 292 - }, - "identifierName": "l" - }, - "name": "l" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 8532, - "end": 8537, - "loc": { - "start": { - "line": 92, - "column": 295 - }, - "end": { - "line": 92, - "column": 300 - } - }, - "id": { - "type": "Identifier", - "start": 8532, - "end": 8533, - "loc": { - "start": { - "line": 92, - "column": 295 - }, - "end": { - "line": 92, - "column": 296 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "NumericLiteral", - "start": 8536, - "end": 8537, - "loc": { - "start": { - "line": 92, - "column": 299 - }, - "end": { - "line": 92, - "column": 300 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 8539, - "end": 8551, - "loc": { - "start": { - "line": 92, - "column": 302 - }, - "end": { - "line": 92, - "column": 314 - } - }, - "left": { - "type": "Identifier", - "start": 8539, - "end": 8540, - "loc": { - "start": { - "line": 92, - "column": 302 - }, - "end": { - "line": 92, - "column": 303 - }, - "identifierName": "g" - }, - "name": "g" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 8543, - "end": 8551, - "loc": { - "start": { - "line": 92, - "column": 306 - }, - "end": { - "line": 92, - "column": 314 - } - }, - "object": { - "type": "Identifier", - "start": 8543, - "end": 8544, - "loc": { - "start": { - "line": 92, - "column": 306 - }, - "end": { - "line": 92, - "column": 307 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 8545, - "end": 8551, - "loc": { - "start": { - "line": 92, - "column": 308 - }, - "end": { - "line": 92, - "column": 314 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 8553, - "end": 8556, - "loc": { - "start": { - "line": 92, - "column": 316 - }, - "end": { - "line": 92, - "column": 319 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 8555, - "end": 8556, - "loc": { - "start": { - "line": 92, - "column": 318 - }, - "end": { - "line": 92, - "column": 319 - }, - "identifierName": "g" - }, - "name": "g" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 8558, - "end": 8566, - "loc": { - "start": { - "line": 92, - "column": 321 - }, - "end": { - "line": 92, - "column": 329 - } - }, - "expression": { - "type": "CallExpression", - "start": 8558, - "end": 8565, - "loc": { - "start": { - "line": 92, - "column": 321 - }, - "end": { - "line": 92, - "column": 328 - } - }, - "callee": { - "type": "Identifier", - "start": 8558, - "end": 8559, - "loc": { - "start": { - "line": 92, - "column": 321 - }, - "end": { - "line": 92, - "column": 322 - }, - "identifierName": "e" - }, - "name": "e" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 8560, - "end": 8564, - "loc": { - "start": { - "line": 92, - "column": 323 - }, - "end": { - "line": 92, - "column": 327 - } - }, - "object": { - "type": "Identifier", - "start": 8560, - "end": 8561, - "loc": { - "start": { - "line": 92, - "column": 323 - }, - "end": { - "line": 92, - "column": 324 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 8562, - "end": 8563, - "loc": { - "start": { - "line": 92, - "column": 325 - }, - "end": { - "line": 92, - "column": 326 - }, - "identifierName": "g" - }, - "name": "g" - }, - "computed": true - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 8566, - "end": 8613, - "loc": { - "start": { - "line": 92, - "column": 329 - }, - "end": { - "line": 92, - "column": 376 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 8566, - "end": 8612, - "loc": { - "start": { - "line": 92, - "column": 329 - }, - "end": { - "line": 92, - "column": 375 - } - }, - "left": { - "type": "BinaryExpression", - "start": 8566, - "end": 8579, - "loc": { - "start": { - "line": 92, - "column": 329 - }, - "end": { - "line": 92, - "column": 342 - } - }, - "left": { - "type": "Identifier", - "start": 8566, - "end": 8567, - "loc": { - "start": { - "line": 92, - "column": 329 - }, - "end": { - "line": 92, - "column": 330 - }, - "identifierName": "m" - }, - "name": "m" - }, - "operator": "===", - "right": { - "type": "BinaryExpression", - "start": 8573, - "end": 8578, - "loc": { - "start": { - "line": 92, - "column": 336 - }, - "end": { - "line": 92, - "column": 341 - } - }, - "left": { - "type": "Identifier", - "start": 8573, - "end": 8574, - "loc": { - "start": { - "line": 92, - "column": 336 - }, - "end": { - "line": 92, - "column": 337 - }, - "identifierName": "m" - }, - "name": "m" - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 8577, - "end": 8578, - "loc": { - "start": { - "line": 92, - "column": 340 - }, - "end": { - "line": 92, - "column": 341 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesized": true, - "parenStart": 8572 - } - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 8583, - "end": 8612, - "loc": { - "start": { - "line": 92, - "column": 346 - }, - "end": { - "line": 92, - "column": 375 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8583, - "end": 8600, - "loc": { - "start": { - "line": 92, - "column": 346 - }, - "end": { - "line": 92, - "column": 363 - } - }, - "object": { - "type": "MemberExpression", - "start": 8583, - "end": 8587, - "loc": { - "start": { - "line": 92, - "column": 346 - }, - "end": { - "line": 92, - "column": 350 - } - }, - "object": { - "type": "Identifier", - "start": 8583, - "end": 8584, - "loc": { - "start": { - "line": 92, - "column": 346 - }, - "end": { - "line": 92, - "column": 347 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "NumericLiteral", - "start": 8585, - "end": 8586, - "loc": { - "start": { - "line": 92, - "column": 348 - }, - "end": { - "line": 92, - "column": 349 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 8588, - "end": 8600, - "loc": { - "start": { - "line": 92, - "column": 351 - }, - "end": { - "line": 92, - "column": 363 - }, - "identifierName": "setAttribute" - }, - "name": "setAttribute" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 8601, - "end": 8608, - "loc": { - "start": { - "line": 92, - "column": 364 - }, - "end": { - "line": 92, - "column": 371 - } - }, - "extra": { - "rawValue": "value", - "raw": "\"value\"" - }, - "value": "value" - }, - { - "type": "Identifier", - "start": 8610, - "end": 8611, - "loc": { - "start": { - "line": 92, - "column": 373 - }, - "end": { - "line": 92, - "column": 374 - }, - "identifierName": "m" - }, - "name": "m" - } - ] - } - } - }, - { - "type": "VariableDeclaration", - "start": 8613, - "end": 8643, - "loc": { - "start": { - "line": 92, - "column": 376 - }, - "end": { - "line": 92, - "column": 406 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8617, - "end": 8642, - "loc": { - "start": { - "line": 92, - "column": 380 - }, - "end": { - "line": 92, - "column": 405 - } - }, - "id": { - "type": "Identifier", - "start": 8617, - "end": 8618, - "loc": { - "start": { - "line": 92, - "column": 380 - }, - "end": { - "line": 92, - "column": 381 - }, - "identifierName": "r" - }, - "name": "r" - }, - "init": { - "type": "CallExpression", - "start": 8621, - "end": 8642, - "loc": { - "start": { - "line": 92, - "column": 384 - }, - "end": { - "line": 92, - "column": 405 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8621, - "end": 8636, - "loc": { - "start": { - "line": 92, - "column": 384 - }, - "end": { - "line": 92, - "column": 399 - } - }, - "object": { - "type": "Identifier", - "start": 8621, - "end": 8622, - "loc": { - "start": { - "line": 92, - "column": 384 - }, - "end": { - "line": 92, - "column": 385 - }, - "identifierName": "s" - }, - "name": "s" - }, - "property": { - "type": "Identifier", - "start": 8623, - "end": 8636, - "loc": { - "start": { - "line": 92, - "column": 386 - }, - "end": { - "line": 92, - "column": 399 - }, - "identifierName": "createElement" - }, - "name": "createElement" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 8637, - "end": 8641, - "loc": { - "start": { - "line": 92, - "column": 400 - }, - "end": { - "line": 92, - "column": 404 - } - }, - "extra": { - "rawValue": "OL", - "raw": "\"OL\"" - }, - "value": "OL" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 8643, - "end": 8668, - "loc": { - "start": { - "line": 92, - "column": 406 - }, - "end": { - "line": 92, - "column": 431 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 8643, - "end": 8667, - "loc": { - "start": { - "line": 92, - "column": 406 - }, - "end": { - "line": 92, - "column": 430 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 8643, - "end": 8654, - "loc": { - "start": { - "line": 92, - "column": 406 - }, - "end": { - "line": 92, - "column": 417 - } - }, - "object": { - "type": "Identifier", - "start": 8643, - "end": 8644, - "loc": { - "start": { - "line": 92, - "column": 406 - }, - "end": { - "line": 92, - "column": 407 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "Identifier", - "start": 8645, - "end": 8654, - "loc": { - "start": { - "line": 92, - "column": 408 - }, - "end": { - "line": 92, - "column": 417 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 8657, - "end": 8667, - "loc": { - "start": { - "line": 92, - "column": 420 - }, - "end": { - "line": 92, - "column": 430 - } - }, - "extra": { - "rawValue": "linenums", - "raw": "\"linenums\"" - }, - "value": "linenums" - } - } - }, - { - "type": "ForStatement", - "start": 8668, - "end": 8861, - "loc": { - "start": { - "line": 92, - "column": 431 - }, - "end": { - "line": 92, - "column": 624 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 8673, - "end": 8729, - "loc": { - "start": { - "line": 92, - "column": 436 - }, - "end": { - "line": 92, - "column": 492 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8677, - "end": 8708, - "loc": { - "start": { - "line": 92, - "column": 440 - }, - "end": { - "line": 92, - "column": 471 - } - }, - "id": { - "type": "Identifier", - "start": 8677, - "end": 8678, - "loc": { - "start": { - "line": 92, - "column": 440 - }, - "end": { - "line": 92, - "column": 441 - }, - "identifierName": "n" - }, - "name": "n" - }, - "init": { - "type": "LogicalExpression", - "start": 8681, - "end": 8708, - "loc": { - "start": { - "line": 92, - "column": 444 - }, - "end": { - "line": 92, - "column": 471 - } - }, - "left": { - "type": "CallExpression", - "start": 8681, - "end": 8703, - "loc": { - "start": { - "line": 92, - "column": 444 - }, - "end": { - "line": 92, - "column": 466 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8681, - "end": 8689, - "loc": { - "start": { - "line": 92, - "column": 444 - }, - "end": { - "line": 92, - "column": 452 - } - }, - "object": { - "type": "Identifier", - "start": 8681, - "end": 8685, - "loc": { - "start": { - "line": 92, - "column": 444 - }, - "end": { - "line": 92, - "column": 448 - }, - "identifierName": "Math" - }, - "name": "Math" - }, - "property": { - "type": "Identifier", - "start": 8686, - "end": 8689, - "loc": { - "start": { - "line": 92, - "column": 449 - }, - "end": { - "line": 92, - "column": 452 - }, - "identifierName": "max" - }, - "name": "max" - }, - "computed": false - }, - "arguments": [ - { - "type": "NumericLiteral", - "start": 8690, - "end": 8691, - "loc": { - "start": { - "line": 92, - "column": 453 - }, - "end": { - "line": 92, - "column": 454 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - { - "type": "BinaryExpression", - "start": 8693, - "end": 8702, - "loc": { - "start": { - "line": 92, - "column": 456 - }, - "end": { - "line": 92, - "column": 465 - } - }, - "left": { - "type": "BinaryExpression", - "start": 8693, - "end": 8698, - "loc": { - "start": { - "line": 92, - "column": 456 - }, - "end": { - "line": 92, - "column": 461 - } - }, - "left": { - "type": "Identifier", - "start": 8693, - "end": 8694, - "loc": { - "start": { - "line": 92, - "column": 456 - }, - "end": { - "line": 92, - "column": 457 - }, - "identifierName": "m" - }, - "name": "m" - }, - "operator": "-", - "right": { - "type": "NumericLiteral", - "start": 8697, - "end": 8698, - "loc": { - "start": { - "line": 92, - "column": 460 - }, - "end": { - "line": 92, - "column": 461 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "operator": "|", - "right": { - "type": "NumericLiteral", - "start": 8701, - "end": 8702, - "loc": { - "start": { - "line": 92, - "column": 464 - }, - "end": { - "line": 92, - "column": 465 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ] - }, - "operator": "||", - "right": { - "type": "NumericLiteral", - "start": 8707, - "end": 8708, - "loc": { - "start": { - "line": 92, - "column": 470 - }, - "end": { - "line": 92, - "column": 471 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - }, - { - "type": "VariableDeclarator", - "start": 8710, - "end": 8715, - "loc": { - "start": { - "line": 92, - "column": 473 - }, - "end": { - "line": 92, - "column": 478 - } - }, - "id": { - "type": "Identifier", - "start": 8710, - "end": 8711, - "loc": { - "start": { - "line": 92, - "column": 473 - }, - "end": { - "line": 92, - "column": 474 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "NumericLiteral", - "start": 8714, - "end": 8715, - "loc": { - "start": { - "line": 92, - "column": 477 - }, - "end": { - "line": 92, - "column": 478 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 8717, - "end": 8729, - "loc": { - "start": { - "line": 92, - "column": 480 - }, - "end": { - "line": 92, - "column": 492 - } - }, - "id": { - "type": "Identifier", - "start": 8717, - "end": 8718, - "loc": { - "start": { - "line": 92, - "column": 480 - }, - "end": { - "line": 92, - "column": 481 - }, - "identifierName": "z" - }, - "name": "z" - }, - "init": { - "type": "MemberExpression", - "start": 8721, - "end": 8729, - "loc": { - "start": { - "line": 92, - "column": 484 - }, - "end": { - "line": 92, - "column": 492 - } - }, - "object": { - "type": "Identifier", - "start": 8721, - "end": 8722, - "loc": { - "start": { - "line": 92, - "column": 484 - }, - "end": { - "line": 92, - "column": 485 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 8723, - "end": 8729, - "loc": { - "start": { - "line": 92, - "column": 486 - }, - "end": { - "line": 92, - "column": 492 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 8731, - "end": 8736, - "loc": { - "start": { - "line": 92, - "column": 494 - }, - "end": { - "line": 92, - "column": 499 - } - }, - "left": { - "type": "Identifier", - "start": 8731, - "end": 8732, - "loc": { - "start": { - "line": 92, - "column": 494 - }, - "end": { - "line": 92, - "column": 495 - }, - "identifierName": "g" - }, - "name": "g" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 8735, - "end": 8736, - "loc": { - "start": { - "line": 92, - "column": 498 - }, - "end": { - "line": 92, - "column": 499 - }, - "identifierName": "z" - }, - "name": "z" - } - }, - "update": { - "type": "UpdateExpression", - "start": 8738, - "end": 8741, - "loc": { - "start": { - "line": 92, - "column": 501 - }, - "end": { - "line": 92, - "column": 504 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 8740, - "end": 8741, - "loc": { - "start": { - "line": 92, - "column": 503 - }, - "end": { - "line": 92, - "column": 504 - }, - "identifierName": "g" - }, - "name": "g" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 8743, - "end": 8861, - "loc": { - "start": { - "line": 92, - "column": 506 - }, - "end": { - "line": 92, - "column": 624 - } - }, - "expression": { - "type": "SequenceExpression", - "start": 8743, - "end": 8860, - "loc": { - "start": { - "line": 92, - "column": 506 - }, - "end": { - "line": 92, - "column": 623 - } - }, - "expressions": [ - { - "type": "AssignmentExpression", - "start": 8743, - "end": 8751, - "loc": { - "start": { - "line": 92, - "column": 506 - }, - "end": { - "line": 92, - "column": 514 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 8743, - "end": 8744, - "loc": { - "start": { - "line": 92, - "column": 506 - }, - "end": { - "line": 92, - "column": 507 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "MemberExpression", - "start": 8747, - "end": 8751, - "loc": { - "start": { - "line": 92, - "column": 510 - }, - "end": { - "line": 92, - "column": 514 - } - }, - "object": { - "type": "Identifier", - "start": 8747, - "end": 8748, - "loc": { - "start": { - "line": 92, - "column": 510 - }, - "end": { - "line": 92, - "column": 511 - }, - "identifierName": "d" - }, - "name": "d" - }, - "property": { - "type": "Identifier", - "start": 8749, - "end": 8750, - "loc": { - "start": { - "line": 92, - "column": 512 - }, - "end": { - "line": 92, - "column": 513 - }, - "identifierName": "g" - }, - "name": "g" - }, - "computed": true - } - }, - { - "type": "AssignmentExpression", - "start": 8753, - "end": 8785, - "loc": { - "start": { - "line": 92, - "column": 516 - }, - "end": { - "line": 92, - "column": 548 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 8753, - "end": 8764, - "loc": { - "start": { - "line": 92, - "column": 516 - }, - "end": { - "line": 92, - "column": 527 - } - }, - "object": { - "type": "Identifier", - "start": 8753, - "end": 8754, - "loc": { - "start": { - "line": 92, - "column": 516 - }, - "end": { - "line": 92, - "column": 517 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 8755, - "end": 8764, - "loc": { - "start": { - "line": 92, - "column": 518 - }, - "end": { - "line": 92, - "column": 527 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - }, - "right": { - "type": "BinaryExpression", - "start": 8767, - "end": 8785, - "loc": { - "start": { - "line": 92, - "column": 530 - }, - "end": { - "line": 92, - "column": 548 - } - }, - "left": { - "type": "StringLiteral", - "start": 8767, - "end": 8770, - "loc": { - "start": { - "line": 92, - "column": 530 - }, - "end": { - "line": 92, - "column": 533 - } - }, - "extra": { - "rawValue": "L", - "raw": "\"L\"" - }, - "value": "L" - }, - "operator": "+", - "right": { - "type": "BinaryExpression", - "start": 8773, - "end": 8785, - "loc": { - "start": { - "line": 92, - "column": 536 - }, - "end": { - "line": 92, - "column": 548 - } - }, - "left": { - "type": "BinaryExpression", - "start": 8774, - "end": 8779, - "loc": { - "start": { - "line": 92, - "column": 537 - }, - "end": { - "line": 92, - "column": 542 - } - }, - "left": { - "type": "Identifier", - "start": 8774, - "end": 8775, - "loc": { - "start": { - "line": 92, - "column": 537 - }, - "end": { - "line": 92, - "column": 538 - }, - "identifierName": "g" - }, - "name": "g" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 8778, - "end": 8779, - "loc": { - "start": { - "line": 92, - "column": 541 - }, - "end": { - "line": 92, - "column": 542 - }, - "identifierName": "n" - }, - "name": "n" - }, - "extra": { - "parenthesized": true, - "parenStart": 8773 - } - }, - "operator": "%", - "right": { - "type": "NumericLiteral", - "start": 8783, - "end": 8785, - "loc": { - "start": { - "line": 92, - "column": 546 - }, - "end": { - "line": 92, - "column": 548 - } - }, - "extra": { - "rawValue": 10, - "raw": "10" - }, - "value": 10 - } - } - } - }, - { - "type": "LogicalExpression", - "start": 8787, - "end": 8842, - "loc": { - "start": { - "line": 92, - "column": 550 - }, - "end": { - "line": 92, - "column": 605 - } - }, - "left": { - "type": "MemberExpression", - "start": 8787, - "end": 8799, - "loc": { - "start": { - "line": 92, - "column": 550 - }, - "end": { - "line": 92, - "column": 562 - } - }, - "object": { - "type": "Identifier", - "start": 8787, - "end": 8788, - "loc": { - "start": { - "line": 92, - "column": 550 - }, - "end": { - "line": 92, - "column": 551 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 8789, - "end": 8799, - "loc": { - "start": { - "line": 92, - "column": 552 - }, - "end": { - "line": 92, - "column": 562 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - }, - "operator": "||", - "right": { - "type": "CallExpression", - "start": 8803, - "end": 8842, - "loc": { - "start": { - "line": 92, - "column": 566 - }, - "end": { - "line": 92, - "column": 605 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8803, - "end": 8816, - "loc": { - "start": { - "line": 92, - "column": 566 - }, - "end": { - "line": 92, - "column": 579 - } - }, - "object": { - "type": "Identifier", - "start": 8803, - "end": 8804, - "loc": { - "start": { - "line": 92, - "column": 566 - }, - "end": { - "line": 92, - "column": 567 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 8805, - "end": 8816, - "loc": { - "start": { - "line": 92, - "column": 568 - }, - "end": { - "line": 92, - "column": 579 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "CallExpression", - "start": 8817, - "end": 8841, - "loc": { - "start": { - "line": 92, - "column": 580 - }, - "end": { - "line": 92, - "column": 604 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8817, - "end": 8833, - "loc": { - "start": { - "line": 92, - "column": 580 - }, - "end": { - "line": 92, - "column": 596 - } - }, - "object": { - "type": "Identifier", - "start": 8817, - "end": 8818, - "loc": { - "start": { - "line": 92, - "column": 580 - }, - "end": { - "line": 92, - "column": 581 - }, - "identifierName": "s" - }, - "name": "s" - }, - "property": { - "type": "Identifier", - "start": 8819, - "end": 8833, - "loc": { - "start": { - "line": 92, - "column": 582 - }, - "end": { - "line": 92, - "column": 596 - }, - "identifierName": "createTextNode" - }, - "name": "createTextNode" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 8834, - "end": 8840, - "loc": { - "start": { - "line": 92, - "column": 597 - }, - "end": { - "line": 92, - "column": 603 - } - }, - "extra": { - "rawValue": " ", - "raw": "\"\\xa0\"" - }, - "value": " " - } - ] - } - ] - } - }, - { - "type": "CallExpression", - "start": 8844, - "end": 8860, - "loc": { - "start": { - "line": 92, - "column": 607 - }, - "end": { - "line": 92, - "column": 623 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8844, - "end": 8857, - "loc": { - "start": { - "line": 92, - "column": 607 - }, - "end": { - "line": 92, - "column": 620 - } - }, - "object": { - "type": "Identifier", - "start": 8844, - "end": 8845, - "loc": { - "start": { - "line": 92, - "column": 607 - }, - "end": { - "line": 92, - "column": 608 - }, - "identifierName": "r" - }, - "name": "r" - }, - "property": { - "type": "Identifier", - "start": 8846, - "end": 8857, - "loc": { - "start": { - "line": 92, - "column": 609 - }, - "end": { - "line": 92, - "column": 620 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8858, - "end": 8859, - "loc": { - "start": { - "line": 92, - "column": 621 - }, - "end": { - "line": 92, - "column": 622 - }, - "identifierName": "l" - }, - "name": "l" - } - ] - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 8861, - "end": 8878, - "loc": { - "start": { - "line": 92, - "column": 624 - }, - "end": { - "line": 92, - "column": 641 - } - }, - "expression": { - "type": "CallExpression", - "start": 8861, - "end": 8877, - "loc": { - "start": { - "line": 92, - "column": 624 - }, - "end": { - "line": 92, - "column": 640 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8861, - "end": 8874, - "loc": { - "start": { - "line": 92, - "column": 624 - }, - "end": { - "line": 92, - "column": 637 - } - }, - "object": { - "type": "Identifier", - "start": 8861, - "end": 8862, - "loc": { - "start": { - "line": 92, - "column": 624 - }, - "end": { - "line": 92, - "column": 625 - }, - "identifierName": "a" - }, - "name": "a" - }, - "property": { - "type": "Identifier", - "start": 8863, - "end": 8874, - "loc": { - "start": { - "line": 92, - "column": 626 - }, - "end": { - "line": 92, - "column": 637 - }, - "identifierName": "appendChild" - }, - "name": "appendChild" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8875, - "end": 8876, - "loc": { - "start": { - "line": 92, - "column": 638 - }, - "end": { - "line": 92, - "column": 639 - }, - "identifierName": "r" - }, - "name": "r" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 8882, - "end": 9076, - "loc": { - "start": { - "line": 93, - "column": 3 - }, - "end": { - "line": 97, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 8891, - "end": 8892, - "loc": { - "start": { - "line": 93, - "column": 12 - }, - "end": { - "line": 93, - "column": 13 - }, - "identifierName": "k" - }, - "name": "k" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 8893, - "end": 8894, - "loc": { - "start": { - "line": 93, - "column": 14 - }, - "end": { - "line": 93, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 8896, - "end": 8897, - "loc": { - "start": { - "line": 93, - "column": 17 - }, - "end": { - "line": 93, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - } - ], - "body": { - "type": "BlockStatement", - "start": 8899, - "end": 9076, - "loc": { - "start": { - "line": 93, - "column": 20 - }, - "end": { - "line": 97, - "column": 3 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 8905, - "end": 9072, - "loc": { - "start": { - "line": 94, - "column": 4 - }, - "end": { - "line": 96, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 8910, - "end": 8926, - "loc": { - "start": { - "line": 94, - "column": 9 - }, - "end": { - "line": 94, - "column": 25 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8914, - "end": 8926, - "loc": { - "start": { - "line": 94, - "column": 13 - }, - "end": { - "line": 94, - "column": 25 - } - }, - "id": { - "type": "Identifier", - "start": 8914, - "end": 8915, - "loc": { - "start": { - "line": 94, - "column": 13 - }, - "end": { - "line": 94, - "column": 14 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "MemberExpression", - "start": 8918, - "end": 8926, - "loc": { - "start": { - "line": 94, - "column": 17 - }, - "end": { - "line": 94, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 8918, - "end": 8919, - "loc": { - "start": { - "line": 94, - "column": 17 - }, - "end": { - "line": 94, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 8920, - "end": 8926, - "loc": { - "start": { - "line": 94, - "column": 19 - }, - "end": { - "line": 94, - "column": 25 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 8928, - "end": 8936, - "loc": { - "start": { - "line": 94, - "column": 27 - }, - "end": { - "line": 94, - "column": 35 - } - }, - "left": { - "type": "UpdateExpression", - "start": 8928, - "end": 8931, - "loc": { - "start": { - "line": 94, - "column": 27 - }, - "end": { - "line": 94, - "column": 30 - } - }, - "operator": "--", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 8930, - "end": 8931, - "loc": { - "start": { - "line": 94, - "column": 29 - }, - "end": { - "line": 94, - "column": 30 - }, - "identifierName": "e" - }, - "name": "e" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 8935, - "end": 8936, - "loc": { - "start": { - "line": 94, - "column": 34 - }, - "end": { - "line": 94, - "column": 35 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "update": null, - "body": { - "type": "BlockStatement", - "start": 8939, - "end": 9072, - "loc": { - "start": { - "line": 94, - "column": 38 - }, - "end": { - "line": 96, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 8947, - "end": 8960, - "loc": { - "start": { - "line": 95, - "column": 6 - }, - "end": { - "line": 95, - "column": 19 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8951, - "end": 8959, - "loc": { - "start": { - "line": 95, - "column": 10 - }, - "end": { - "line": 95, - "column": 18 - } - }, - "id": { - "type": "Identifier", - "start": 8951, - "end": 8952, - "loc": { - "start": { - "line": 95, - "column": 10 - }, - "end": { - "line": 95, - "column": 11 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "MemberExpression", - "start": 8955, - "end": 8959, - "loc": { - "start": { - "line": 95, - "column": 14 - }, - "end": { - "line": 95, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 8955, - "end": 8956, - "loc": { - "start": { - "line": 95, - "column": 14 - }, - "end": { - "line": 95, - "column": 15 - }, - "identifierName": "m" - }, - "name": "m" - }, - "property": { - "type": "Identifier", - "start": 8957, - "end": 8958, - "loc": { - "start": { - "line": 95, - "column": 16 - }, - "end": { - "line": 95, - "column": 17 - }, - "identifierName": "e" - }, - "name": "e" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 8960, - "end": 9066, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 125 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 8960, - "end": 9065, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 124 - } - }, - "test": { - "type": "CallExpression", - "start": 8960, - "end": 8979, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 38 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8960, - "end": 8976, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 8960, - "end": 8961, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 20 - }, - "identifierName": "A" - }, - "name": "A" - }, - "property": { - "type": "Identifier", - "start": 8962, - "end": 8976, - "loc": { - "start": { - "line": 95, - "column": 21 - }, - "end": { - "line": 95, - "column": 35 - }, - "identifierName": "hasOwnProperty" - }, - "name": "hasOwnProperty" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8977, - "end": 8978, - "loc": { - "start": { - "line": 95, - "column": 36 - }, - "end": { - "line": 95, - "column": 37 - }, - "identifierName": "h" - }, - "name": "h" - } - ] - }, - "consequent": { - "type": "LogicalExpression", - "start": 8982, - "end": 9054, - "loc": { - "start": { - "line": 95, - "column": 41 - }, - "end": { - "line": 95, - "column": 113 - } - }, - "left": { - "type": "MemberExpression", - "start": 8982, - "end": 8996, - "loc": { - "start": { - "line": 95, - "column": 41 - }, - "end": { - "line": 95, - "column": 55 - } - }, - "object": { - "type": "Identifier", - "start": 8982, - "end": 8988, - "loc": { - "start": { - "line": 95, - "column": 41 - }, - "end": { - "line": 95, - "column": 47 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 8989, - "end": 8996, - "loc": { - "start": { - "line": 95, - "column": 48 - }, - "end": { - "line": 95, - "column": 55 - }, - "identifierName": "console" - }, - "name": "console" - }, - "computed": false - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 9000, - "end": 9054, - "loc": { - "start": { - "line": 95, - "column": 59 - }, - "end": { - "line": 95, - "column": 113 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9000, - "end": 9012, - "loc": { - "start": { - "line": 95, - "column": 59 - }, - "end": { - "line": 95, - "column": 71 - } - }, - "object": { - "type": "Identifier", - "start": 9000, - "end": 9007, - "loc": { - "start": { - "line": 95, - "column": 59 - }, - "end": { - "line": 95, - "column": 66 - }, - "identifierName": "console" - }, - "name": "console" - }, - "property": { - "type": "Identifier", - "start": 9008, - "end": 9012, - "loc": { - "start": { - "line": 95, - "column": 67 - }, - "end": { - "line": 95, - "column": 71 - }, - "identifierName": "warn" - }, - "name": "warn" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 9013, - "end": 9050, - "loc": { - "start": { - "line": 95, - "column": 72 - }, - "end": { - "line": 95, - "column": 109 - } - }, - "extra": { - "rawValue": "cannot override language handler %s", - "raw": "\"cannot override language handler %s\"" - }, - "value": "cannot override language handler %s" - }, - { - "type": "Identifier", - "start": 9052, - "end": 9053, - "loc": { - "start": { - "line": 95, - "column": 111 - }, - "end": { - "line": 95, - "column": 112 - }, - "identifierName": "h" - }, - "name": "h" - } - ] - } - }, - "alternate": { - "type": "AssignmentExpression", - "start": 9057, - "end": 9065, - "loc": { - "start": { - "line": 95, - "column": 116 - }, - "end": { - "line": 95, - "column": 124 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 9057, - "end": 9061, - "loc": { - "start": { - "line": 95, - "column": 116 - }, - "end": { - "line": 95, - "column": 120 - } - }, - "object": { - "type": "Identifier", - "start": 9057, - "end": 9058, - "loc": { - "start": { - "line": 95, - "column": 116 - }, - "end": { - "line": 95, - "column": 117 - }, - "identifierName": "A" - }, - "name": "A" - }, - "property": { - "type": "Identifier", - "start": 9059, - "end": 9060, - "loc": { - "start": { - "line": 95, - "column": 118 - }, - "end": { - "line": 95, - "column": 119 - }, - "identifierName": "h" - }, - "name": "h" - }, - "computed": true - }, - "right": { - "type": "Identifier", - "start": 9064, - "end": 9065, - "loc": { - "start": { - "line": 95, - "column": 123 - }, - "end": { - "line": 95, - "column": 124 - }, - "identifierName": "a" - }, - "name": "a" - } - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - } - }, - { - "type": "FunctionDeclaration", - "start": 9076, - "end": 9203, - "loc": { - "start": { - "line": 97, - "column": 3 - }, - "end": { - "line": 99, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 9085, - "end": 9086, - "loc": { - "start": { - "line": 97, - "column": 12 - }, - "end": { - "line": 97, - "column": 13 - }, - "identifierName": "C" - }, - "name": "C" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 9087, - "end": 9088, - "loc": { - "start": { - "line": 97, - "column": 14 - }, - "end": { - "line": 97, - "column": 15 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 9090, - "end": 9091, - "loc": { - "start": { - "line": 97, - "column": 17 - }, - "end": { - "line": 97, - "column": 18 - }, - "identifierName": "m" - }, - "name": "m" - } - ], - "body": { - "type": "BlockStatement", - "start": 9093, - "end": 9203, - "loc": { - "start": { - "line": 97, - "column": 20 - }, - "end": { - "line": 99, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 9099, - "end": 9187, - "loc": { - "start": { - "line": 98, - "column": 4 - }, - "end": { - "line": 98, - "column": 92 - } - }, - "test": { - "type": "LogicalExpression", - "start": 9103, - "end": 9129, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 34 - } - }, - "left": { - "type": "UnaryExpression", - "start": 9103, - "end": 9105, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 10 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 9104, - "end": 9105, - "loc": { - "start": { - "line": 98, - "column": 9 - }, - "end": { - "line": 98, - "column": 10 - }, - "identifierName": "a" - }, - "name": "a" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "operator": "||", - "right": { - "type": "UnaryExpression", - "start": 9109, - "end": 9129, - "loc": { - "start": { - "line": 98, - "column": 14 - }, - "end": { - "line": 98, - "column": 34 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "CallExpression", - "start": 9110, - "end": 9129, - "loc": { - "start": { - "line": 98, - "column": 15 - }, - "end": { - "line": 98, - "column": 34 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9110, - "end": 9126, - "loc": { - "start": { - "line": 98, - "column": 15 - }, - "end": { - "line": 98, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 9110, - "end": 9111, - "loc": { - "start": { - "line": 98, - "column": 15 - }, - "end": { - "line": 98, - "column": 16 - }, - "identifierName": "A" - }, - "name": "A" - }, - "property": { - "type": "Identifier", - "start": 9112, - "end": 9126, - "loc": { - "start": { - "line": 98, - "column": 17 - }, - "end": { - "line": 98, - "column": 31 - }, - "identifierName": "hasOwnProperty" - }, - "name": "hasOwnProperty" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 9127, - "end": 9128, - "loc": { - "start": { - "line": 98, - "column": 32 - }, - "end": { - "line": 98, - "column": 33 - }, - "identifierName": "a" - }, - "name": "a" - } - ] - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 9131, - "end": 9187, - "loc": { - "start": { - "line": 98, - "column": 36 - }, - "end": { - "line": 98, - "column": 92 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 9131, - "end": 9186, - "loc": { - "start": { - "line": 98, - "column": 36 - }, - "end": { - "line": 98, - "column": 91 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 9131, - "end": 9132, - "loc": { - "start": { - "line": 98, - "column": 36 - }, - "end": { - "line": 98, - "column": 37 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "ConditionalExpression", - "start": 9135, - "end": 9186, - "loc": { - "start": { - "line": 98, - "column": 40 - }, - "end": { - "line": 98, - "column": 91 - } - }, - "test": { - "type": "CallExpression", - "start": 9135, - "end": 9150, - "loc": { - "start": { - "line": 98, - "column": 40 - }, - "end": { - "line": 98, - "column": 55 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9135, - "end": 9147, - "loc": { - "start": { - "line": 98, - "column": 40 - }, - "end": { - "line": 98, - "column": 52 - } - }, - "object": { - "type": "RegExpLiteral", - "start": 9135, - "end": 9142, - "loc": { - "start": { - "line": 98, - "column": 40 - }, - "end": { - "line": 98, - "column": 47 - } - }, - "extra": { - "raw": "/^\\s*=", - "right": { - "type": "Identifier", - "start": 10364, - "end": 10365, - "loc": { - "start": { - "line": 122, - "column": 20 - }, - "end": { - "line": 122, - "column": 21 - }, - "identifierName": "o" - }, - "name": "o" - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 10370, - "end": 10376, - "loc": { - "start": { - "line": 122, - "column": 26 - }, - "end": { - "line": 122, - "column": 32 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 10370, - "end": 10371, - "loc": { - "start": { - "line": 122, - "column": 26 - }, - "end": { - "line": 122, - "column": 27 - }, - "identifierName": "h" - }, - "name": "h" - }, - "right": { - "type": "NumericLiteral", - "start": 10375, - "end": 10376, - "loc": { - "start": { - "line": 122, - "column": 31 - }, - "end": { - "line": 122, - "column": 32 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - }, - "extra": { - "parenthesized": true, - "parenStart": 10369 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 10378, - "end": 10397, - "loc": { - "start": { - "line": 122, - "column": 34 - }, - "end": { - "line": 122, - "column": 53 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 10378, - "end": 10396, - "loc": { - "start": { - "line": 122, - "column": 34 - }, - "end": { - "line": 122, - "column": 52 - } - }, - "left": { - "type": "BinaryExpression", - "start": 10378, - "end": 10384, - "loc": { - "start": { - "line": 122, - "column": 34 - }, - "end": { - "line": 122, - "column": 40 - } - }, - "left": { - "type": "Identifier", - "start": 10378, - "end": 10379, - "loc": { - "start": { - "line": 122, - "column": 34 - }, - "end": { - "line": 122, - "column": 35 - }, - "identifierName": "e" - }, - "name": "e" - }, - "operator": ">=", - "right": { - "type": "Identifier", - "start": 10383, - "end": 10384, - "loc": { - "start": { - "line": 122, - "column": 39 - }, - "end": { - "line": 122, - "column": 40 - }, - "identifierName": "c" - }, - "name": "c" - } - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 10389, - "end": 10395, - "loc": { - "start": { - "line": 122, - "column": 45 - }, - "end": { - "line": 122, - "column": 51 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 10389, - "end": 10390, - "loc": { - "start": { - "line": 122, - "column": 45 - }, - "end": { - "line": 122, - "column": 46 - }, - "identifierName": "a" - }, - "name": "a" - }, - "right": { - "type": "NumericLiteral", - "start": 10394, - "end": 10395, - "loc": { - "start": { - "line": 122, - "column": 50 - }, - "end": { - "line": 122, - "column": 51 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - }, - "extra": { - "parenthesized": true, - "parenStart": 10388 - } - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - }, - "handler": { - "type": "CatchClause", - "start": 10412, - "end": 10499, - "loc": { - "start": { - "line": 124, - "column": 6 - }, - "end": { - "line": 126, - "column": 5 - } - }, - "param": { - "type": "Identifier", - "start": 10419, - "end": 10420, - "loc": { - "start": { - "line": 124, - "column": 13 - }, - "end": { - "line": 124, - "column": 14 - }, - "identifierName": "w" - }, - "name": "w" - }, - "body": { - "type": "BlockStatement", - "start": 10422, - "end": 10499, - "loc": { - "start": { - "line": 124, - "column": 16 - }, - "end": { - "line": 126, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 10430, - "end": 10493, - "loc": { - "start": { - "line": 125, - "column": 6 - }, - "end": { - "line": 125, - "column": 69 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 10430, - "end": 10492, - "loc": { - "start": { - "line": 125, - "column": 6 - }, - "end": { - "line": 125, - "column": 68 - } - }, - "left": { - "type": "BinaryExpression", - "start": 10430, - "end": 10449, - "loc": { - "start": { - "line": 125, - "column": 6 - }, - "end": { - "line": 125, - "column": 25 - } - }, - "left": { - "type": "StringLiteral", - "start": 10430, - "end": 10439, - "loc": { - "start": { - "line": 125, - "column": 6 - }, - "end": { - "line": 125, - "column": 15 - } - }, - "extra": { - "rawValue": "console", - "raw": "\"console\"" - }, - "value": "console" - }, - "operator": "in", - "right": { - "type": "Identifier", - "start": 10443, - "end": 10449, - "loc": { - "start": { - "line": 125, - "column": 19 - }, - "end": { - "line": 125, - "column": 25 - }, - "identifierName": "window" - }, - "name": "window" - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 10453, - "end": 10492, - "loc": { - "start": { - "line": 125, - "column": 29 - }, - "end": { - "line": 125, - "column": 68 - } - }, - "callee": { - "type": "MemberExpression", - "start": 10453, - "end": 10464, - "loc": { - "start": { - "line": 125, - "column": 29 - }, - "end": { - "line": 125, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 10453, - "end": 10460, - "loc": { - "start": { - "line": 125, - "column": 29 - }, - "end": { - "line": 125, - "column": 36 - }, - "identifierName": "console" - }, - "name": "console" - }, - "property": { - "type": "Identifier", - "start": 10461, - "end": 10464, - "loc": { - "start": { - "line": 125, - "column": 37 - }, - "end": { - "line": 125, - "column": 40 - }, - "identifierName": "log" - }, - "name": "log" - }, - "computed": false - }, - "arguments": [ - { - "type": "ConditionalExpression", - "start": 10465, - "end": 10491, - "loc": { - "start": { - "line": 125, - "column": 41 - }, - "end": { - "line": 125, - "column": 67 - } - }, - "test": { - "type": "LogicalExpression", - "start": 10465, - "end": 10477, - "loc": { - "start": { - "line": 125, - "column": 41 - }, - "end": { - "line": 125, - "column": 53 - } - }, - "left": { - "type": "Identifier", - "start": 10465, - "end": 10466, - "loc": { - "start": { - "line": 125, - "column": 41 - }, - "end": { - "line": 125, - "column": 42 - }, - "identifierName": "w" - }, - "name": "w" - }, - "operator": "&&", - "right": { - "type": "MemberExpression", - "start": 10470, - "end": 10477, - "loc": { - "start": { - "line": 125, - "column": 46 - }, - "end": { - "line": 125, - "column": 53 - } - }, - "object": { - "type": "Identifier", - "start": 10470, - "end": 10471, - "loc": { - "start": { - "line": 125, - "column": 46 - }, - "end": { - "line": 125, - "column": 47 - }, - "identifierName": "w" - }, - "name": "w" - }, - "property": { - "type": "Identifier", - "start": 10472, - "end": 10477, - "loc": { - "start": { - "line": 125, - "column": 48 - }, - "end": { - "line": 125, - "column": 53 - }, - "identifierName": "stack" - }, - "name": "stack" - }, - "computed": false - } - }, - "consequent": { - "type": "MemberExpression", - "start": 10480, - "end": 10487, - "loc": { - "start": { - "line": 125, - "column": 56 - }, - "end": { - "line": 125, - "column": 63 - } - }, - "object": { - "type": "Identifier", - "start": 10480, - "end": 10481, - "loc": { - "start": { - "line": 125, - "column": 56 - }, - "end": { - "line": 125, - "column": 57 - }, - "identifierName": "w" - }, - "name": "w" - }, - "property": { - "type": "Identifier", - "start": 10482, - "end": 10487, - "loc": { - "start": { - "line": 125, - "column": 58 - }, - "end": { - "line": 125, - "column": 63 - }, - "identifierName": "stack" - }, - "name": "stack" - }, - "computed": false - }, - "alternate": { - "type": "Identifier", - "start": 10490, - "end": 10491, - "loc": { - "start": { - "line": 125, - "column": 66 - }, - "end": { - "line": 125, - "column": 67 - }, - "identifierName": "w" - }, - "name": "w" - } - } - ] - } - } - } - ], - "directives": [] - } - }, - "guardedHandlers": [], - "finalizer": null - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 10503, - "end": 12524, - "loc": { - "start": { - "line": 127, - "column": 3 - }, - "end": { - "line": 139, - "column": 13 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 10507, - "end": 10557, - "loc": { - "start": { - "line": 127, - "column": 7 - }, - "end": { - "line": 127, - "column": 57 - } - }, - "id": { - "type": "Identifier", - "start": 10507, - "end": 10508, - "loc": { - "start": { - "line": 127, - "column": 7 - }, - "end": { - "line": 127, - "column": 8 - }, - "identifierName": "v" - }, - "name": "v" - }, - "init": { - "type": "ArrayExpression", - "start": 10511, - "end": 10557, - "loc": { - "start": { - "line": 127, - "column": 11 - }, - "end": { - "line": 127, - "column": 57 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10512, - "end": 10556, - "loc": { - "start": { - "line": 127, - "column": 12 - }, - "end": { - "line": 127, - "column": 56 - } - }, - "extra": { - "rawValue": "break,continue,do,else,for,if,return,while", - "raw": "\"break,continue,do,else,for,if,return,while\"" - }, - "value": "break,continue,do,else,for,if,return,while" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 10565, - "end": 10832, - "loc": { - "start": { - "line": 128, - "column": 6 - }, - "end": { - "line": 128, - "column": 273 - } - }, - "id": { - "type": "Identifier", - "start": 10565, - "end": 10566, - "loc": { - "start": { - "line": 128, - "column": 6 - }, - "end": { - "line": 128, - "column": 7 - }, - "identifierName": "w" - }, - "name": "w" - }, - "init": { - "type": "ArrayExpression", - "start": 10569, - "end": 10832, - "loc": { - "start": { - "line": 128, - "column": 10 - }, - "end": { - "line": 128, - "column": 273 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 10570, - "end": 10731, - "loc": { - "start": { - "line": 128, - "column": 11 - }, - "end": { - "line": 128, - "column": 172 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 10571, - "end": 10572, - "loc": { - "start": { - "line": 128, - "column": 12 - }, - "end": { - "line": 128, - "column": 13 - }, - "identifierName": "v" - }, - "name": "v" - }, - { - "type": "StringLiteral", - "start": 10574, - "end": 10730, - "loc": { - "start": { - "line": 128, - "column": 15 - }, - "end": { - "line": 128, - "column": 171 - } - }, - "extra": { - "rawValue": "auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile", - "raw": "\"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile\"" - }, - "value": "auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile" - } - ] - }, - { - "type": "StringLiteral", - "start": 10733, - "end": 10831, - "loc": { - "start": { - "line": 128, - "column": 174 - }, - "end": { - "line": 128, - "column": 272 - } - }, - "extra": { - "rawValue": "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof", - "raw": "\"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof\"" - }, - "value": "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 10840, - "end": 11103, - "loc": { - "start": { - "line": 129, - "column": 6 - }, - "end": { - "line": 129, - "column": 269 - } - }, - "id": { - "type": "Identifier", - "start": 10840, - "end": 10841, - "loc": { - "start": { - "line": 129, - "column": 6 - }, - "end": { - "line": 129, - "column": 7 - }, - "identifierName": "F" - }, - "name": "F" - }, - "init": { - "type": "ArrayExpression", - "start": 10844, - "end": 11103, - "loc": { - "start": { - "line": 129, - "column": 10 - }, - "end": { - "line": 129, - "column": 269 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 10845, - "end": 10846, - "loc": { - "start": { - "line": 129, - "column": 11 - }, - "end": { - "line": 129, - "column": 12 - }, - "identifierName": "w" - }, - "name": "w" - }, - { - "type": "StringLiteral", - "start": 10848, - "end": 11102, - "loc": { - "start": { - "line": 129, - "column": 14 - }, - "end": { - "line": 129, - "column": 268 - } - }, - "extra": { - "rawValue": "alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where", - "raw": "\"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where\"" - }, - "value": "alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11111, - "end": 11259, - "loc": { - "start": { - "line": 130, - "column": 6 - }, - "end": { - "line": 130, - "column": 154 - } - }, - "id": { - "type": "Identifier", - "start": 11111, - "end": 11112, - "loc": { - "start": { - "line": 130, - "column": 6 - }, - "end": { - "line": 130, - "column": 7 - }, - "identifierName": "G" - }, - "name": "G" - }, - "init": { - "type": "ArrayExpression", - "start": 11115, - "end": 11259, - "loc": { - "start": { - "line": 130, - "column": 10 - }, - "end": { - "line": 130, - "column": 154 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11116, - "end": 11117, - "loc": { - "start": { - "line": 130, - "column": 11 - }, - "end": { - "line": 130, - "column": 12 - }, - "identifierName": "w" - }, - "name": "w" - }, - { - "type": "StringLiteral", - "start": 11119, - "end": 11258, - "loc": { - "start": { - "line": 130, - "column": 14 - }, - "end": { - "line": 130, - "column": 153 - } - }, - "extra": { - "rawValue": "abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient", - "raw": "\"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient\"" - }, - "value": "abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11267, - "end": 11540, - "loc": { - "start": { - "line": 131, - "column": 6 - }, - "end": { - "line": 131, - "column": 279 - } - }, - "id": { - "type": "Identifier", - "start": 11267, - "end": 11268, - "loc": { - "start": { - "line": 131, - "column": 6 - }, - "end": { - "line": 131, - "column": 7 - }, - "identifierName": "H" - }, - "name": "H" - }, - "init": { - "type": "ArrayExpression", - "start": 11271, - "end": 11540, - "loc": { - "start": { - "line": 131, - "column": 10 - }, - "end": { - "line": 131, - "column": 279 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11272, - "end": 11273, - "loc": { - "start": { - "line": 131, - "column": 11 - }, - "end": { - "line": 131, - "column": 12 - }, - "identifierName": "G" - }, - "name": "G" - }, - { - "type": "StringLiteral", - "start": 11275, - "end": 11539, - "loc": { - "start": { - "line": 131, - "column": 14 - }, - "end": { - "line": 131, - "column": 278 - } - }, - "extra": { - "rawValue": "as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var", - "raw": "\"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var\"" - }, - "value": "as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11548, - "end": 11633, - "loc": { - "start": { - "line": 132, - "column": 6 - }, - "end": { - "line": 132, - "column": 91 - } - }, - "id": { - "type": "Identifier", - "start": 11548, - "end": 11549, - "loc": { - "start": { - "line": 132, - "column": 6 - }, - "end": { - "line": 132, - "column": 7 - }, - "identifierName": "w" - }, - "name": "w" - }, - "init": { - "type": "ArrayExpression", - "start": 11552, - "end": 11633, - "loc": { - "start": { - "line": 132, - "column": 10 - }, - "end": { - "line": 132, - "column": 91 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11553, - "end": 11554, - "loc": { - "start": { - "line": 132, - "column": 11 - }, - "end": { - "line": 132, - "column": 12 - }, - "identifierName": "w" - }, - "name": "w" - }, - { - "type": "StringLiteral", - "start": 11556, - "end": 11632, - "loc": { - "start": { - "line": 132, - "column": 14 - }, - "end": { - "line": 132, - "column": 90 - } - }, - "extra": { - "rawValue": "debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN", - "raw": "\"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN\"" - }, - "value": "debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11641, - "end": 11800, - "loc": { - "start": { - "line": 133, - "column": 6 - }, - "end": { - "line": 133, - "column": 165 - } - }, - "id": { - "type": "Identifier", - "start": 11641, - "end": 11642, - "loc": { - "start": { - "line": 133, - "column": 6 - }, - "end": { - "line": 133, - "column": 7 - }, - "identifierName": "I" - }, - "name": "I" - }, - "init": { - "type": "ArrayExpression", - "start": 11645, - "end": 11800, - "loc": { - "start": { - "line": 133, - "column": 10 - }, - "end": { - "line": 133, - "column": 165 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11646, - "end": 11647, - "loc": { - "start": { - "line": 133, - "column": 11 - }, - "end": { - "line": 133, - "column": 12 - }, - "identifierName": "v" - }, - "name": "v" - }, - { - "type": "StringLiteral", - "start": 11649, - "end": 11799, - "loc": { - "start": { - "line": 133, - "column": 14 - }, - "end": { - "line": 133, - "column": 164 - } - }, - "extra": { - "rawValue": "and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None", - "raw": "\"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None\"" - }, - "value": "and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11808, - "end": 11985, - "loc": { - "start": { - "line": 134, - "column": 6 - }, - "end": { - "line": 134, - "column": 183 - } - }, - "id": { - "type": "Identifier", - "start": 11808, - "end": 11809, - "loc": { - "start": { - "line": 134, - "column": 6 - }, - "end": { - "line": 134, - "column": 7 - }, - "identifierName": "J" - }, - "name": "J" - }, - "init": { - "type": "ArrayExpression", - "start": 11812, - "end": 11985, - "loc": { - "start": { - "line": 134, - "column": 10 - }, - "end": { - "line": 134, - "column": 183 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11813, - "end": 11814, - "loc": { - "start": { - "line": 134, - "column": 11 - }, - "end": { - "line": 134, - "column": 12 - }, - "identifierName": "v" - }, - "name": "v" - }, - { - "type": "StringLiteral", - "start": 11816, - "end": 11984, - "loc": { - "start": { - "line": 134, - "column": 14 - }, - "end": { - "line": 134, - "column": 182 - } - }, - "extra": { - "rawValue": "alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END", - "raw": "\"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END\"" - }, - "value": "alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 11993, - "end": 12064, - "loc": { - "start": { - "line": 135, - "column": 6 - }, - "end": { - "line": 135, - "column": 77 - } - }, - "id": { - "type": "Identifier", - "start": 11993, - "end": 11994, - "loc": { - "start": { - "line": 135, - "column": 6 - }, - "end": { - "line": 135, - "column": 7 - }, - "identifierName": "v" - }, - "name": "v" - }, - "init": { - "type": "ArrayExpression", - "start": 11997, - "end": 12064, - "loc": { - "start": { - "line": 135, - "column": 10 - }, - "end": { - "line": 135, - "column": 77 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 11998, - "end": 11999, - "loc": { - "start": { - "line": 135, - "column": 11 - }, - "end": { - "line": 135, - "column": 12 - }, - "identifierName": "v" - }, - "name": "v" - }, - { - "type": "StringLiteral", - "start": 12001, - "end": 12063, - "loc": { - "start": { - "line": 135, - "column": 14 - }, - "end": { - "line": 135, - "column": 76 - } - }, - "extra": { - "rawValue": "case,done,elif,esac,eval,fi,function,in,local,set,then,until", - "raw": "\"case,done,elif,esac,eval,fi,function,in,local,set,then,until\"" - }, - "value": "case,done,elif,esac,eval,fi,function,in,local,set,then,until" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 12072, - "end": 12188, - "loc": { - "start": { - "line": 136, - "column": 6 - }, - "end": { - "line": 136, - "column": 122 - } - }, - "id": { - "type": "Identifier", - "start": 12072, - "end": 12073, - "loc": { - "start": { - "line": 136, - "column": 6 - }, - "end": { - "line": 136, - "column": 7 - }, - "identifierName": "K" - }, - "name": "K" - }, - "init": { - "type": "RegExpLiteral", - "start": 12076, - "end": 12188, - "loc": { - "start": { - "line": 136, - "column": 10 - }, - "end": { - "line": 136, - "column": 122 - } - }, - "extra": { - "raw": "/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\\d*)/" - }, - "pattern": "^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\\d*)", - "flags": "" - } - }, - { - "type": "VariableDeclarator", - "start": 12196, - "end": 12204, - "loc": { - "start": { - "line": 137, - "column": 6 - }, - "end": { - "line": 137, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 12196, - "end": 12197, - "loc": { - "start": { - "line": 137, - "column": 6 - }, - "end": { - "line": 137, - "column": 7 - }, - "identifierName": "N" - }, - "name": "N" - }, - "init": { - "type": "RegExpLiteral", - "start": 12200, - "end": 12204, - "loc": { - "start": { - "line": 137, - "column": 10 - }, - "end": { - "line": 137, - "column": 14 - } - }, - "extra": { - "raw": "/\\S/" - }, - "pattern": "\\S", - "flags": "" - } - }, - { - "type": "VariableDeclarator", - "start": 12212, - "end": 12509, - "loc": { - "start": { - "line": 138, - "column": 6 - }, - "end": { - "line": 138, - "column": 303 - } - }, - "id": { - "type": "Identifier", - "start": 12212, - "end": 12213, - "loc": { - "start": { - "line": 138, - "column": 6 - }, - "end": { - "line": 138, - "column": 7 - }, - "identifierName": "O" - }, - "name": "O" - }, - "init": { - "type": "CallExpression", - "start": 12216, - "end": 12509, - "loc": { - "start": { - "line": 138, - "column": 10 - }, - "end": { - "line": 138, - "column": 303 - } - }, - "callee": { - "type": "Identifier", - "start": 12216, - "end": 12217, - "loc": { - "start": { - "line": 138, - "column": 10 - }, - "end": { - "line": 138, - "column": 11 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 12218, - "end": 12508, - "loc": { - "start": { - "line": 138, - "column": 12 - }, - "end": { - "line": 138, - "column": 302 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 12220, - "end": 12427, - "loc": { - "start": { - "line": 138, - "column": 14 - }, - "end": { - "line": 138, - "column": 221 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 12220, - "end": 12228, - "loc": { - "start": { - "line": 138, - "column": 14 - }, - "end": { - "line": 138, - "column": 22 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "ArrayExpression", - "start": 12230, - "end": 12427, - "loc": { - "start": { - "line": 138, - "column": 24 - }, - "end": { - "line": 138, - "column": 221 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 12231, - "end": 12232, - "loc": { - "start": { - "line": 138, - "column": 25 - }, - "end": { - "line": 138, - "column": 26 - }, - "identifierName": "F" - }, - "name": "F" - }, - { - "type": "Identifier", - "start": 12234, - "end": 12235, - "loc": { - "start": { - "line": 138, - "column": 28 - }, - "end": { - "line": 138, - "column": 29 - }, - "identifierName": "H" - }, - "name": "H" - }, - { - "type": "Identifier", - "start": 12237, - "end": 12238, - "loc": { - "start": { - "line": 138, - "column": 31 - }, - "end": { - "line": 138, - "column": 32 - }, - "identifierName": "w" - }, - "name": "w" - }, - { - "type": "BinaryExpression", - "start": 12240, - "end": 12420, - "loc": { - "start": { - "line": 138, - "column": 34 - }, - "end": { - "line": 138, - "column": 214 - } - }, - "left": { - "type": "StringLiteral", - "start": 12240, - "end": 12416, - "loc": { - "start": { - "line": 138, - "column": 34 - }, - "end": { - "line": 138, - "column": 210 - } - }, - "extra": { - "rawValue": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END", - "raw": "\"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END\"" - }, - "value": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END" - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 12419, - "end": 12420, - "loc": { - "start": { - "line": 138, - "column": 213 - }, - "end": { - "line": 138, - "column": 214 - }, - "identifierName": "I" - }, - "name": "I" - } - }, - { - "type": "Identifier", - "start": 12422, - "end": 12423, - "loc": { - "start": { - "line": 138, - "column": 216 - }, - "end": { - "line": 138, - "column": 217 - }, - "identifierName": "J" - }, - "name": "J" - }, - { - "type": "Identifier", - "start": 12425, - "end": 12426, - "loc": { - "start": { - "line": 138, - "column": 219 - }, - "end": { - "line": 138, - "column": 220 - }, - "identifierName": "v" - }, - "name": "v" - } - ] - } - }, - { - "type": "ObjectProperty", - "start": 12429, - "end": 12445, - "loc": { - "start": { - "line": 138, - "column": 223 - }, - "end": { - "line": 138, - "column": 239 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 12429, - "end": 12441, - "loc": { - "start": { - "line": 138, - "column": 223 - }, - "end": { - "line": 138, - "column": 235 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 12443, - "end": 12445, - "loc": { - "start": { - "line": 138, - "column": 237 - }, - "end": { - "line": 138, - "column": 239 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 12444, - "end": 12445, - "loc": { - "start": { - "line": 138, - "column": 238 - }, - "end": { - "line": 138, - "column": 239 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 12447, - "end": 12465, - "loc": { - "start": { - "line": 138, - "column": 241 - }, - "end": { - "line": 138, - "column": 259 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 12447, - "end": 12461, - "loc": { - "start": { - "line": 138, - "column": 241 - }, - "end": { - "line": 138, - "column": 255 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 12463, - "end": 12465, - "loc": { - "start": { - "line": 138, - "column": 257 - }, - "end": { - "line": 138, - "column": 259 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 12464, - "end": 12465, - "loc": { - "start": { - "line": 138, - "column": 258 - }, - "end": { - "line": 138, - "column": 259 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 12467, - "end": 12487, - "loc": { - "start": { - "line": 138, - "column": 261 - }, - "end": { - "line": 138, - "column": 281 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 12467, - "end": 12483, - "loc": { - "start": { - "line": 138, - "column": 261 - }, - "end": { - "line": 138, - "column": 277 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 12485, - "end": 12487, - "loc": { - "start": { - "line": 138, - "column": 279 - }, - "end": { - "line": 138, - "column": 281 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 12486, - "end": 12487, - "loc": { - "start": { - "line": 138, - "column": 280 - }, - "end": { - "line": 138, - "column": 281 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 12489, - "end": 12506, - "loc": { - "start": { - "line": 138, - "column": 283 - }, - "end": { - "line": 138, - "column": 300 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 12489, - "end": 12502, - "loc": { - "start": { - "line": 138, - "column": 283 - }, - "end": { - "line": 138, - "column": 296 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "value": { - "type": "UnaryExpression", - "start": 12504, - "end": 12506, - "loc": { - "start": { - "line": 138, - "column": 298 - }, - "end": { - "line": 138, - "column": 300 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 12505, - "end": 12506, - "loc": { - "start": { - "line": 138, - "column": 299 - }, - "end": { - "line": 138, - "column": 300 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 12517, - "end": 12523, - "loc": { - "start": { - "line": 139, - "column": 6 - }, - "end": { - "line": 139, - "column": 12 - } - }, - "id": { - "type": "Identifier", - "start": 12517, - "end": 12518, - "loc": { - "start": { - "line": 139, - "column": 6 - }, - "end": { - "line": 139, - "column": 7 - }, - "identifierName": "A" - }, - "name": "A" - }, - "init": { - "type": "ObjectExpression", - "start": 12521, - "end": 12523, - "loc": { - "start": { - "line": 139, - "column": 10 - }, - "end": { - "line": 139, - "column": 12 - } - }, - "properties": [] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 12524, - "end": 12547, - "loc": { - "start": { - "line": 139, - "column": 13 - }, - "end": { - "line": 139, - "column": 36 - } - }, - "expression": { - "type": "CallExpression", - "start": 12524, - "end": 12546, - "loc": { - "start": { - "line": 139, - "column": 13 - }, - "end": { - "line": 139, - "column": 35 - } - }, - "callee": { - "type": "Identifier", - "start": 12524, - "end": 12525, - "loc": { - "start": { - "line": 139, - "column": 13 - }, - "end": { - "line": 139, - "column": 14 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "Identifier", - "start": 12526, - "end": 12527, - "loc": { - "start": { - "line": 139, - "column": 15 - }, - "end": { - "line": 139, - "column": 16 - }, - "identifierName": "O" - }, - "name": "O" - }, - { - "type": "ArrayExpression", - "start": 12529, - "end": 12545, - "loc": { - "start": { - "line": 139, - "column": 18 - }, - "end": { - "line": 139, - "column": 34 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12530, - "end": 12544, - "loc": { - "start": { - "line": 139, - "column": 19 - }, - "end": { - "line": 139, - "column": 33 - } - }, - "extra": { - "rawValue": "default-code", - "raw": "\"default-code\"" - }, - "value": "default-code" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 12547, - "end": 13033, - "loc": { - "start": { - "line": 139, - "column": 36 - }, - "end": { - "line": 139, - "column": 522 - } - }, - "expression": { - "type": "CallExpression", - "start": 12547, - "end": 13032, - "loc": { - "start": { - "line": 139, - "column": 36 - }, - "end": { - "line": 139, - "column": 521 - } - }, - "callee": { - "type": "Identifier", - "start": 12547, - "end": 12548, - "loc": { - "start": { - "line": 139, - "column": 36 - }, - "end": { - "line": 139, - "column": 37 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 12549, - "end": 12965, - "loc": { - "start": { - "line": 139, - "column": 38 - }, - "end": { - "line": 139, - "column": 454 - } - }, - "callee": { - "type": "Identifier", - "start": 12549, - "end": 12550, - "loc": { - "start": { - "line": 139, - "column": 38 - }, - "end": { - "line": 139, - "column": 39 - }, - "identifierName": "x" - }, - "name": "x" - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 12551, - "end": 12553, - "loc": { - "start": { - "line": 139, - "column": 40 - }, - "end": { - "line": 139, - "column": 42 - } - }, - "elements": [] - }, - { - "type": "ArrayExpression", - "start": 12555, - "end": 12964, - "loc": { - "start": { - "line": 139, - "column": 44 - }, - "end": { - "line": 139, - "column": 453 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 12556, - "end": 12574, - "loc": { - "start": { - "line": 139, - "column": 45 - }, - "end": { - "line": 139, - "column": 63 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12557, - "end": 12562, - "loc": { - "start": { - "line": 139, - "column": 46 - }, - "end": { - "line": 139, - "column": 51 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - { - "type": "RegExpLiteral", - "start": 12564, - "end": 12573, - "loc": { - "start": { - "line": 139, - "column": 53 - }, - "end": { - "line": 139, - "column": 62 - } - }, - "extra": { - "raw": "/^[^]*(?:>|$)/" - }, - "pattern": "^]*(?:>|$)", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12606, - "end": 12641, - "loc": { - "start": { - "line": 139, - "column": 95 - }, - "end": { - "line": 139, - "column": 130 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12607, - "end": 12612, - "loc": { - "start": { - "line": 139, - "column": 96 - }, - "end": { - "line": 139, - "column": 101 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - }, - { - "type": "RegExpLiteral", - "start": 12614, - "end": 12640, - "loc": { - "start": { - "line": 139, - "column": 103 - }, - "end": { - "line": 139, - "column": 129 - } - }, - "extra": { - "raw": "/^<\\!--[\\S\\s]*?(?:--\\>|$)/" - }, - "pattern": "^<\\!--[\\S\\s]*?(?:--\\>|$)", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12643, - "end": 12679, - "loc": { - "start": { - "line": 139, - "column": 132 - }, - "end": { - "line": 139, - "column": 168 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12644, - "end": 12651, - "loc": { - "start": { - "line": 139, - "column": 133 - }, - "end": { - "line": 139, - "column": 140 - } - }, - "extra": { - "rawValue": "lang-", - "raw": "\"lang-\"" - }, - "value": "lang-" - }, - { - "type": "RegExpLiteral", - "start": 12653, - "end": 12678, - "loc": { - "start": { - "line": 139, - "column": 142 - }, - "end": { - "line": 139, - "column": 167 - } - }, - "extra": { - "raw": "/^<\\?([\\S\\s]+?)(?:\\?>|$)/" - }, - "pattern": "^<\\?([\\S\\s]+?)(?:\\?>|$)", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12681, - "end": 12715, - "loc": { - "start": { - "line": 139, - "column": 170 - }, - "end": { - "line": 139, - "column": 204 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12682, - "end": 12689, - "loc": { - "start": { - "line": 139, - "column": 171 - }, - "end": { - "line": 139, - "column": 178 - } - }, - "extra": { - "rawValue": "lang-", - "raw": "\"lang-\"" - }, - "value": "lang-" - }, - { - "type": "RegExpLiteral", - "start": 12691, - "end": 12714, - "loc": { - "start": { - "line": 139, - "column": 180 - }, - "end": { - "line": 139, - "column": 203 - } - }, - "extra": { - "raw": "/^<%([\\S\\s]+?)(?:%>|$)/" - }, - "pattern": "^<%([\\S\\s]+?)(?:%>|$)", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12717, - "end": 12744, - "loc": { - "start": { - "line": 139, - "column": 206 - }, - "end": { - "line": 139, - "column": 233 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12718, - "end": 12723, - "loc": { - "start": { - "line": 139, - "column": 207 - }, - "end": { - "line": 139, - "column": 212 - } - }, - "extra": { - "rawValue": "pun", - "raw": "\"pun\"" - }, - "value": "pun" - }, - { - "type": "RegExpLiteral", - "start": 12725, - "end": 12743, - "loc": { - "start": { - "line": 139, - "column": 214 - }, - "end": { - "line": 139, - "column": 232 - } - }, - "extra": { - "raw": "/^(?:<[%?]|[%?]>)/" - }, - "pattern": "^(?:<[%?]|[%?]>)", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12746, - "end": 12797, - "loc": { - "start": { - "line": 139, - "column": 235 - }, - "end": { - "line": 139, - "column": 286 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12747, - "end": 12754, - "loc": { - "start": { - "line": 139, - "column": 236 - }, - "end": { - "line": 139, - "column": 243 - } - }, - "extra": { - "rawValue": "lang-", - "raw": "\"lang-\"" - }, - "value": "lang-" - }, - { - "type": "RegExpLiteral", - "start": 12756, - "end": 12796, - "loc": { - "start": { - "line": 139, - "column": 245 - }, - "end": { - "line": 139, - "column": 285 - } - }, - "extra": { - "raw": "/^]*>([\\S\\s]+?)<\\/xmp\\b[^>]*>/i" - }, - "pattern": "^]*>([\\S\\s]+?)<\\/xmp\\b[^>]*>", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12799, - "end": 12860, - "loc": { - "start": { - "line": 139, - "column": 288 - }, - "end": { - "line": 139, - "column": 349 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12800, - "end": 12809, - "loc": { - "start": { - "line": 139, - "column": 289 - }, - "end": { - "line": 139, - "column": 298 - } - }, - "extra": { - "rawValue": "lang-js", - "raw": "\"lang-js\"" - }, - "value": "lang-js" - }, - { - "type": "RegExpLiteral", - "start": 12811, - "end": 12859, - "loc": { - "start": { - "line": 139, - "column": 300 - }, - "end": { - "line": 139, - "column": 348 - } - }, - "extra": { - "raw": "/^]*>([\\S\\s]*?)(<\\/script\\b[^>]*>)/i" - }, - "pattern": "^]*>([\\S\\s]*?)(<\\/script\\b[^>]*>)", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12862, - "end": 12922, - "loc": { - "start": { - "line": 139, - "column": 351 - }, - "end": { - "line": 139, - "column": 411 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12863, - "end": 12873, - "loc": { - "start": { - "line": 139, - "column": 352 - }, - "end": { - "line": 139, - "column": 362 - } - }, - "extra": { - "rawValue": "lang-css", - "raw": "\"lang-css\"" - }, - "value": "lang-css" - }, - { - "type": "RegExpLiteral", - "start": 12875, - "end": 12921, - "loc": { - "start": { - "line": 139, - "column": 364 - }, - "end": { - "line": 139, - "column": 410 - } - }, - "extra": { - "raw": "/^]*>([\\S\\s]*?)(<\\/style\\b[^>]*>)/i" - }, - "pattern": "^]*>([\\S\\s]*?)(<\\/style\\b[^>]*>)", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12924, - "end": 12963, - "loc": { - "start": { - "line": 139, - "column": 413 - }, - "end": { - "line": 139, - "column": 452 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12925, - "end": 12938, - "loc": { - "start": { - "line": 139, - "column": 414 - }, - "end": { - "line": 139, - "column": 427 - } - }, - "extra": { - "rawValue": "lang-in.tag", - "raw": "\"lang-in.tag\"" - }, - "value": "lang-in.tag" - }, - { - "type": "RegExpLiteral", - "start": 12940, - "end": 12962, - "loc": { - "start": { - "line": 139, - "column": 429 - }, - "end": { - "line": 139, - "column": 451 - } - }, - "extra": { - "raw": "/^(<\\/?[a-z][^<>]*>)/i" - }, - "pattern": "^(<\\/?[a-z][^<>]*>)", - "flags": "i" - } - ] - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 12967, - "end": 13031, - "loc": { - "start": { - "line": 139, - "column": 456 - }, - "end": { - "line": 139, - "column": 520 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12968, - "end": 12984, - "loc": { - "start": { - "line": 139, - "column": 457 - }, - "end": { - "line": 139, - "column": 473 - } - }, - "extra": { - "rawValue": "default-markup", - "raw": "\"default-markup\"" - }, - "value": "default-markup" - }, - { - "type": "StringLiteral", - "start": 12986, - "end": 12991, - "loc": { - "start": { - "line": 139, - "column": 475 - }, - "end": { - "line": 139, - "column": 480 - } - }, - "extra": { - "rawValue": "htm", - "raw": "\"htm\"" - }, - "value": "htm" - }, - { - "type": "StringLiteral", - "start": 12993, - "end": 12999, - "loc": { - "start": { - "line": 139, - "column": 482 - }, - "end": { - "line": 139, - "column": 488 - } - }, - "extra": { - "rawValue": "html", - "raw": "\"html\"" - }, - "value": "html" - }, - { - "type": "StringLiteral", - "start": 13001, - "end": 13007, - "loc": { - "start": { - "line": 139, - "column": 490 - }, - "end": { - "line": 139, - "column": 496 - } - }, - "extra": { - "rawValue": "mxml", - "raw": "\"mxml\"" - }, - "value": "mxml" - }, - { - "type": "StringLiteral", - "start": 13009, - "end": 13016, - "loc": { - "start": { - "line": 139, - "column": 498 - }, - "end": { - "line": 139, - "column": 505 - } - }, - "extra": { - "rawValue": "xhtml", - "raw": "\"xhtml\"" - }, - "value": "xhtml" - }, - { - "type": "StringLiteral", - "start": 13018, - "end": 13023, - "loc": { - "start": { - "line": 139, - "column": 507 - }, - "end": { - "line": 139, - "column": 512 - } - }, - "extra": { - "rawValue": "xml", - "raw": "\"xml\"" - }, - "value": "xml" - }, - { - "type": "StringLiteral", - "start": 13025, - "end": 13030, - "loc": { - "start": { - "line": 139, - "column": 514 - }, - "end": { - "line": 139, - "column": 519 - } - }, - "extra": { - "rawValue": "xsl", - "raw": "\"xsl\"" - }, - "value": "xsl" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13033, - "end": 13554, - "loc": { - "start": { - "line": 139, - "column": 522 - }, - "end": { - "line": 139, - "column": 1043 - } - }, - "expression": { - "type": "CallExpression", - "start": 13033, - "end": 13553, - "loc": { - "start": { - "line": 139, - "column": 522 - }, - "end": { - "line": 139, - "column": 1042 - } - }, - "callee": { - "type": "Identifier", - "start": 13033, - "end": 13034, - "loc": { - "start": { - "line": 139, - "column": 522 - }, - "end": { - "line": 139, - "column": 523 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13035, - "end": 13540, - "loc": { - "start": { - "line": 139, - "column": 524 - }, - "end": { - "line": 139, - "column": 1029 - } - }, - "callee": { - "type": "Identifier", - "start": 13035, - "end": 13036, - "loc": { - "start": { - "line": 139, - "column": 524 - }, - "end": { - "line": 139, - "column": 525 - }, - "identifierName": "x" - }, - "name": "x" - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 13037, - "end": 13113, - "loc": { - "start": { - "line": 139, - "column": 526 - }, - "end": { - "line": 139, - "column": 602 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 13038, - "end": 13067, - "loc": { - "start": { - "line": 139, - "column": 527 - }, - "end": { - "line": 139, - "column": 556 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13039, - "end": 13044, - "loc": { - "start": { - "line": 139, - "column": 528 - }, - "end": { - "line": 139, - "column": 533 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - }, - { - "type": "RegExpLiteral", - "start": 13046, - "end": 13052, - "loc": { - "start": { - "line": 139, - "column": 535 - }, - "end": { - "line": 139, - "column": 541 - } - }, - "extra": { - "raw": "/^\\s+/" - }, - "pattern": "^\\s+", - "flags": "" - }, - { - "type": "Identifier", - "start": 13054, - "end": 13055, - "loc": { - "start": { - "line": 139, - "column": 543 - }, - "end": { - "line": 139, - "column": 544 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 13057, - "end": 13066, - "loc": { - "start": { - "line": 139, - "column": 546 - }, - "end": { - "line": 139, - "column": 555 - } - }, - "extra": { - "rawValue": " \t\r\n", - "raw": "\" \\t\\r\\n\"" - }, - "value": " \t\r\n" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13069, - "end": 13112, - "loc": { - "start": { - "line": 139, - "column": 558 - }, - "end": { - "line": 139, - "column": 601 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13070, - "end": 13075, - "loc": { - "start": { - "line": 139, - "column": 559 - }, - "end": { - "line": 139, - "column": 564 - } - }, - "extra": { - "rawValue": "atv", - "raw": "\"atv\"" - }, - "value": "atv" - }, - { - "type": "RegExpLiteral", - "start": 13077, - "end": 13101, - "loc": { - "start": { - "line": 139, - "column": 566 - }, - "end": { - "line": 139, - "column": 590 - } - }, - "extra": { - "raw": "/^(?:\"[^\"]*\"?|'[^']*'?)/" - }, - "pattern": "^(?:\"[^\"]*\"?|'[^']*'?)", - "flags": "" - }, - { - "type": "Identifier", - "start": 13103, - "end": 13104, - "loc": { - "start": { - "line": 139, - "column": 592 - }, - "end": { - "line": 139, - "column": 593 - }, - "identifierName": "q" - }, - "name": "q" - }, - { - "type": "StringLiteral", - "start": 13106, - "end": 13111, - "loc": { - "start": { - "line": 139, - "column": 595 - }, - "end": { - "line": 139, - "column": 600 - } - }, - "extra": { - "rawValue": "\"'", - "raw": "\"\\\"'\"" - }, - "value": "\"'" - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13115, - "end": 13539, - "loc": { - "start": { - "line": 139, - "column": 604 - }, - "end": { - "line": 139, - "column": 1028 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 13116, - "end": 13160, - "loc": { - "start": { - "line": 139, - "column": 605 - }, - "end": { - "line": 139, - "column": 649 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13117, - "end": 13122, - "loc": { - "start": { - "line": 139, - "column": 606 - }, - "end": { - "line": 139, - "column": 611 - } - }, - "extra": { - "rawValue": "tag", - "raw": "\"tag\"" - }, - "value": "tag" - }, - { - "type": "RegExpLiteral", - "start": 13124, - "end": 13159, - "loc": { - "start": { - "line": 139, - "column": 613 - }, - "end": { - "line": 139, - "column": 648 - } - }, - "extra": { - "raw": "/^^<\\/?[a-z](?:[\\w-.:]*\\w)?|\\/?>$/i" - }, - "pattern": "^^<\\/?[a-z](?:[\\w-.:]*\\w)?|\\/?>$", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13162, - "end": 13211, - "loc": { - "start": { - "line": 139, - "column": 651 - }, - "end": { - "line": 139, - "column": 700 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13163, - "end": 13168, - "loc": { - "start": { - "line": 139, - "column": 652 - }, - "end": { - "line": 139, - "column": 657 - } - }, - "extra": { - "rawValue": "atn", - "raw": "\"atn\"" - }, - "value": "atn" - }, - { - "type": "RegExpLiteral", - "start": 13170, - "end": 13210, - "loc": { - "start": { - "line": 139, - "column": 659 - }, - "end": { - "line": 139, - "column": 699 - } - }, - "extra": { - "raw": "/^(?!style[\\s=]|on)[a-z](?:[\\w:-]*\\w)?/i" - }, - "pattern": "^(?!style[\\s=]|on)[a-z](?:[\\w:-]*\\w)?", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13213, - "end": 13270, - "loc": { - "start": { - "line": 139, - "column": 702 - }, - "end": { - "line": 139, - "column": 759 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13214, - "end": 13227, - "loc": { - "start": { - "line": 139, - "column": 703 - }, - "end": { - "line": 139, - "column": 716 - } - }, - "extra": { - "rawValue": "lang-uq.val", - "raw": "\"lang-uq.val\"" - }, - "value": "lang-uq.val" - }, - { - "type": "RegExpLiteral", - "start": 13229, - "end": 13269, - "loc": { - "start": { - "line": 139, - "column": 718 - }, - "end": { - "line": 139, - "column": 758 - } - }, - "extra": { - "raw": "/^=\\s*([^\\s\"'>]*(?:[^\\s\"'/>]|\\/(?=\\s)))/" - }, - "pattern": "^=\\s*([^\\s\"'>]*(?:[^\\s\"'/>]|\\/(?=\\s)))", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13272, - "end": 13291, - "loc": { - "start": { - "line": 139, - "column": 761 - }, - "end": { - "line": 139, - "column": 780 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13273, - "end": 13278, - "loc": { - "start": { - "line": 139, - "column": 762 - }, - "end": { - "line": 139, - "column": 767 - } - }, - "extra": { - "rawValue": "pun", - "raw": "\"pun\"" - }, - "value": "pun" - }, - { - "type": "RegExpLiteral", - "start": 13280, - "end": 13290, - "loc": { - "start": { - "line": 139, - "column": 769 - }, - "end": { - "line": 139, - "column": 779 - } - }, - "extra": { - "raw": "/^[/<->]+/" - }, - "pattern": "^[/<->]+", - "flags": "" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13293, - "end": 13331, - "loc": { - "start": { - "line": 139, - "column": 782 - }, - "end": { - "line": 139, - "column": 820 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13294, - "end": 13303, - "loc": { - "start": { - "line": 139, - "column": 783 - }, - "end": { - "line": 139, - "column": 792 - } - }, - "extra": { - "rawValue": "lang-js", - "raw": "\"lang-js\"" - }, - "value": "lang-js" - }, - { - "type": "RegExpLiteral", - "start": 13305, - "end": 13330, - "loc": { - "start": { - "line": 139, - "column": 794 - }, - "end": { - "line": 139, - "column": 819 - } - }, - "extra": { - "raw": "/^on\\w+\\s*=\\s*\"([^\"]+)\"/i" - }, - "pattern": "^on\\w+\\s*=\\s*\"([^\"]+)\"", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13333, - "end": 13371, - "loc": { - "start": { - "line": 139, - "column": 822 - }, - "end": { - "line": 139, - "column": 860 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13334, - "end": 13343, - "loc": { - "start": { - "line": 139, - "column": 823 - }, - "end": { - "line": 139, - "column": 832 - } - }, - "extra": { - "rawValue": "lang-js", - "raw": "\"lang-js\"" - }, - "value": "lang-js" - }, - { - "type": "RegExpLiteral", - "start": 13345, - "end": 13370, - "loc": { - "start": { - "line": 139, - "column": 834 - }, - "end": { - "line": 139, - "column": 859 - } - }, - "extra": { - "raw": "/^on\\w+\\s*=\\s*'([^']+)'/i" - }, - "pattern": "^on\\w+\\s*=\\s*'([^']+)'", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13373, - "end": 13413, - "loc": { - "start": { - "line": 139, - "column": 862 - }, - "end": { - "line": 139, - "column": 902 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13374, - "end": 13383, - "loc": { - "start": { - "line": 139, - "column": 863 - }, - "end": { - "line": 139, - "column": 872 - } - }, - "extra": { - "rawValue": "lang-js", - "raw": "\"lang-js\"" - }, - "value": "lang-js" - }, - { - "type": "RegExpLiteral", - "start": 13385, - "end": 13412, - "loc": { - "start": { - "line": 139, - "column": 874 - }, - "end": { - "line": 139, - "column": 901 - } - }, - "extra": { - "raw": "/^on\\w+\\s*=\\s*([^\\s\"'>]+)/i" - }, - "pattern": "^on\\w+\\s*=\\s*([^\\s\"'>]+)", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13415, - "end": 13454, - "loc": { - "start": { - "line": 139, - "column": 904 - }, - "end": { - "line": 139, - "column": 943 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13416, - "end": 13426, - "loc": { - "start": { - "line": 139, - "column": 905 - }, - "end": { - "line": 139, - "column": 915 - } - }, - "extra": { - "rawValue": "lang-css", - "raw": "\"lang-css\"" - }, - "value": "lang-css" - }, - { - "type": "RegExpLiteral", - "start": 13428, - "end": 13453, - "loc": { - "start": { - "line": 139, - "column": 917 - }, - "end": { - "line": 139, - "column": 942 - } - }, - "extra": { - "raw": "/^style\\s*=\\s*\"([^\"]+)\"/i" - }, - "pattern": "^style\\s*=\\s*\"([^\"]+)\"", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13456, - "end": 13495, - "loc": { - "start": { - "line": 139, - "column": 945 - }, - "end": { - "line": 139, - "column": 984 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13457, - "end": 13467, - "loc": { - "start": { - "line": 139, - "column": 946 - }, - "end": { - "line": 139, - "column": 956 - } - }, - "extra": { - "rawValue": "lang-css", - "raw": "\"lang-css\"" - }, - "value": "lang-css" - }, - { - "type": "RegExpLiteral", - "start": 13469, - "end": 13494, - "loc": { - "start": { - "line": 139, - "column": 958 - }, - "end": { - "line": 139, - "column": 983 - } - }, - "extra": { - "raw": "/^style\\s*=\\s*'([^']+)'/i" - }, - "pattern": "^style\\s*=\\s*'([^']+)'", - "flags": "i" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13497, - "end": 13538, - "loc": { - "start": { - "line": 139, - "column": 986 - }, - "end": { - "line": 139, - "column": 1027 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13498, - "end": 13508, - "loc": { - "start": { - "line": 139, - "column": 987 - }, - "end": { - "line": 139, - "column": 997 - } - }, - "extra": { - "rawValue": "lang-css", - "raw": "\"lang-css\"" - }, - "value": "lang-css" - }, - { - "type": "RegExpLiteral", - "start": 13510, - "end": 13537, - "loc": { - "start": { - "line": 139, - "column": 999 - }, - "end": { - "line": 139, - "column": 1026 - } - }, - "extra": { - "raw": "/^style\\s*=\\s*([^\\s\"'>]+)/i" - }, - "pattern": "^style\\s*=\\s*([^\\s\"'>]+)", - "flags": "i" - } - ] - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13542, - "end": 13552, - "loc": { - "start": { - "line": 139, - "column": 1031 - }, - "end": { - "line": 139, - "column": 1041 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13543, - "end": 13551, - "loc": { - "start": { - "line": 139, - "column": 1032 - }, - "end": { - "line": 139, - "column": 1040 - } - }, - "extra": { - "rawValue": "in.tag", - "raw": "\"in.tag\"" - }, - "value": "in.tag" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13554, - "end": 13598, - "loc": { - "start": { - "line": 139, - "column": 1043 - }, - "end": { - "line": 139, - "column": 1087 - } - }, - "expression": { - "type": "CallExpression", - "start": 13554, - "end": 13597, - "loc": { - "start": { - "line": 139, - "column": 1043 - }, - "end": { - "line": 139, - "column": 1086 - } - }, - "callee": { - "type": "Identifier", - "start": 13554, - "end": 13555, - "loc": { - "start": { - "line": 139, - "column": 1043 - }, - "end": { - "line": 139, - "column": 1044 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13556, - "end": 13584, - "loc": { - "start": { - "line": 139, - "column": 1045 - }, - "end": { - "line": 139, - "column": 1073 - } - }, - "callee": { - "type": "Identifier", - "start": 13556, - "end": 13557, - "loc": { - "start": { - "line": 139, - "column": 1045 - }, - "end": { - "line": 139, - "column": 1046 - }, - "identifierName": "x" - }, - "name": "x" - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 13558, - "end": 13560, - "loc": { - "start": { - "line": 139, - "column": 1047 - }, - "end": { - "line": 139, - "column": 1049 - } - }, - "elements": [] - }, - { - "type": "ArrayExpression", - "start": 13562, - "end": 13583, - "loc": { - "start": { - "line": 139, - "column": 1051 - }, - "end": { - "line": 139, - "column": 1072 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 13563, - "end": 13582, - "loc": { - "start": { - "line": 139, - "column": 1052 - }, - "end": { - "line": 139, - "column": 1071 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13564, - "end": 13569, - "loc": { - "start": { - "line": 139, - "column": 1053 - }, - "end": { - "line": 139, - "column": 1058 - } - }, - "extra": { - "rawValue": "atv", - "raw": "\"atv\"" - }, - "value": "atv" - }, - { - "type": "RegExpLiteral", - "start": 13571, - "end": 13581, - "loc": { - "start": { - "line": 139, - "column": 1060 - }, - "end": { - "line": 139, - "column": 1070 - } - }, - "extra": { - "raw": "/^[\\S\\s]+/" - }, - "pattern": "^[\\S\\s]+", - "flags": "" - } - ] - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13586, - "end": 13596, - "loc": { - "start": { - "line": 139, - "column": 1075 - }, - "end": { - "line": 139, - "column": 1085 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13587, - "end": 13595, - "loc": { - "start": { - "line": 139, - "column": 1076 - }, - "end": { - "line": 139, - "column": 1084 - } - }, - "extra": { - "rawValue": "uq.val", - "raw": "\"uq.val\"" - }, - "value": "uq.val" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13598, - "end": 13707, - "loc": { - "start": { - "line": 139, - "column": 1087 - }, - "end": { - "line": 139, - "column": 1196 - } - }, - "expression": { - "type": "CallExpression", - "start": 13598, - "end": 13706, - "loc": { - "start": { - "line": 139, - "column": 1087 - }, - "end": { - "line": 139, - "column": 1195 - } - }, - "callee": { - "type": "Identifier", - "start": 13598, - "end": 13599, - "loc": { - "start": { - "line": 139, - "column": 1087 - }, - "end": { - "line": 139, - "column": 1088 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13600, - "end": 13666, - "loc": { - "start": { - "line": 139, - "column": 1089 - }, - "end": { - "line": 139, - "column": 1155 - } - }, - "callee": { - "type": "Identifier", - "start": 13600, - "end": 13601, - "loc": { - "start": { - "line": 139, - "column": 1089 - }, - "end": { - "line": 139, - "column": 1090 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13602, - "end": 13665, - "loc": { - "start": { - "line": 139, - "column": 1091 - }, - "end": { - "line": 139, - "column": 1154 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13604, - "end": 13615, - "loc": { - "start": { - "line": 139, - "column": 1093 - }, - "end": { - "line": 139, - "column": 1104 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13604, - "end": 13612, - "loc": { - "start": { - "line": 139, - "column": 1093 - }, - "end": { - "line": 139, - "column": 1101 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 13614, - "end": 13615, - "loc": { - "start": { - "line": 139, - "column": 1103 - }, - "end": { - "line": 139, - "column": 1104 - }, - "identifierName": "F" - }, - "name": "F" - } - }, - { - "type": "ObjectProperty", - "start": 13617, - "end": 13633, - "loc": { - "start": { - "line": 139, - "column": 1106 - }, - "end": { - "line": 139, - "column": 1122 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13617, - "end": 13629, - "loc": { - "start": { - "line": 139, - "column": 1106 - }, - "end": { - "line": 139, - "column": 1118 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13631, - "end": 13633, - "loc": { - "start": { - "line": 139, - "column": 1120 - }, - "end": { - "line": 139, - "column": 1122 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13632, - "end": 13633, - "loc": { - "start": { - "line": 139, - "column": 1121 - }, - "end": { - "line": 139, - "column": 1122 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13635, - "end": 13653, - "loc": { - "start": { - "line": 139, - "column": 1124 - }, - "end": { - "line": 139, - "column": 1142 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13635, - "end": 13649, - "loc": { - "start": { - "line": 139, - "column": 1124 - }, - "end": { - "line": 139, - "column": 1138 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13651, - "end": 13653, - "loc": { - "start": { - "line": 139, - "column": 1140 - }, - "end": { - "line": 139, - "column": 1142 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13652, - "end": 13653, - "loc": { - "start": { - "line": 139, - "column": 1141 - }, - "end": { - "line": 139, - "column": 1142 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13655, - "end": 13663, - "loc": { - "start": { - "line": 139, - "column": 1144 - }, - "end": { - "line": 139, - "column": 1152 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13655, - "end": 13660, - "loc": { - "start": { - "line": 139, - "column": 1144 - }, - "end": { - "line": 139, - "column": 1149 - }, - "identifierName": "types" - }, - "name": "types" - }, - "value": { - "type": "Identifier", - "start": 13662, - "end": 13663, - "loc": { - "start": { - "line": 139, - "column": 1151 - }, - "end": { - "line": 139, - "column": 1152 - }, - "identifierName": "K" - }, - "name": "K" - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13668, - "end": 13705, - "loc": { - "start": { - "line": 139, - "column": 1157 - }, - "end": { - "line": 139, - "column": 1194 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13669, - "end": 13672, - "loc": { - "start": { - "line": 139, - "column": 1158 - }, - "end": { - "line": 139, - "column": 1161 - } - }, - "extra": { - "rawValue": "c", - "raw": "\"c\"" - }, - "value": "c" - }, - { - "type": "StringLiteral", - "start": 13674, - "end": 13678, - "loc": { - "start": { - "line": 139, - "column": 1163 - }, - "end": { - "line": 139, - "column": 1167 - } - }, - "extra": { - "rawValue": "cc", - "raw": "\"cc\"" - }, - "value": "cc" - }, - { - "type": "StringLiteral", - "start": 13680, - "end": 13685, - "loc": { - "start": { - "line": 139, - "column": 1169 - }, - "end": { - "line": 139, - "column": 1174 - } - }, - "extra": { - "rawValue": "cpp", - "raw": "\"cpp\"" - }, - "value": "cpp" - }, - { - "type": "StringLiteral", - "start": 13687, - "end": 13692, - "loc": { - "start": { - "line": 139, - "column": 1176 - }, - "end": { - "line": 139, - "column": 1181 - } - }, - "extra": { - "rawValue": "cxx", - "raw": "\"cxx\"" - }, - "value": "cxx" - }, - { - "type": "StringLiteral", - "start": 13694, - "end": 13699, - "loc": { - "start": { - "line": 139, - "column": 1183 - }, - "end": { - "line": 139, - "column": 1188 - } - }, - "extra": { - "rawValue": "cyc", - "raw": "\"cyc\"" - }, - "value": "cyc" - }, - { - "type": "StringLiteral", - "start": 13701, - "end": 13704, - "loc": { - "start": { - "line": 139, - "column": 1190 - }, - "end": { - "line": 139, - "column": 1193 - } - }, - "extra": { - "rawValue": "m", - "raw": "\"m\"" - }, - "value": "m" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13707, - "end": 13755, - "loc": { - "start": { - "line": 139, - "column": 1196 - }, - "end": { - "line": 139, - "column": 1244 - } - }, - "expression": { - "type": "CallExpression", - "start": 13707, - "end": 13754, - "loc": { - "start": { - "line": 139, - "column": 1196 - }, - "end": { - "line": 139, - "column": 1243 - } - }, - "callee": { - "type": "Identifier", - "start": 13707, - "end": 13708, - "loc": { - "start": { - "line": 139, - "column": 1196 - }, - "end": { - "line": 139, - "column": 1197 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13709, - "end": 13743, - "loc": { - "start": { - "line": 139, - "column": 1198 - }, - "end": { - "line": 139, - "column": 1232 - } - }, - "callee": { - "type": "Identifier", - "start": 13709, - "end": 13710, - "loc": { - "start": { - "line": 139, - "column": 1198 - }, - "end": { - "line": 139, - "column": 1199 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13711, - "end": 13742, - "loc": { - "start": { - "line": 139, - "column": 1200 - }, - "end": { - "line": 139, - "column": 1231 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13713, - "end": 13740, - "loc": { - "start": { - "line": 139, - "column": 1202 - }, - "end": { - "line": 139, - "column": 1229 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13713, - "end": 13721, - "loc": { - "start": { - "line": 139, - "column": 1202 - }, - "end": { - "line": 139, - "column": 1210 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "StringLiteral", - "start": 13723, - "end": 13740, - "loc": { - "start": { - "line": 139, - "column": 1212 - }, - "end": { - "line": 139, - "column": 1229 - } - }, - "extra": { - "rawValue": "null,true,false", - "raw": "\"null,true,false\"" - }, - "value": "null,true,false" - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13745, - "end": 13753, - "loc": { - "start": { - "line": 139, - "column": 1234 - }, - "end": { - "line": 139, - "column": 1242 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13746, - "end": 13752, - "loc": { - "start": { - "line": 139, - "column": 1235 - }, - "end": { - "line": 139, - "column": 1241 - } - }, - "extra": { - "rawValue": "json", - "raw": "\"json\"" - }, - "value": "json" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13755, - "end": 13854, - "loc": { - "start": { - "line": 139, - "column": 1244 - }, - "end": { - "line": 139, - "column": 1343 - } - }, - "expression": { - "type": "CallExpression", - "start": 13755, - "end": 13853, - "loc": { - "start": { - "line": 139, - "column": 1244 - }, - "end": { - "line": 139, - "column": 1342 - } - }, - "callee": { - "type": "Identifier", - "start": 13755, - "end": 13756, - "loc": { - "start": { - "line": 139, - "column": 1244 - }, - "end": { - "line": 139, - "column": 1245 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13757, - "end": 13844, - "loc": { - "start": { - "line": 139, - "column": 1246 - }, - "end": { - "line": 139, - "column": 1333 - } - }, - "callee": { - "type": "Identifier", - "start": 13757, - "end": 13758, - "loc": { - "start": { - "line": 139, - "column": 1246 - }, - "end": { - "line": 139, - "column": 1247 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13759, - "end": 13843, - "loc": { - "start": { - "line": 139, - "column": 1248 - }, - "end": { - "line": 139, - "column": 1332 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13761, - "end": 13772, - "loc": { - "start": { - "line": 139, - "column": 1250 - }, - "end": { - "line": 139, - "column": 1261 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13761, - "end": 13769, - "loc": { - "start": { - "line": 139, - "column": 1250 - }, - "end": { - "line": 139, - "column": 1258 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 13771, - "end": 13772, - "loc": { - "start": { - "line": 139, - "column": 1260 - }, - "end": { - "line": 139, - "column": 1261 - }, - "identifierName": "H" - }, - "name": "H" - } - }, - { - "type": "ObjectProperty", - "start": 13774, - "end": 13790, - "loc": { - "start": { - "line": 139, - "column": 1263 - }, - "end": { - "line": 139, - "column": 1279 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13774, - "end": 13786, - "loc": { - "start": { - "line": 139, - "column": 1263 - }, - "end": { - "line": 139, - "column": 1275 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13788, - "end": 13790, - "loc": { - "start": { - "line": 139, - "column": 1277 - }, - "end": { - "line": 139, - "column": 1279 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13789, - "end": 13790, - "loc": { - "start": { - "line": 139, - "column": 1278 - }, - "end": { - "line": 139, - "column": 1279 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13792, - "end": 13810, - "loc": { - "start": { - "line": 139, - "column": 1281 - }, - "end": { - "line": 139, - "column": 1299 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13792, - "end": 13806, - "loc": { - "start": { - "line": 139, - "column": 1281 - }, - "end": { - "line": 139, - "column": 1295 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13808, - "end": 13810, - "loc": { - "start": { - "line": 139, - "column": 1297 - }, - "end": { - "line": 139, - "column": 1299 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13809, - "end": 13810, - "loc": { - "start": { - "line": 139, - "column": 1298 - }, - "end": { - "line": 139, - "column": 1299 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13812, - "end": 13831, - "loc": { - "start": { - "line": 139, - "column": 1301 - }, - "end": { - "line": 139, - "column": 1320 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13812, - "end": 13827, - "loc": { - "start": { - "line": 139, - "column": 1301 - }, - "end": { - "line": 139, - "column": 1316 - }, - "identifierName": "verbatimStrings" - }, - "name": "verbatimStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 13829, - "end": 13831, - "loc": { - "start": { - "line": 139, - "column": 1318 - }, - "end": { - "line": 139, - "column": 1320 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13830, - "end": 13831, - "loc": { - "start": { - "line": 139, - "column": 1319 - }, - "end": { - "line": 139, - "column": 1320 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13833, - "end": 13841, - "loc": { - "start": { - "line": 139, - "column": 1322 - }, - "end": { - "line": 139, - "column": 1330 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13833, - "end": 13838, - "loc": { - "start": { - "line": 139, - "column": 1322 - }, - "end": { - "line": 139, - "column": 1327 - }, - "identifierName": "types" - }, - "name": "types" - }, - "value": { - "type": "Identifier", - "start": 13840, - "end": 13841, - "loc": { - "start": { - "line": 139, - "column": 1329 - }, - "end": { - "line": 139, - "column": 1330 - }, - "identifierName": "K" - }, - "name": "K" - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13846, - "end": 13852, - "loc": { - "start": { - "line": 139, - "column": 1335 - }, - "end": { - "line": 139, - "column": 1341 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13847, - "end": 13851, - "loc": { - "start": { - "line": 139, - "column": 1336 - }, - "end": { - "line": 139, - "column": 1340 - } - }, - "extra": { - "rawValue": "cs", - "raw": "\"cs\"" - }, - "value": "cs" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13854, - "end": 13906, - "loc": { - "start": { - "line": 139, - "column": 1343 - }, - "end": { - "line": 139, - "column": 1395 - } - }, - "expression": { - "type": "CallExpression", - "start": 13854, - "end": 13905, - "loc": { - "start": { - "line": 139, - "column": 1343 - }, - "end": { - "line": 139, - "column": 1394 - } - }, - "callee": { - "type": "Identifier", - "start": 13854, - "end": 13855, - "loc": { - "start": { - "line": 139, - "column": 1343 - }, - "end": { - "line": 139, - "column": 1344 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13856, - "end": 13894, - "loc": { - "start": { - "line": 139, - "column": 1345 - }, - "end": { - "line": 139, - "column": 1383 - } - }, - "callee": { - "type": "Identifier", - "start": 13856, - "end": 13857, - "loc": { - "start": { - "line": 139, - "column": 1345 - }, - "end": { - "line": 139, - "column": 1346 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13858, - "end": 13893, - "loc": { - "start": { - "line": 139, - "column": 1347 - }, - "end": { - "line": 139, - "column": 1382 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13860, - "end": 13871, - "loc": { - "start": { - "line": 139, - "column": 1349 - }, - "end": { - "line": 139, - "column": 1360 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13860, - "end": 13868, - "loc": { - "start": { - "line": 139, - "column": 1349 - }, - "end": { - "line": 139, - "column": 1357 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 13870, - "end": 13871, - "loc": { - "start": { - "line": 139, - "column": 1359 - }, - "end": { - "line": 139, - "column": 1360 - }, - "identifierName": "G" - }, - "name": "G" - } - }, - { - "type": "ObjectProperty", - "start": 13873, - "end": 13891, - "loc": { - "start": { - "line": 139, - "column": 1362 - }, - "end": { - "line": 139, - "column": 1380 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13873, - "end": 13887, - "loc": { - "start": { - "line": 139, - "column": 1362 - }, - "end": { - "line": 139, - "column": 1376 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13889, - "end": 13891, - "loc": { - "start": { - "line": 139, - "column": 1378 - }, - "end": { - "line": 139, - "column": 1380 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13890, - "end": 13891, - "loc": { - "start": { - "line": 139, - "column": 1379 - }, - "end": { - "line": 139, - "column": 1380 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13896, - "end": 13904, - "loc": { - "start": { - "line": 139, - "column": 1385 - }, - "end": { - "line": 139, - "column": 1393 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13897, - "end": 13903, - "loc": { - "start": { - "line": 139, - "column": 1386 - }, - "end": { - "line": 139, - "column": 1392 - } - }, - "extra": { - "rawValue": "java", - "raw": "\"java\"" - }, - "value": "java" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13906, - "end": 13990, - "loc": { - "start": { - "line": 139, - "column": 1395 - }, - "end": { - "line": 139, - "column": 1479 - } - }, - "expression": { - "type": "CallExpression", - "start": 13906, - "end": 13989, - "loc": { - "start": { - "line": 139, - "column": 1395 - }, - "end": { - "line": 139, - "column": 1478 - } - }, - "callee": { - "type": "Identifier", - "start": 13906, - "end": 13907, - "loc": { - "start": { - "line": 139, - "column": 1395 - }, - "end": { - "line": 139, - "column": 1396 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13908, - "end": 13966, - "loc": { - "start": { - "line": 139, - "column": 1397 - }, - "end": { - "line": 139, - "column": 1455 - } - }, - "callee": { - "type": "Identifier", - "start": 13908, - "end": 13909, - "loc": { - "start": { - "line": 139, - "column": 1397 - }, - "end": { - "line": 139, - "column": 1398 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13910, - "end": 13965, - "loc": { - "start": { - "line": 139, - "column": 1399 - }, - "end": { - "line": 139, - "column": 1454 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13912, - "end": 13923, - "loc": { - "start": { - "line": 139, - "column": 1401 - }, - "end": { - "line": 139, - "column": 1412 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13912, - "end": 13920, - "loc": { - "start": { - "line": 139, - "column": 1401 - }, - "end": { - "line": 139, - "column": 1409 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 13922, - "end": 13923, - "loc": { - "start": { - "line": 139, - "column": 1411 - }, - "end": { - "line": 139, - "column": 1412 - }, - "identifierName": "v" - }, - "name": "v" - } - }, - { - "type": "ObjectProperty", - "start": 13925, - "end": 13941, - "loc": { - "start": { - "line": 139, - "column": 1414 - }, - "end": { - "line": 139, - "column": 1430 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13925, - "end": 13937, - "loc": { - "start": { - "line": 139, - "column": 1414 - }, - "end": { - "line": 139, - "column": 1426 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 13939, - "end": 13941, - "loc": { - "start": { - "line": 139, - "column": 1428 - }, - "end": { - "line": 139, - "column": 1430 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13940, - "end": 13941, - "loc": { - "start": { - "line": 139, - "column": 1429 - }, - "end": { - "line": 139, - "column": 1430 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 13943, - "end": 13963, - "loc": { - "start": { - "line": 139, - "column": 1432 - }, - "end": { - "line": 139, - "column": 1452 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13943, - "end": 13959, - "loc": { - "start": { - "line": 139, - "column": 1432 - }, - "end": { - "line": 139, - "column": 1448 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 13961, - "end": 13963, - "loc": { - "start": { - "line": 139, - "column": 1450 - }, - "end": { - "line": 139, - "column": 1452 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 13962, - "end": 13963, - "loc": { - "start": { - "line": 139, - "column": 1451 - }, - "end": { - "line": 139, - "column": 1452 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 13968, - "end": 13988, - "loc": { - "start": { - "line": 139, - "column": 1457 - }, - "end": { - "line": 139, - "column": 1477 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13969, - "end": 13974, - "loc": { - "start": { - "line": 139, - "column": 1458 - }, - "end": { - "line": 139, - "column": 1463 - } - }, - "extra": { - "rawValue": "bsh", - "raw": "\"bsh\"" - }, - "value": "bsh" - }, - { - "type": "StringLiteral", - "start": 13976, - "end": 13981, - "loc": { - "start": { - "line": 139, - "column": 1465 - }, - "end": { - "line": 139, - "column": 1470 - } - }, - "extra": { - "rawValue": "csh", - "raw": "\"csh\"" - }, - "value": "csh" - }, - { - "type": "StringLiteral", - "start": 13983, - "end": 13987, - "loc": { - "start": { - "line": 139, - "column": 1472 - }, - "end": { - "line": 139, - "column": 1476 - } - }, - "extra": { - "rawValue": "sh", - "raw": "\"sh\"" - }, - "value": "sh" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 13990, - "end": 14091, - "loc": { - "start": { - "line": 139, - "column": 1479 - }, - "end": { - "line": 139, - "column": 1580 - } - }, - "expression": { - "type": "CallExpression", - "start": 13990, - "end": 14090, - "loc": { - "start": { - "line": 139, - "column": 1479 - }, - "end": { - "line": 139, - "column": 1579 - } - }, - "callee": { - "type": "Identifier", - "start": 13990, - "end": 13991, - "loc": { - "start": { - "line": 139, - "column": 1479 - }, - "end": { - "line": 139, - "column": 1480 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 13992, - "end": 14075, - "loc": { - "start": { - "line": 139, - "column": 1481 - }, - "end": { - "line": 139, - "column": 1564 - } - }, - "callee": { - "type": "Identifier", - "start": 13992, - "end": 13993, - "loc": { - "start": { - "line": 139, - "column": 1481 - }, - "end": { - "line": 139, - "column": 1482 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 13994, - "end": 14074, - "loc": { - "start": { - "line": 139, - "column": 1483 - }, - "end": { - "line": 139, - "column": 1563 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 13996, - "end": 14007, - "loc": { - "start": { - "line": 139, - "column": 1485 - }, - "end": { - "line": 139, - "column": 1496 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 13996, - "end": 14004, - "loc": { - "start": { - "line": 139, - "column": 1485 - }, - "end": { - "line": 139, - "column": 1493 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 14006, - "end": 14007, - "loc": { - "start": { - "line": 139, - "column": 1495 - }, - "end": { - "line": 139, - "column": 1496 - }, - "identifierName": "I" - }, - "name": "I" - } - }, - { - "type": "ObjectProperty", - "start": 14009, - "end": 14025, - "loc": { - "start": { - "line": 139, - "column": 1498 - }, - "end": { - "line": 139, - "column": 1514 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14009, - "end": 14021, - "loc": { - "start": { - "line": 139, - "column": 1498 - }, - "end": { - "line": 139, - "column": 1510 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 14023, - "end": 14025, - "loc": { - "start": { - "line": 139, - "column": 1512 - }, - "end": { - "line": 139, - "column": 1514 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14024, - "end": 14025, - "loc": { - "start": { - "line": 139, - "column": 1513 - }, - "end": { - "line": 139, - "column": 1514 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14027, - "end": 14047, - "loc": { - "start": { - "line": 139, - "column": 1516 - }, - "end": { - "line": 139, - "column": 1536 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14027, - "end": 14043, - "loc": { - "start": { - "line": 139, - "column": 1516 - }, - "end": { - "line": 139, - "column": 1532 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14045, - "end": 14047, - "loc": { - "start": { - "line": 139, - "column": 1534 - }, - "end": { - "line": 139, - "column": 1536 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14046, - "end": 14047, - "loc": { - "start": { - "line": 139, - "column": 1535 - }, - "end": { - "line": 139, - "column": 1536 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14049, - "end": 14072, - "loc": { - "start": { - "line": 139, - "column": 1538 - }, - "end": { - "line": 139, - "column": 1561 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14049, - "end": 14068, - "loc": { - "start": { - "line": 139, - "column": 1538 - }, - "end": { - "line": 139, - "column": 1557 - }, - "identifierName": "tripleQuotedStrings" - }, - "name": "tripleQuotedStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14070, - "end": 14072, - "loc": { - "start": { - "line": 139, - "column": 1559 - }, - "end": { - "line": 139, - "column": 1561 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14071, - "end": 14072, - "loc": { - "start": { - "line": 139, - "column": 1560 - }, - "end": { - "line": 139, - "column": 1561 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14077, - "end": 14089, - "loc": { - "start": { - "line": 139, - "column": 1566 - }, - "end": { - "line": 139, - "column": 1578 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14078, - "end": 14082, - "loc": { - "start": { - "line": 139, - "column": 1567 - }, - "end": { - "line": 139, - "column": 1571 - } - }, - "extra": { - "rawValue": "cv", - "raw": "\"cv\"" - }, - "value": "cv" - }, - { - "type": "StringLiteral", - "start": 14084, - "end": 14088, - "loc": { - "start": { - "line": 139, - "column": 1573 - }, - "end": { - "line": 139, - "column": 1577 - } - }, - "extra": { - "rawValue": "py", - "raw": "\"py\"" - }, - "value": "py" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14091, - "end": 14369, - "loc": { - "start": { - "line": 139, - "column": 1580 - }, - "end": { - "line": 139, - "column": 1858 - } - }, - "expression": { - "type": "CallExpression", - "start": 14091, - "end": 14368, - "loc": { - "start": { - "line": 139, - "column": 1580 - }, - "end": { - "line": 139, - "column": 1857 - } - }, - "callee": { - "type": "Identifier", - "start": 14091, - "end": 14092, - "loc": { - "start": { - "line": 139, - "column": 1580 - }, - "end": { - "line": 139, - "column": 1581 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 14093, - "end": 14345, - "loc": { - "start": { - "line": 139, - "column": 1582 - }, - "end": { - "line": 139, - "column": 1834 - } - }, - "callee": { - "type": "Identifier", - "start": 14093, - "end": 14094, - "loc": { - "start": { - "line": 139, - "column": 1582 - }, - "end": { - "line": 139, - "column": 1583 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 14095, - "end": 14344, - "loc": { - "start": { - "line": 139, - "column": 1584 - }, - "end": { - "line": 139, - "column": 1833 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14097, - "end": 14283, - "loc": { - "start": { - "line": 139, - "column": 1586 - }, - "end": { - "line": 139, - "column": 1772 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14097, - "end": 14105, - "loc": { - "start": { - "line": 139, - "column": 1586 - }, - "end": { - "line": 139, - "column": 1594 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "StringLiteral", - "start": 14107, - "end": 14283, - "loc": { - "start": { - "line": 139, - "column": 1596 - }, - "end": { - "line": 139, - "column": 1772 - } - }, - "extra": { - "rawValue": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END", - "raw": "\"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END\"" - }, - "value": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END" - } - }, - { - "type": "ObjectProperty", - "start": 14285, - "end": 14301, - "loc": { - "start": { - "line": 139, - "column": 1774 - }, - "end": { - "line": 139, - "column": 1790 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14285, - "end": 14297, - "loc": { - "start": { - "line": 139, - "column": 1774 - }, - "end": { - "line": 139, - "column": 1786 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 14299, - "end": 14301, - "loc": { - "start": { - "line": 139, - "column": 1788 - }, - "end": { - "line": 139, - "column": 1790 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14300, - "end": 14301, - "loc": { - "start": { - "line": 139, - "column": 1789 - }, - "end": { - "line": 139, - "column": 1790 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14303, - "end": 14323, - "loc": { - "start": { - "line": 139, - "column": 1792 - }, - "end": { - "line": 139, - "column": 1812 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14303, - "end": 14319, - "loc": { - "start": { - "line": 139, - "column": 1792 - }, - "end": { - "line": 139, - "column": 1808 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14321, - "end": 14323, - "loc": { - "start": { - "line": 139, - "column": 1810 - }, - "end": { - "line": 139, - "column": 1812 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14322, - "end": 14323, - "loc": { - "start": { - "line": 139, - "column": 1811 - }, - "end": { - "line": 139, - "column": 1812 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14325, - "end": 14342, - "loc": { - "start": { - "line": 139, - "column": 1814 - }, - "end": { - "line": 139, - "column": 1831 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14325, - "end": 14338, - "loc": { - "start": { - "line": 139, - "column": 1814 - }, - "end": { - "line": 139, - "column": 1827 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "value": { - "type": "UnaryExpression", - "start": 14340, - "end": 14342, - "loc": { - "start": { - "line": 139, - "column": 1829 - }, - "end": { - "line": 139, - "column": 1831 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14341, - "end": 14342, - "loc": { - "start": { - "line": 139, - "column": 1830 - }, - "end": { - "line": 139, - "column": 1831 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14347, - "end": 14367, - "loc": { - "start": { - "line": 139, - "column": 1836 - }, - "end": { - "line": 139, - "column": 1856 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14348, - "end": 14354, - "loc": { - "start": { - "line": 139, - "column": 1837 - }, - "end": { - "line": 139, - "column": 1843 - } - }, - "extra": { - "rawValue": "perl", - "raw": "\"perl\"" - }, - "value": "perl" - }, - { - "type": "StringLiteral", - "start": 14356, - "end": 14360, - "loc": { - "start": { - "line": 139, - "column": 1845 - }, - "end": { - "line": 139, - "column": 1849 - } - }, - "extra": { - "rawValue": "pl", - "raw": "\"pl\"" - }, - "value": "pl" - }, - { - "type": "StringLiteral", - "start": 14362, - "end": 14366, - "loc": { - "start": { - "line": 139, - "column": 1851 - }, - "end": { - "line": 139, - "column": 1855 - } - }, - "extra": { - "rawValue": "pm", - "raw": "\"pm\"" - }, - "value": "pm" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14369, - "end": 14458, - "loc": { - "start": { - "line": 139, - "column": 1858 - }, - "end": { - "line": 139, - "column": 1947 - } - }, - "expression": { - "type": "CallExpression", - "start": 14369, - "end": 14457, - "loc": { - "start": { - "line": 139, - "column": 1858 - }, - "end": { - "line": 139, - "column": 1946 - } - }, - "callee": { - "type": "Identifier", - "start": 14369, - "end": 14370, - "loc": { - "start": { - "line": 139, - "column": 1858 - }, - "end": { - "line": 139, - "column": 1859 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 14371, - "end": 14448, - "loc": { - "start": { - "line": 139, - "column": 1860 - }, - "end": { - "line": 139, - "column": 1937 - } - }, - "callee": { - "type": "Identifier", - "start": 14371, - "end": 14372, - "loc": { - "start": { - "line": 139, - "column": 1860 - }, - "end": { - "line": 139, - "column": 1861 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 14373, - "end": 14447, - "loc": { - "start": { - "line": 139, - "column": 1862 - }, - "end": { - "line": 139, - "column": 1936 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14375, - "end": 14386, - "loc": { - "start": { - "line": 139, - "column": 1864 - }, - "end": { - "line": 139, - "column": 1875 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14375, - "end": 14383, - "loc": { - "start": { - "line": 139, - "column": 1864 - }, - "end": { - "line": 139, - "column": 1872 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 14385, - "end": 14386, - "loc": { - "start": { - "line": 139, - "column": 1874 - }, - "end": { - "line": 139, - "column": 1875 - }, - "identifierName": "J" - }, - "name": "J" - } - }, - { - "type": "ObjectProperty", - "start": 14388, - "end": 14404, - "loc": { - "start": { - "line": 139, - "column": 1877 - }, - "end": { - "line": 139, - "column": 1893 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14388, - "end": 14400, - "loc": { - "start": { - "line": 139, - "column": 1877 - }, - "end": { - "line": 139, - "column": 1889 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "UnaryExpression", - "start": 14402, - "end": 14404, - "loc": { - "start": { - "line": 139, - "column": 1891 - }, - "end": { - "line": 139, - "column": 1893 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14403, - "end": 14404, - "loc": { - "start": { - "line": 139, - "column": 1892 - }, - "end": { - "line": 139, - "column": 1893 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14406, - "end": 14426, - "loc": { - "start": { - "line": 139, - "column": 1895 - }, - "end": { - "line": 139, - "column": 1915 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14406, - "end": 14422, - "loc": { - "start": { - "line": 139, - "column": 1895 - }, - "end": { - "line": 139, - "column": 1911 - }, - "identifierName": "multiLineStrings" - }, - "name": "multiLineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14424, - "end": 14426, - "loc": { - "start": { - "line": 139, - "column": 1913 - }, - "end": { - "line": 139, - "column": 1915 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14425, - "end": 14426, - "loc": { - "start": { - "line": 139, - "column": 1914 - }, - "end": { - "line": 139, - "column": 1915 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14428, - "end": 14445, - "loc": { - "start": { - "line": 139, - "column": 1917 - }, - "end": { - "line": 139, - "column": 1934 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14428, - "end": 14441, - "loc": { - "start": { - "line": 139, - "column": 1917 - }, - "end": { - "line": 139, - "column": 1930 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "value": { - "type": "UnaryExpression", - "start": 14443, - "end": 14445, - "loc": { - "start": { - "line": 139, - "column": 1932 - }, - "end": { - "line": 139, - "column": 1934 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14444, - "end": 14445, - "loc": { - "start": { - "line": 139, - "column": 1933 - }, - "end": { - "line": 139, - "column": 1934 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14450, - "end": 14456, - "loc": { - "start": { - "line": 139, - "column": 1939 - }, - "end": { - "line": 139, - "column": 1945 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14451, - "end": 14455, - "loc": { - "start": { - "line": 139, - "column": 1940 - }, - "end": { - "line": 139, - "column": 1944 - } - }, - "extra": { - "rawValue": "rb", - "raw": "\"rb\"" - }, - "value": "rb" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14458, - "end": 14527, - "loc": { - "start": { - "line": 139, - "column": 1947 - }, - "end": { - "line": 139, - "column": 2016 - } - }, - "expression": { - "type": "CallExpression", - "start": 14458, - "end": 14526, - "loc": { - "start": { - "line": 139, - "column": 1947 - }, - "end": { - "line": 139, - "column": 2015 - } - }, - "callee": { - "type": "Identifier", - "start": 14458, - "end": 14459, - "loc": { - "start": { - "line": 139, - "column": 1947 - }, - "end": { - "line": 139, - "column": 1948 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 14460, - "end": 14517, - "loc": { - "start": { - "line": 139, - "column": 1949 - }, - "end": { - "line": 139, - "column": 2006 - } - }, - "callee": { - "type": "Identifier", - "start": 14460, - "end": 14461, - "loc": { - "start": { - "line": 139, - "column": 1949 - }, - "end": { - "line": 139, - "column": 1950 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 14462, - "end": 14516, - "loc": { - "start": { - "line": 139, - "column": 1951 - }, - "end": { - "line": 139, - "column": 2005 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14464, - "end": 14475, - "loc": { - "start": { - "line": 139, - "column": 1953 - }, - "end": { - "line": 139, - "column": 1964 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14464, - "end": 14472, - "loc": { - "start": { - "line": 139, - "column": 1953 - }, - "end": { - "line": 139, - "column": 1961 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "Identifier", - "start": 14474, - "end": 14475, - "loc": { - "start": { - "line": 139, - "column": 1963 - }, - "end": { - "line": 139, - "column": 1964 - }, - "identifierName": "w" - }, - "name": "w" - } - }, - { - "type": "ObjectProperty", - "start": 14477, - "end": 14495, - "loc": { - "start": { - "line": 139, - "column": 1966 - }, - "end": { - "line": 139, - "column": 1984 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14477, - "end": 14491, - "loc": { - "start": { - "line": 139, - "column": 1966 - }, - "end": { - "line": 139, - "column": 1980 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 14493, - "end": 14495, - "loc": { - "start": { - "line": 139, - "column": 1982 - }, - "end": { - "line": 139, - "column": 1984 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14494, - "end": 14495, - "loc": { - "start": { - "line": 139, - "column": 1983 - }, - "end": { - "line": 139, - "column": 1984 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14497, - "end": 14514, - "loc": { - "start": { - "line": 139, - "column": 1986 - }, - "end": { - "line": 139, - "column": 2003 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14497, - "end": 14510, - "loc": { - "start": { - "line": 139, - "column": 1986 - }, - "end": { - "line": 139, - "column": 1999 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "value": { - "type": "UnaryExpression", - "start": 14512, - "end": 14514, - "loc": { - "start": { - "line": 139, - "column": 2001 - }, - "end": { - "line": 139, - "column": 2003 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14513, - "end": 14514, - "loc": { - "start": { - "line": 139, - "column": 2002 - }, - "end": { - "line": 139, - "column": 2003 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14519, - "end": 14525, - "loc": { - "start": { - "line": 139, - "column": 2008 - }, - "end": { - "line": 139, - "column": 2014 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14520, - "end": 14524, - "loc": { - "start": { - "line": 139, - "column": 2009 - }, - "end": { - "line": 139, - "column": 2013 - } - }, - "extra": { - "rawValue": "js", - "raw": "\"js\"" - }, - "value": "js" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14527, - "end": 14825, - "loc": { - "start": { - "line": 139, - "column": 2016 - }, - "end": { - "line": 140, - "column": 122 - } - }, - "expression": { - "type": "CallExpression", - "start": 14527, - "end": 14824, - "loc": { - "start": { - "line": 139, - "column": 2016 - }, - "end": { - "line": 140, - "column": 121 - } - }, - "callee": { - "type": "Identifier", - "start": 14527, - "end": 14528, - "loc": { - "start": { - "line": 139, - "column": 2016 - }, - "end": { - "line": 139, - "column": 2017 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 14529, - "end": 14811, - "loc": { - "start": { - "line": 139, - "column": 2018 - }, - "end": { - "line": 140, - "column": 108 - } - }, - "callee": { - "type": "Identifier", - "start": 14529, - "end": 14530, - "loc": { - "start": { - "line": 139, - "column": 2018 - }, - "end": { - "line": 139, - "column": 2019 - }, - "identifierName": "u" - }, - "name": "u" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 14531, - "end": 14810, - "loc": { - "start": { - "line": 139, - "column": 2020 - }, - "end": { - "line": 140, - "column": 107 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14533, - "end": 14701, - "loc": { - "start": { - "line": 139, - "column": 2022 - }, - "end": { - "line": 139, - "column": 2190 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14533, - "end": 14541, - "loc": { - "start": { - "line": 139, - "column": 2022 - }, - "end": { - "line": 139, - "column": 2030 - }, - "identifierName": "keywords" - }, - "name": "keywords" - }, - "value": { - "type": "StringLiteral", - "start": 14543, - "end": 14701, - "loc": { - "start": { - "line": 139, - "column": 2032 - }, - "end": { - "line": 139, - "column": 2190 - } - }, - "extra": { - "rawValue": "all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", - "raw": "\"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes\"" - }, - "value": "all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes" - } - }, - { - "type": "ObjectProperty", - "start": 14707, - "end": 14722, - "loc": { - "start": { - "line": 140, - "column": 4 - }, - "end": { - "line": 140, - "column": 19 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14707, - "end": 14719, - "loc": { - "start": { - "line": 140, - "column": 4 - }, - "end": { - "line": 140, - "column": 16 - }, - "identifierName": "hashComments" - }, - "name": "hashComments" - }, - "value": { - "type": "NumericLiteral", - "start": 14721, - "end": 14722, - "loc": { - "start": { - "line": 140, - "column": 18 - }, - "end": { - "line": 140, - "column": 19 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - }, - { - "type": "ObjectProperty", - "start": 14724, - "end": 14742, - "loc": { - "start": { - "line": 140, - "column": 21 - }, - "end": { - "line": 140, - "column": 39 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14724, - "end": 14738, - "loc": { - "start": { - "line": 140, - "column": 21 - }, - "end": { - "line": 140, - "column": 35 - }, - "identifierName": "cStyleComments" - }, - "name": "cStyleComments" - }, - "value": { - "type": "UnaryExpression", - "start": 14740, - "end": 14742, - "loc": { - "start": { - "line": 140, - "column": 37 - }, - "end": { - "line": 140, - "column": 39 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14741, - "end": 14742, - "loc": { - "start": { - "line": 140, - "column": 38 - }, - "end": { - "line": 140, - "column": 39 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14744, - "end": 14764, - "loc": { - "start": { - "line": 140, - "column": 41 - }, - "end": { - "line": 140, - "column": 61 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14744, - "end": 14760, - "loc": { - "start": { - "line": 140, - "column": 41 - }, - "end": { - "line": 140, - "column": 57 - }, - "identifierName": "multilineStrings" - }, - "name": "multilineStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14762, - "end": 14764, - "loc": { - "start": { - "line": 140, - "column": 59 - }, - "end": { - "line": 140, - "column": 61 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14763, - "end": 14764, - "loc": { - "start": { - "line": 140, - "column": 60 - }, - "end": { - "line": 140, - "column": 61 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14766, - "end": 14789, - "loc": { - "start": { - "line": 140, - "column": 63 - }, - "end": { - "line": 140, - "column": 86 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14766, - "end": 14785, - "loc": { - "start": { - "line": 140, - "column": 63 - }, - "end": { - "line": 140, - "column": 82 - }, - "identifierName": "tripleQuotedStrings" - }, - "name": "tripleQuotedStrings" - }, - "value": { - "type": "UnaryExpression", - "start": 14787, - "end": 14789, - "loc": { - "start": { - "line": 140, - "column": 84 - }, - "end": { - "line": 140, - "column": 86 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14788, - "end": 14789, - "loc": { - "start": { - "line": 140, - "column": 85 - }, - "end": { - "line": 140, - "column": 86 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "ObjectProperty", - "start": 14791, - "end": 14808, - "loc": { - "start": { - "line": 140, - "column": 88 - }, - "end": { - "line": 140, - "column": 105 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14791, - "end": 14804, - "loc": { - "start": { - "line": 140, - "column": 88 - }, - "end": { - "line": 140, - "column": 101 - }, - "identifierName": "regexLiterals" - }, - "name": "regexLiterals" - }, - "value": { - "type": "UnaryExpression", - "start": 14806, - "end": 14808, - "loc": { - "start": { - "line": 140, - "column": 103 - }, - "end": { - "line": 140, - "column": 105 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 14807, - "end": 14808, - "loc": { - "start": { - "line": 140, - "column": 104 - }, - "end": { - "line": 140, - "column": 105 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14813, - "end": 14823, - "loc": { - "start": { - "line": 140, - "column": 110 - }, - "end": { - "line": 140, - "column": 120 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14814, - "end": 14822, - "loc": { - "start": { - "line": 140, - "column": 111 - }, - "end": { - "line": 140, - "column": 119 - } - }, - "extra": { - "rawValue": "coffee", - "raw": "\"coffee\"" - }, - "value": "coffee" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14825, - "end": 14868, - "loc": { - "start": { - "line": 140, - "column": 122 - }, - "end": { - "line": 140, - "column": 165 - } - }, - "expression": { - "type": "CallExpression", - "start": 14825, - "end": 14867, - "loc": { - "start": { - "line": 140, - "column": 122 - }, - "end": { - "line": 140, - "column": 164 - } - }, - "callee": { - "type": "Identifier", - "start": 14825, - "end": 14826, - "loc": { - "start": { - "line": 140, - "column": 122 - }, - "end": { - "line": 140, - "column": 123 - }, - "identifierName": "k" - }, - "name": "k" - }, - "arguments": [ - { - "type": "CallExpression", - "start": 14827, - "end": 14855, - "loc": { - "start": { - "line": 140, - "column": 124 - }, - "end": { - "line": 140, - "column": 152 - } - }, - "callee": { - "type": "Identifier", - "start": 14827, - "end": 14828, - "loc": { - "start": { - "line": 140, - "column": 124 - }, - "end": { - "line": 140, - "column": 125 - }, - "identifierName": "x" - }, - "name": "x" - }, - "arguments": [ - { - "type": "ArrayExpression", - "start": 14829, - "end": 14831, - "loc": { - "start": { - "line": 140, - "column": 126 - }, - "end": { - "line": 140, - "column": 128 - } - }, - "elements": [] - }, - { - "type": "ArrayExpression", - "start": 14833, - "end": 14854, - "loc": { - "start": { - "line": 140, - "column": 130 - }, - "end": { - "line": 140, - "column": 151 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 14834, - "end": 14853, - "loc": { - "start": { - "line": 140, - "column": 131 - }, - "end": { - "line": 140, - "column": 150 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14835, - "end": 14840, - "loc": { - "start": { - "line": 140, - "column": 132 - }, - "end": { - "line": 140, - "column": 137 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - }, - { - "type": "RegExpLiteral", - "start": 14842, - "end": 14852, - "loc": { - "start": { - "line": 140, - "column": 139 - }, - "end": { - "line": 140, - "column": 149 - } - }, - "extra": { - "raw": "/^[\\S\\s]+/" - }, - "pattern": "^[\\S\\s]+", - "flags": "" - } - ] - } - ] - } - ] - }, - { - "type": "ArrayExpression", - "start": 14857, - "end": 14866, - "loc": { - "start": { - "line": 140, - "column": 154 - }, - "end": { - "line": 140, - "column": 163 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14858, - "end": 14865, - "loc": { - "start": { - "line": 140, - "column": 155 - }, - "end": { - "line": 140, - "column": 162 - } - }, - "extra": { - "rawValue": "regex", - "raw": "\"regex\"" - }, - "value": "regex" - } - ] - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14868, - "end": 15032, - "loc": { - "start": { - "line": 140, - "column": 165 - }, - "end": { - "line": 142, - "column": 4 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 14868, - "end": 15031, - "loc": { - "start": { - "line": 140, - "column": 165 - }, - "end": { - "line": 142, - "column": 3 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 14868, - "end": 14889, - "loc": { - "start": { - "line": 140, - "column": 165 - }, - "end": { - "line": 140, - "column": 186 - } - }, - "object": { - "type": "Identifier", - "start": 14868, - "end": 14874, - "loc": { - "start": { - "line": 140, - "column": 165 - }, - "end": { - "line": 140, - "column": 171 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 14875, - "end": 14889, - "loc": { - "start": { - "line": 140, - "column": 172 - }, - "end": { - "line": 140, - "column": 186 - }, - "identifierName": "prettyPrintOne" - }, - "name": "prettyPrintOne" - }, - "computed": false - }, - "right": { - "type": "FunctionExpression", - "start": 14892, - "end": 15031, - "loc": { - "start": { - "line": 140, - "column": 189 - }, - "end": { - "line": 142, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 14902, - "end": 14903, - "loc": { - "start": { - "line": 140, - "column": 199 - }, - "end": { - "line": 140, - "column": 200 - }, - "identifierName": "a" - }, - "name": "a" - }, - { - "type": "Identifier", - "start": 14905, - "end": 14906, - "loc": { - "start": { - "line": 140, - "column": 202 - }, - "end": { - "line": 140, - "column": 203 - }, - "identifierName": "m" - }, - "name": "m" - }, - { - "type": "Identifier", - "start": 14908, - "end": 14909, - "loc": { - "start": { - "line": 140, - "column": 205 - }, - "end": { - "line": 140, - "column": 206 - }, - "identifierName": "e" - }, - "name": "e" - } - ], - "body": { - "type": "BlockStatement", - "start": 14911, - "end": 15031, - "loc": { - "start": { - "line": 140, - "column": 208 - }, - "end": { - "line": 142, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 14917, - "end": 14955, - "loc": { - "start": { - "line": 141, - "column": 4 - }, - "end": { - "line": 141, - "column": 42 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 14921, - "end": 14954, - "loc": { - "start": { - "line": 141, - "column": 8 - }, - "end": { - "line": 141, - "column": 41 - } - }, - "id": { - "type": "Identifier", - "start": 14921, - "end": 14922, - "loc": { - "start": { - "line": 141, - "column": 8 - }, - "end": { - "line": 141, - "column": 9 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "CallExpression", - "start": 14925, - "end": 14954, - "loc": { - "start": { - "line": 141, - "column": 12 - }, - "end": { - "line": 141, - "column": 41 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14925, - "end": 14947, - "loc": { - "start": { - "line": 141, - "column": 12 - }, - "end": { - "line": 141, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 14925, - "end": 14933, - "loc": { - "start": { - "line": 141, - "column": 12 - }, - "end": { - "line": 141, - "column": 20 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 14934, - "end": 14947, - "loc": { - "start": { - "line": 141, - "column": 21 - }, - "end": { - "line": 141, - "column": 34 - }, - "identifierName": "createElement" - }, - "name": "createElement" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 14948, - "end": 14953, - "loc": { - "start": { - "line": 141, - "column": 35 - }, - "end": { - "line": 141, - "column": 40 - } - }, - "extra": { - "rawValue": "PRE", - "raw": "\"PRE\"" - }, - "value": "PRE" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 14955, - "end": 14971, - "loc": { - "start": { - "line": 141, - "column": 42 - }, - "end": { - "line": 141, - "column": 58 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 14955, - "end": 14970, - "loc": { - "start": { - "line": 141, - "column": 42 - }, - "end": { - "line": 141, - "column": 57 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 14955, - "end": 14966, - "loc": { - "start": { - "line": 141, - "column": 42 - }, - "end": { - "line": 141, - "column": 53 - } - }, - "object": { - "type": "Identifier", - "start": 14955, - "end": 14956, - "loc": { - "start": { - "line": 141, - "column": 42 - }, - "end": { - "line": 141, - "column": 43 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 14957, - "end": 14966, - "loc": { - "start": { - "line": 141, - "column": 44 - }, - "end": { - "line": 141, - "column": 53 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 14969, - "end": 14970, - "loc": { - "start": { - "line": 141, - "column": 56 - }, - "end": { - "line": 141, - "column": 57 - }, - "identifierName": "a" - }, - "name": "a" - } - } - }, - { - "type": "ExpressionStatement", - "start": 14971, - "end": 14984, - "loc": { - "start": { - "line": 141, - "column": 58 - }, - "end": { - "line": 141, - "column": 71 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 14971, - "end": 14983, - "loc": { - "start": { - "line": 141, - "column": 58 - }, - "end": { - "line": 141, - "column": 70 - } - }, - "left": { - "type": "Identifier", - "start": 14971, - "end": 14972, - "loc": { - "start": { - "line": 141, - "column": 58 - }, - "end": { - "line": 141, - "column": 59 - }, - "identifierName": "e" - }, - "name": "e" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 14976, - "end": 14983, - "loc": { - "start": { - "line": 141, - "column": 63 - }, - "end": { - "line": 141, - "column": 70 - } - }, - "callee": { - "type": "Identifier", - "start": 14976, - "end": 14977, - "loc": { - "start": { - "line": 141, - "column": 63 - }, - "end": { - "line": 141, - "column": 64 - }, - "identifierName": "D" - }, - "name": "D" - }, - "arguments": [ - { - "type": "Identifier", - "start": 14978, - "end": 14979, - "loc": { - "start": { - "line": 141, - "column": 65 - }, - "end": { - "line": 141, - "column": 66 - }, - "identifierName": "h" - }, - "name": "h" - }, - { - "type": "Identifier", - "start": 14981, - "end": 14982, - "loc": { - "start": { - "line": 141, - "column": 68 - }, - "end": { - "line": 141, - "column": 69 - }, - "identifierName": "e" - }, - "name": "e" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 14984, - "end": 15008, - "loc": { - "start": { - "line": 141, - "column": 71 - }, - "end": { - "line": 141, - "column": 95 - } - }, - "expression": { - "type": "CallExpression", - "start": 14984, - "end": 15007, - "loc": { - "start": { - "line": 141, - "column": 71 - }, - "end": { - "line": 141, - "column": 94 - } - }, - "callee": { - "type": "Identifier", - "start": 14984, - "end": 14985, - "loc": { - "start": { - "line": 141, - "column": 71 - }, - "end": { - "line": 141, - "column": 72 - }, - "identifierName": "E" - }, - "name": "E" - }, - "arguments": [ - { - "type": "ObjectExpression", - "start": 14986, - "end": 15006, - "loc": { - "start": { - "line": 141, - "column": 73 - }, - "end": { - "line": 141, - "column": 93 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14988, - "end": 14992, - "loc": { - "start": { - "line": 141, - "column": 75 - }, - "end": { - "line": 141, - "column": 79 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14988, - "end": 14989, - "loc": { - "start": { - "line": 141, - "column": 75 - }, - "end": { - "line": 141, - "column": 76 - }, - "identifierName": "g" - }, - "name": "g" - }, - "value": { - "type": "Identifier", - "start": 14991, - "end": 14992, - "loc": { - "start": { - "line": 141, - "column": 78 - }, - "end": { - "line": 141, - "column": 79 - }, - "identifierName": "m" - }, - "name": "m" - } - }, - { - "type": "ObjectProperty", - "start": 14994, - "end": 14998, - "loc": { - "start": { - "line": 141, - "column": 81 - }, - "end": { - "line": 141, - "column": 85 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14994, - "end": 14995, - "loc": { - "start": { - "line": 141, - "column": 81 - }, - "end": { - "line": 141, - "column": 82 - }, - "identifierName": "i" - }, - "name": "i" - }, - "value": { - "type": "Identifier", - "start": 14997, - "end": 14998, - "loc": { - "start": { - "line": 141, - "column": 84 - }, - "end": { - "line": 141, - "column": 85 - }, - "identifierName": "e" - }, - "name": "e" - } - }, - { - "type": "ObjectProperty", - "start": 15000, - "end": 15004, - "loc": { - "start": { - "line": 141, - "column": 87 - }, - "end": { - "line": 141, - "column": 91 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 15000, - "end": 15001, - "loc": { - "start": { - "line": 141, - "column": 87 - }, - "end": { - "line": 141, - "column": 88 - }, - "identifierName": "h" - }, - "name": "h" - }, - "value": { - "type": "Identifier", - "start": 15003, - "end": 15004, - "loc": { - "start": { - "line": 141, - "column": 90 - }, - "end": { - "line": 141, - "column": 91 - }, - "identifierName": "h" - }, - "name": "h" - } - } - ] - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 15008, - "end": 15027, - "loc": { - "start": { - "line": 141, - "column": 95 - }, - "end": { - "line": 141, - "column": 114 - } - }, - "argument": { - "type": "MemberExpression", - "start": 15015, - "end": 15026, - "loc": { - "start": { - "line": 141, - "column": 102 - }, - "end": { - "line": 141, - "column": 113 - } - }, - "object": { - "type": "Identifier", - "start": 15015, - "end": 15016, - "loc": { - "start": { - "line": 141, - "column": 102 - }, - "end": { - "line": 141, - "column": 103 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 15017, - "end": 15026, - "loc": { - "start": { - "line": 141, - "column": 104 - }, - "end": { - "line": 141, - "column": 113 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "computed": false - } - } - ], - "directives": [] - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 15032, - "end": 16491, - "loc": { - "start": { - "line": 142, - "column": 4 - }, - "end": { - "line": 162, - "column": 4 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 15032, - "end": 16490, - "loc": { - "start": { - "line": 142, - "column": 4 - }, - "end": { - "line": 162, - "column": 3 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 15032, - "end": 15050, - "loc": { - "start": { - "line": 142, - "column": 4 - }, - "end": { - "line": 142, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 15032, - "end": 15038, - "loc": { - "start": { - "line": 142, - "column": 4 - }, - "end": { - "line": 142, - "column": 10 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 15039, - "end": 15050, - "loc": { - "start": { - "line": 142, - "column": 11 - }, - "end": { - "line": 142, - "column": 22 - }, - "identifierName": "prettyPrint" - }, - "name": "prettyPrint" - }, - "computed": false - }, - "right": { - "type": "FunctionExpression", - "start": 15053, - "end": 16490, - "loc": { - "start": { - "line": 142, - "column": 25 - }, - "end": { - "line": 162, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 15063, - "end": 15064, - "loc": { - "start": { - "line": 142, - "column": 35 - }, - "end": { - "line": 142, - "column": 36 - }, - "identifierName": "a" - }, - "name": "a" - } - ], - "body": { - "type": "BlockStatement", - "start": 15066, - "end": 16490, - "loc": { - "start": { - "line": 142, - "column": 38 - }, - "end": { - "line": 162, - "column": 3 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 15072, - "end": 16088, - "loc": { - "start": { - "line": 143, - "column": 4 - }, - "end": { - "line": 156, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 15081, - "end": 15082, - "loc": { - "start": { - "line": 143, - "column": 13 - }, - "end": { - "line": 143, - "column": 14 - }, - "identifierName": "m" - }, - "name": "m" - }, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 15085, - "end": 16088, - "loc": { - "start": { - "line": 143, - "column": 17 - }, - "end": { - "line": 156, - "column": 5 - } - }, - "body": [ - { - "type": "ForStatement", - "start": 15093, - "end": 16037, - "loc": { - "start": { - "line": 144, - "column": 6 - }, - "end": { - "line": 155, - "column": 7 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 15098, - "end": 15166, - "loc": { - "start": { - "line": 144, - "column": 11 - }, - "end": { - "line": 144, - "column": 79 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 15102, - "end": 15166, - "loc": { - "start": { - "line": 144, - "column": 15 - }, - "end": { - "line": 144, - "column": 79 - } - }, - "id": { - "type": "Identifier", - "start": 15102, - "end": 15103, - "loc": { - "start": { - "line": 144, - "column": 15 - }, - "end": { - "line": 144, - "column": 16 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "ConditionalExpression", - "start": 15106, - "end": 15166, - "loc": { - "start": { - "line": 144, - "column": 19 - }, - "end": { - "line": 144, - "column": 79 - } - }, - "test": { - "type": "MemberExpression", - "start": 15106, - "end": 15139, - "loc": { - "start": { - "line": 144, - "column": 19 - }, - "end": { - "line": 144, - "column": 52 - } - }, - "object": { - "type": "Identifier", - "start": 15106, - "end": 15112, - "loc": { - "start": { - "line": 144, - "column": 19 - }, - "end": { - "line": 144, - "column": 25 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 15113, - "end": 15139, - "loc": { - "start": { - "line": 144, - "column": 26 - }, - "end": { - "line": 144, - "column": 52 - }, - "identifierName": "PR_SHOULD_USE_CONTINUATION" - }, - "name": "PR_SHOULD_USE_CONTINUATION" - }, - "computed": false - }, - "consequent": { - "type": "BinaryExpression", - "start": 15142, - "end": 15155, - "loc": { - "start": { - "line": 144, - "column": 55 - }, - "end": { - "line": 144, - "column": 68 - } - }, - "left": { - "type": "CallExpression", - "start": 15142, - "end": 15149, - "loc": { - "start": { - "line": 144, - "column": 55 - }, - "end": { - "line": 144, - "column": 62 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15142, - "end": 15147, - "loc": { - "start": { - "line": 144, - "column": 55 - }, - "end": { - "line": 144, - "column": 60 - } - }, - "object": { - "type": "Identifier", - "start": 15142, - "end": 15143, - "loc": { - "start": { - "line": 144, - "column": 55 - }, - "end": { - "line": 144, - "column": 56 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 15144, - "end": 15147, - "loc": { - "start": { - "line": 144, - "column": 57 - }, - "end": { - "line": 144, - "column": 60 - }, - "identifierName": "now" - }, - "name": "now" - }, - "computed": false - }, - "arguments": [] - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 15152, - "end": 15155, - "loc": { - "start": { - "line": 144, - "column": 65 - }, - "end": { - "line": 144, - "column": 68 - } - }, - "extra": { - "rawValue": 250, - "raw": "250" - }, - "value": 250 - } - }, - "alternate": { - "type": "Identifier", - "start": 15158, - "end": 15166, - "loc": { - "start": { - "line": 144, - "column": 71 - }, - "end": { - "line": 144, - "column": 79 - }, - "identifierName": "Infinity" - }, - "name": "Infinity" - } - } - } - ], - "kind": "var" - }, - "test": { - "type": "LogicalExpression", - "start": 15168, - "end": 15195, - "loc": { - "start": { - "line": 144, - "column": 81 - }, - "end": { - "line": 144, - "column": 108 - } - }, - "left": { - "type": "BinaryExpression", - "start": 15168, - "end": 15180, - "loc": { - "start": { - "line": 144, - "column": 81 - }, - "end": { - "line": 144, - "column": 93 - } - }, - "left": { - "type": "Identifier", - "start": 15168, - "end": 15169, - "loc": { - "start": { - "line": 144, - "column": 81 - }, - "end": { - "line": 144, - "column": 82 - }, - "identifierName": "p" - }, - "name": "p" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 15172, - "end": 15180, - "loc": { - "start": { - "line": 144, - "column": 85 - }, - "end": { - "line": 144, - "column": 93 - } - }, - "object": { - "type": "Identifier", - "start": 15172, - "end": 15173, - "loc": { - "start": { - "line": 144, - "column": 85 - }, - "end": { - "line": 144, - "column": 86 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 15174, - "end": 15180, - "loc": { - "start": { - "line": 144, - "column": 87 - }, - "end": { - "line": 144, - "column": 93 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 15184, - "end": 15195, - "loc": { - "start": { - "line": 144, - "column": 97 - }, - "end": { - "line": 144, - "column": 108 - } - }, - "left": { - "type": "CallExpression", - "start": 15184, - "end": 15191, - "loc": { - "start": { - "line": 144, - "column": 97 - }, - "end": { - "line": 144, - "column": 104 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15184, - "end": 15189, - "loc": { - "start": { - "line": 144, - "column": 97 - }, - "end": { - "line": 144, - "column": 102 - } - }, - "object": { - "type": "Identifier", - "start": 15184, - "end": 15185, - "loc": { - "start": { - "line": 144, - "column": 97 - }, - "end": { - "line": 144, - "column": 98 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 15186, - "end": 15189, - "loc": { - "start": { - "line": 144, - "column": 99 - }, - "end": { - "line": 144, - "column": 102 - }, - "identifierName": "now" - }, - "name": "now" - }, - "computed": false - }, - "arguments": [] - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 15194, - "end": 15195, - "loc": { - "start": { - "line": 144, - "column": 107 - }, - "end": { - "line": 144, - "column": 108 - }, - "identifierName": "e" - }, - "name": "e" - } - } - }, - "update": { - "type": "UpdateExpression", - "start": 15197, - "end": 15200, - "loc": { - "start": { - "line": 144, - "column": 110 - }, - "end": { - "line": 144, - "column": 113 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 15197, - "end": 15198, - "loc": { - "start": { - "line": 144, - "column": 110 - }, - "end": { - "line": 144, - "column": 111 - }, - "identifierName": "p" - }, - "name": "p" - } - }, - "body": { - "type": "BlockStatement", - "start": 15202, - "end": 16037, - "loc": { - "start": { - "line": 144, - "column": 115 - }, - "end": { - "line": 155, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 15212, - "end": 15254, - "loc": { - "start": { - "line": 145, - "column": 8 - }, - "end": { - "line": 146, - "column": 28 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 15216, - "end": 15224, - "loc": { - "start": { - "line": 145, - "column": 12 - }, - "end": { - "line": 145, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 15216, - "end": 15217, - "loc": { - "start": { - "line": 145, - "column": 12 - }, - "end": { - "line": 145, - "column": 13 - }, - "identifierName": "n" - }, - "name": "n" - }, - "init": { - "type": "MemberExpression", - "start": 15220, - "end": 15224, - "loc": { - "start": { - "line": 145, - "column": 16 - }, - "end": { - "line": 145, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 15220, - "end": 15221, - "loc": { - "start": { - "line": 145, - "column": 16 - }, - "end": { - "line": 145, - "column": 17 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 15222, - "end": 15223, - "loc": { - "start": { - "line": 145, - "column": 18 - }, - "end": { - "line": 145, - "column": 19 - }, - "identifierName": "p" - }, - "name": "p" - }, - "computed": true - } - }, - { - "type": "VariableDeclarator", - "start": 15238, - "end": 15253, - "loc": { - "start": { - "line": 146, - "column": 12 - }, - "end": { - "line": 146, - "column": 27 - } - }, - "id": { - "type": "Identifier", - "start": 15238, - "end": 15239, - "loc": { - "start": { - "line": 146, - "column": 12 - }, - "end": { - "line": 146, - "column": 13 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "MemberExpression", - "start": 15242, - "end": 15253, - "loc": { - "start": { - "line": 146, - "column": 16 - }, - "end": { - "line": 146, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 15242, - "end": 15243, - "loc": { - "start": { - "line": 146, - "column": 16 - }, - "end": { - "line": 146, - "column": 17 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 15244, - "end": 15253, - "loc": { - "start": { - "line": 146, - "column": 18 - }, - "end": { - "line": 146, - "column": 27 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 15254, - "end": 16029, - "loc": { - "start": { - "line": 146, - "column": 28 - }, - "end": { - "line": 154, - "column": 9 - } - }, - "test": { - "type": "BinaryExpression", - "start": 15258, - "end": 15287, - "loc": { - "start": { - "line": 146, - "column": 32 - }, - "end": { - "line": 146, - "column": 61 - } - }, - "left": { - "type": "CallExpression", - "start": 15258, - "end": 15282, - "loc": { - "start": { - "line": 146, - "column": 32 - }, - "end": { - "line": 146, - "column": 56 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15258, - "end": 15267, - "loc": { - "start": { - "line": 146, - "column": 32 - }, - "end": { - "line": 146, - "column": 41 - } - }, - "object": { - "type": "Identifier", - "start": 15258, - "end": 15259, - "loc": { - "start": { - "line": 146, - "column": 32 - }, - "end": { - "line": 146, - "column": 33 - }, - "identifierName": "k" - }, - "name": "k" - }, - "property": { - "type": "Identifier", - "start": 15260, - "end": 15267, - "loc": { - "start": { - "line": 146, - "column": 34 - }, - "end": { - "line": 146, - "column": 41 - }, - "identifierName": "indexOf" - }, - "name": "indexOf" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 15268, - "end": 15281, - "loc": { - "start": { - "line": 146, - "column": 42 - }, - "end": { - "line": 146, - "column": 55 - } - }, - "extra": { - "rawValue": "prettyprint", - "raw": "\"prettyprint\"" - }, - "value": "prettyprint" - } - ] - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 15286, - "end": 15287, - "loc": { - "start": { - "line": 146, - "column": 60 - }, - "end": { - "line": 146, - "column": 61 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - "consequent": { - "type": "BlockStatement", - "start": 15289, - "end": 16029, - "loc": { - "start": { - "line": 146, - "column": 63 - }, - "end": { - "line": 154, - "column": 9 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 15301, - "end": 15354, - "loc": { - "start": { - "line": 147, - "column": 10 - }, - "end": { - "line": 149, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 15305, - "end": 15319, - "loc": { - "start": { - "line": 147, - "column": 14 - }, - "end": { - "line": 147, - "column": 28 - } - }, - "id": { - "type": "Identifier", - "start": 15305, - "end": 15306, - "loc": { - "start": { - "line": 147, - "column": 14 - }, - "end": { - "line": 147, - "column": 15 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "CallExpression", - "start": 15309, - "end": 15319, - "loc": { - "start": { - "line": 147, - "column": 18 - }, - "end": { - "line": 147, - "column": 28 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15309, - "end": 15316, - "loc": { - "start": { - "line": 147, - "column": 18 - }, - "end": { - "line": 147, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 15309, - "end": 15310, - "loc": { - "start": { - "line": 147, - "column": 18 - }, - "end": { - "line": 147, - "column": 19 - }, - "identifierName": "k" - }, - "name": "k" - }, - "property": { - "type": "Identifier", - "start": 15311, - "end": 15316, - "loc": { - "start": { - "line": 147, - "column": 20 - }, - "end": { - "line": 147, - "column": 25 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 15317, - "end": 15318, - "loc": { - "start": { - "line": 147, - "column": 26 - }, - "end": { - "line": 147, - "column": 27 - }, - "identifierName": "g" - }, - "name": "g" - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 15335, - "end": 15336, - "loc": { - "start": { - "line": 148, - "column": 14 - }, - "end": { - "line": 148, - "column": 15 - } - }, - "id": { - "type": "Identifier", - "start": 15335, - "end": 15336, - "loc": { - "start": { - "line": 148, - "column": 14 - }, - "end": { - "line": 148, - "column": 15 - }, - "identifierName": "f" - }, - "name": "f" - }, - "init": null - }, - { - "type": "VariableDeclarator", - "start": 15352, - "end": 15353, - "loc": { - "start": { - "line": 149, - "column": 14 - }, - "end": { - "line": 149, - "column": 15 - } - }, - "id": { - "type": "Identifier", - "start": 15352, - "end": 15353, - "loc": { - "start": { - "line": 149, - "column": 14 - }, - "end": { - "line": 149, - "column": 15 - }, - "identifierName": "b" - }, - "name": "b" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 15354, - "end": 15602, - "loc": { - "start": { - "line": 149, - "column": 16 - }, - "end": { - "line": 151, - "column": 11 - } - }, - "test": { - "type": "AssignmentExpression", - "start": 15358, - "end": 15364, - "loc": { - "start": { - "line": 149, - "column": 20 - }, - "end": { - "line": 149, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15358, - "end": 15359, - "loc": { - "start": { - "line": 149, - "column": 20 - }, - "end": { - "line": 149, - "column": 21 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "UnaryExpression", - "start": 15362, - "end": 15364, - "loc": { - "start": { - "line": 149, - "column": 24 - }, - "end": { - "line": 149, - "column": 26 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 15363, - "end": 15364, - "loc": { - "start": { - "line": 149, - "column": 25 - }, - "end": { - "line": 149, - "column": 26 - }, - "identifierName": "k" - }, - "name": "k" - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "consequent": { - "type": "BlockStatement", - "start": 15366, - "end": 15602, - "loc": { - "start": { - "line": 149, - "column": 28 - }, - "end": { - "line": 151, - "column": 11 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 15380, - "end": 15386, - "loc": { - "start": { - "line": 150, - "column": 12 - }, - "end": { - "line": 150, - "column": 18 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 15380, - "end": 15385, - "loc": { - "start": { - "line": 150, - "column": 12 - }, - "end": { - "line": 150, - "column": 17 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15380, - "end": 15381, - "loc": { - "start": { - "line": 150, - "column": 12 - }, - "end": { - "line": 150, - "column": 13 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "Identifier", - "start": 15384, - "end": 15385, - "loc": { - "start": { - "line": 150, - "column": 16 - }, - "end": { - "line": 150, - "column": 17 - }, - "identifierName": "n" - }, - "name": "n" - } - } - }, - { - "type": "ForStatement", - "start": 15386, - "end": 15535, - "loc": { - "start": { - "line": 150, - "column": 18 - }, - "end": { - "line": 150, - "column": 167 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 15391, - "end": 15423, - "loc": { - "start": { - "line": 150, - "column": 23 - }, - "end": { - "line": 150, - "column": 55 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 15395, - "end": 15405, - "loc": { - "start": { - "line": 150, - "column": 27 - }, - "end": { - "line": 150, - "column": 37 - } - }, - "id": { - "type": "Identifier", - "start": 15395, - "end": 15396, - "loc": { - "start": { - "line": 150, - "column": 27 - }, - "end": { - "line": 150, - "column": 28 - }, - "identifierName": "o" - }, - "name": "o" - }, - "init": { - "type": "UnaryExpression", - "start": 15399, - "end": 15405, - "loc": { - "start": { - "line": 150, - "column": 31 - }, - "end": { - "line": 150, - "column": 37 - } - }, - "operator": "void", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15404, - "end": 15405, - "loc": { - "start": { - "line": 150, - "column": 36 - }, - "end": { - "line": 150, - "column": 37 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - { - "type": "VariableDeclarator", - "start": 15407, - "end": 15423, - "loc": { - "start": { - "line": 150, - "column": 39 - }, - "end": { - "line": 150, - "column": 55 - } - }, - "id": { - "type": "Identifier", - "start": 15407, - "end": 15408, - "loc": { - "start": { - "line": 150, - "column": 39 - }, - "end": { - "line": 150, - "column": 40 - }, - "identifierName": "c" - }, - "name": "c" - }, - "init": { - "type": "MemberExpression", - "start": 15411, - "end": 15423, - "loc": { - "start": { - "line": 150, - "column": 43 - }, - "end": { - "line": 150, - "column": 55 - } - }, - "object": { - "type": "Identifier", - "start": 15411, - "end": 15412, - "loc": { - "start": { - "line": 150, - "column": 43 - }, - "end": { - "line": 150, - "column": 44 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "Identifier", - "start": 15413, - "end": 15423, - "loc": { - "start": { - "line": 150, - "column": 45 - }, - "end": { - "line": 150, - "column": 55 - }, - "identifierName": "firstChild" - }, - "name": "firstChild" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "Identifier", - "start": 15425, - "end": 15426, - "loc": { - "start": { - "line": 150, - "column": 57 - }, - "end": { - "line": 150, - "column": 58 - }, - "identifierName": "c" - }, - "name": "c" - }, - "update": { - "type": "AssignmentExpression", - "start": 15428, - "end": 15445, - "loc": { - "start": { - "line": 150, - "column": 60 - }, - "end": { - "line": 150, - "column": 77 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15428, - "end": 15429, - "loc": { - "start": { - "line": 150, - "column": 60 - }, - "end": { - "line": 150, - "column": 61 - }, - "identifierName": "c" - }, - "name": "c" - }, - "right": { - "type": "MemberExpression", - "start": 15432, - "end": 15445, - "loc": { - "start": { - "line": 150, - "column": 64 - }, - "end": { - "line": 150, - "column": 77 - } - }, - "object": { - "type": "Identifier", - "start": 15432, - "end": 15433, - "loc": { - "start": { - "line": 150, - "column": 64 - }, - "end": { - "line": 150, - "column": 65 - }, - "identifierName": "c" - }, - "name": "c" - }, - "property": { - "type": "Identifier", - "start": 15434, - "end": 15445, - "loc": { - "start": { - "line": 150, - "column": 66 - }, - "end": { - "line": 150, - "column": 77 - }, - "identifierName": "nextSibling" - }, - "name": "nextSibling" - }, - "computed": false - } - }, - "body": { - "type": "VariableDeclaration", - "start": 15447, - "end": 15535, - "loc": { - "start": { - "line": 150, - "column": 79 - }, - "end": { - "line": 150, - "column": 167 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 15451, - "end": 15465, - "loc": { - "start": { - "line": 150, - "column": 83 - }, - "end": { - "line": 150, - "column": 97 - } - }, - "id": { - "type": "Identifier", - "start": 15451, - "end": 15452, - "loc": { - "start": { - "line": 150, - "column": 83 - }, - "end": { - "line": 150, - "column": 84 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "MemberExpression", - "start": 15455, - "end": 15465, - "loc": { - "start": { - "line": 150, - "column": 87 - }, - "end": { - "line": 150, - "column": 97 - } - }, - "object": { - "type": "Identifier", - "start": 15455, - "end": 15456, - "loc": { - "start": { - "line": 150, - "column": 87 - }, - "end": { - "line": 150, - "column": 88 - }, - "identifierName": "c" - }, - "name": "c" - }, - "property": { - "type": "Identifier", - "start": 15457, - "end": 15465, - "loc": { - "start": { - "line": 150, - "column": 89 - }, - "end": { - "line": 150, - "column": 97 - }, - "identifierName": "nodeType" - }, - "name": "nodeType" - }, - "computed": false - } - }, - { - "type": "VariableDeclarator", - "start": 15467, - "end": 15534, - "loc": { - "start": { - "line": 150, - "column": 99 - }, - "end": { - "line": 150, - "column": 166 - } - }, - "id": { - "type": "Identifier", - "start": 15467, - "end": 15468, - "loc": { - "start": { - "line": 150, - "column": 99 - }, - "end": { - "line": 150, - "column": 100 - }, - "identifierName": "o" - }, - "name": "o" - }, - "init": { - "type": "ConditionalExpression", - "start": 15471, - "end": 15534, - "loc": { - "start": { - "line": 150, - "column": 103 - }, - "end": { - "line": 150, - "column": 166 - } - }, - "test": { - "type": "BinaryExpression", - "start": 15471, - "end": 15478, - "loc": { - "start": { - "line": 150, - "column": 103 - }, - "end": { - "line": 150, - "column": 110 - } - }, - "left": { - "type": "Identifier", - "start": 15471, - "end": 15472, - "loc": { - "start": { - "line": 150, - "column": 103 - }, - "end": { - "line": 150, - "column": 104 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 15477, - "end": 15478, - "loc": { - "start": { - "line": 150, - "column": 109 - }, - "end": { - "line": 150, - "column": 110 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "consequent": { - "type": "ConditionalExpression", - "start": 15481, - "end": 15490, - "loc": { - "start": { - "line": 150, - "column": 113 - }, - "end": { - "line": 150, - "column": 122 - } - }, - "test": { - "type": "Identifier", - "start": 15481, - "end": 15482, - "loc": { - "start": { - "line": 150, - "column": 113 - }, - "end": { - "line": 150, - "column": 114 - }, - "identifierName": "o" - }, - "name": "o" - }, - "consequent": { - "type": "Identifier", - "start": 15485, - "end": 15486, - "loc": { - "start": { - "line": 150, - "column": 117 - }, - "end": { - "line": 150, - "column": 118 - }, - "identifierName": "b" - }, - "name": "b" - }, - "alternate": { - "type": "Identifier", - "start": 15489, - "end": 15490, - "loc": { - "start": { - "line": 150, - "column": 121 - }, - "end": { - "line": 150, - "column": 122 - }, - "identifierName": "c" - }, - "name": "c" - } - }, - "alternate": { - "type": "ConditionalExpression", - "start": 15493, - "end": 15534, - "loc": { - "start": { - "line": 150, - "column": 125 - }, - "end": { - "line": 150, - "column": 166 - } - }, - "test": { - "type": "BinaryExpression", - "start": 15493, - "end": 15500, - "loc": { - "start": { - "line": 150, - "column": 125 - }, - "end": { - "line": 150, - "column": 132 - } - }, - "left": { - "type": "Identifier", - "start": 15493, - "end": 15494, - "loc": { - "start": { - "line": 150, - "column": 125 - }, - "end": { - "line": 150, - "column": 126 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 15499, - "end": 15500, - "loc": { - "start": { - "line": 150, - "column": 131 - }, - "end": { - "line": 150, - "column": 132 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - } - }, - "consequent": { - "type": "ConditionalExpression", - "start": 15503, - "end": 15530, - "loc": { - "start": { - "line": 150, - "column": 135 - }, - "end": { - "line": 150, - "column": 162 - } - }, - "test": { - "type": "CallExpression", - "start": 15503, - "end": 15522, - "loc": { - "start": { - "line": 150, - "column": 135 - }, - "end": { - "line": 150, - "column": 154 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15503, - "end": 15509, - "loc": { - "start": { - "line": 150, - "column": 135 - }, - "end": { - "line": 150, - "column": 141 - } - }, - "object": { - "type": "Identifier", - "start": 15503, - "end": 15504, - "loc": { - "start": { - "line": 150, - "column": 135 - }, - "end": { - "line": 150, - "column": 136 - }, - "identifierName": "N" - }, - "name": "N" - }, - "property": { - "type": "Identifier", - "start": 15505, - "end": 15509, - "loc": { - "start": { - "line": 150, - "column": 137 - }, - "end": { - "line": 150, - "column": 141 - }, - "identifierName": "test" - }, - "name": "test" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 15510, - "end": 15521, - "loc": { - "start": { - "line": 150, - "column": 142 - }, - "end": { - "line": 150, - "column": 153 - } - }, - "object": { - "type": "Identifier", - "start": 15510, - "end": 15511, - "loc": { - "start": { - "line": 150, - "column": 142 - }, - "end": { - "line": 150, - "column": 143 - }, - "identifierName": "c" - }, - "name": "c" - }, - "property": { - "type": "Identifier", - "start": 15512, - "end": 15521, - "loc": { - "start": { - "line": 150, - "column": 144 - }, - "end": { - "line": 150, - "column": 153 - }, - "identifierName": "nodeValue" - }, - "name": "nodeValue" - }, - "computed": false - } - ] - }, - "consequent": { - "type": "Identifier", - "start": 15525, - "end": 15526, - "loc": { - "start": { - "line": 150, - "column": 157 - }, - "end": { - "line": 150, - "column": 158 - }, - "identifierName": "b" - }, - "name": "b" - }, - "alternate": { - "type": "Identifier", - "start": 15529, - "end": 15530, - "loc": { - "start": { - "line": 150, - "column": 161 - }, - "end": { - "line": 150, - "column": 162 - }, - "identifierName": "o" - }, - "name": "o" - } - }, - "alternate": { - "type": "Identifier", - "start": 15533, - "end": 15534, - "loc": { - "start": { - "line": 150, - "column": 165 - }, - "end": { - "line": 150, - "column": 166 - }, - "identifierName": "o" - }, - "name": "o" - } - } - } - } - ], - "kind": "var" - } - }, - { - "type": "ExpressionStatement", - "start": 15535, - "end": 15590, - "loc": { - "start": { - "line": 150, - "column": 167 - }, - "end": { - "line": 150, - "column": 222 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 15535, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 167 - }, - "end": { - "line": 150, - "column": 221 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15535, - "end": 15536, - "loc": { - "start": { - "line": 150, - "column": 167 - }, - "end": { - "line": 150, - "column": 168 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "LogicalExpression", - "start": 15539, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 171 - }, - "end": { - "line": 150, - "column": 221 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 15540, - "end": 15564, - "loc": { - "start": { - "line": 150, - "column": 172 - }, - "end": { - "line": 150, - "column": 196 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15540, - "end": 15541, - "loc": { - "start": { - "line": 150, - "column": 172 - }, - "end": { - "line": 150, - "column": 173 - }, - "identifierName": "f" - }, - "name": "f" - }, - "right": { - "type": "ConditionalExpression", - "start": 15544, - "end": 15564, - "loc": { - "start": { - "line": 150, - "column": 176 - }, - "end": { - "line": 150, - "column": 196 - } - }, - "test": { - "type": "BinaryExpression", - "start": 15544, - "end": 15551, - "loc": { - "start": { - "line": 150, - "column": 176 - }, - "end": { - "line": 150, - "column": 183 - } - }, - "left": { - "type": "Identifier", - "start": 15544, - "end": 15545, - "loc": { - "start": { - "line": 150, - "column": 176 - }, - "end": { - "line": 150, - "column": 177 - }, - "identifierName": "o" - }, - "name": "o" - }, - "operator": "===", - "right": { - "type": "Identifier", - "start": 15550, - "end": 15551, - "loc": { - "start": { - "line": 150, - "column": 182 - }, - "end": { - "line": 150, - "column": 183 - }, - "identifierName": "b" - }, - "name": "b" - } - }, - "consequent": { - "type": "UnaryExpression", - "start": 15554, - "end": 15560, - "loc": { - "start": { - "line": 150, - "column": 186 - }, - "end": { - "line": 150, - "column": 192 - } - }, - "operator": "void", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15559, - "end": 15560, - "loc": { - "start": { - "line": 150, - "column": 191 - }, - "end": { - "line": 150, - "column": 192 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - }, - "alternate": { - "type": "Identifier", - "start": 15563, - "end": 15564, - "loc": { - "start": { - "line": 150, - "column": 195 - }, - "end": { - "line": 150, - "column": 196 - }, - "identifierName": "o" - }, - "name": "o" - } - }, - "extra": { - "parenthesized": true, - "parenStart": 15539 - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 15569, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 201 - }, - "end": { - "line": 150, - "column": 221 - } - }, - "left": { - "type": "StringLiteral", - "start": 15569, - "end": 15575, - "loc": { - "start": { - "line": 150, - "column": 201 - }, - "end": { - "line": 150, - "column": 207 - } - }, - "extra": { - "rawValue": "CODE", - "raw": "\"CODE\"" - }, - "value": "CODE" - }, - "operator": "===", - "right": { - "type": "MemberExpression", - "start": 15580, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 212 - }, - "end": { - "line": 150, - "column": 221 - } - }, - "object": { - "type": "Identifier", - "start": 15580, - "end": 15581, - "loc": { - "start": { - "line": 150, - "column": 212 - }, - "end": { - "line": 150, - "column": 213 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 15582, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 214 - }, - "end": { - "line": 150, - "column": 221 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - } - } - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 15602, - "end": 15634, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 43 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 15602, - "end": 15633, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 42 - } - }, - "left": { - "type": "Identifier", - "start": 15602, - "end": 15603, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 12 - }, - "identifierName": "b" - }, - "name": "b" - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 15608, - "end": 15632, - "loc": { - "start": { - "line": 151, - "column": 17 - }, - "end": { - "line": 151, - "column": 41 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15608, - "end": 15609, - "loc": { - "start": { - "line": 151, - "column": 17 - }, - "end": { - "line": 151, - "column": 18 - }, - "identifierName": "k" - }, - "name": "k" - }, - "right": { - "type": "CallExpression", - "start": 15612, - "end": 15632, - "loc": { - "start": { - "line": 151, - "column": 21 - }, - "end": { - "line": 151, - "column": 41 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15612, - "end": 15629, - "loc": { - "start": { - "line": 151, - "column": 21 - }, - "end": { - "line": 151, - "column": 38 - } - }, - "object": { - "type": "MemberExpression", - "start": 15612, - "end": 15623, - "loc": { - "start": { - "line": 151, - "column": 21 - }, - "end": { - "line": 151, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 15612, - "end": 15613, - "loc": { - "start": { - "line": 151, - "column": 21 - }, - "end": { - "line": 151, - "column": 22 - }, - "identifierName": "f" - }, - "name": "f" - }, - "property": { - "type": "Identifier", - "start": 15614, - "end": 15623, - "loc": { - "start": { - "line": 151, - "column": 23 - }, - "end": { - "line": 151, - "column": 32 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 15624, - "end": 15629, - "loc": { - "start": { - "line": 151, - "column": 33 - }, - "end": { - "line": 151, - "column": 38 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 15630, - "end": 15631, - "loc": { - "start": { - "line": 151, - "column": 39 - }, - "end": { - "line": 151, - "column": 40 - }, - "identifierName": "g" - }, - "name": "g" - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 15607 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 15634, - "end": 15650, - "loc": { - "start": { - "line": 151, - "column": 43 - }, - "end": { - "line": 151, - "column": 59 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 15634, - "end": 15649, - "loc": { - "start": { - "line": 151, - "column": 43 - }, - "end": { - "line": 151, - "column": 58 - } - }, - "left": { - "type": "Identifier", - "start": 15634, - "end": 15635, - "loc": { - "start": { - "line": 151, - "column": 43 - }, - "end": { - "line": 151, - "column": 44 - }, - "identifierName": "k" - }, - "name": "k" - }, - "operator": "&&", - "right": { - "type": "AssignmentExpression", - "start": 15640, - "end": 15648, - "loc": { - "start": { - "line": 151, - "column": 49 - }, - "end": { - "line": 151, - "column": 57 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15640, - "end": 15641, - "loc": { - "start": { - "line": 151, - "column": 49 - }, - "end": { - "line": 151, - "column": 50 - }, - "identifierName": "k" - }, - "name": "k" - }, - "right": { - "type": "MemberExpression", - "start": 15644, - "end": 15648, - "loc": { - "start": { - "line": 151, - "column": 53 - }, - "end": { - "line": 151, - "column": 57 - } - }, - "object": { - "type": "Identifier", - "start": 15644, - "end": 15645, - "loc": { - "start": { - "line": 151, - "column": 53 - }, - "end": { - "line": 151, - "column": 54 - }, - "identifierName": "k" - }, - "name": "k" - }, - "property": { - "type": "NumericLiteral", - "start": 15646, - "end": 15647, - "loc": { - "start": { - "line": 151, - "column": 55 - }, - "end": { - "line": 151, - "column": 56 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "extra": { - "parenthesized": true, - "parenStart": 15639 - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 15650, - "end": 15657, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 66 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 15650, - "end": 15656, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 65 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15650, - "end": 15651, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 60 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "UnaryExpression", - "start": 15654, - "end": 15656, - "loc": { - "start": { - "line": 151, - "column": 63 - }, - "end": { - "line": 151, - "column": 65 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15655, - "end": 15656, - "loc": { - "start": { - "line": 151, - "column": 64 - }, - "end": { - "line": 151, - "column": 65 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "ForStatement", - "start": 15657, - "end": 15872, - "loc": { - "start": { - "line": 151, - "column": 66 - }, - "end": { - "line": 153, - "column": 11 - } - }, - "init": { - "type": "AssignmentExpression", - "start": 15662, - "end": 15678, - "loc": { - "start": { - "line": 151, - "column": 71 - }, - "end": { - "line": 151, - "column": 87 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15662, - "end": 15663, - "loc": { - "start": { - "line": 151, - "column": 71 - }, - "end": { - "line": 151, - "column": 72 - }, - "identifierName": "o" - }, - "name": "o" - }, - "right": { - "type": "MemberExpression", - "start": 15666, - "end": 15678, - "loc": { - "start": { - "line": 151, - "column": 75 - }, - "end": { - "line": 151, - "column": 87 - } - }, - "object": { - "type": "Identifier", - "start": 15666, - "end": 15667, - "loc": { - "start": { - "line": 151, - "column": 75 - }, - "end": { - "line": 151, - "column": 76 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 15668, - "end": 15678, - "loc": { - "start": { - "line": 151, - "column": 77 - }, - "end": { - "line": 151, - "column": 87 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - } - }, - "test": { - "type": "Identifier", - "start": 15680, - "end": 15681, - "loc": { - "start": { - "line": 151, - "column": 89 - }, - "end": { - "line": 151, - "column": 90 - }, - "identifierName": "o" - }, - "name": "o" - }, - "update": { - "type": "AssignmentExpression", - "start": 15683, - "end": 15699, - "loc": { - "start": { - "line": 151, - "column": 92 - }, - "end": { - "line": 151, - "column": 108 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15683, - "end": 15684, - "loc": { - "start": { - "line": 151, - "column": 92 - }, - "end": { - "line": 151, - "column": 93 - }, - "identifierName": "o" - }, - "name": "o" - }, - "right": { - "type": "MemberExpression", - "start": 15687, - "end": 15699, - "loc": { - "start": { - "line": 151, - "column": 96 - }, - "end": { - "line": 151, - "column": 108 - } - }, - "object": { - "type": "Identifier", - "start": 15687, - "end": 15688, - "loc": { - "start": { - "line": 151, - "column": 96 - }, - "end": { - "line": 151, - "column": 97 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15689, - "end": 15699, - "loc": { - "start": { - "line": 151, - "column": 98 - }, - "end": { - "line": 151, - "column": 108 - }, - "identifierName": "parentNode" - }, - "name": "parentNode" - }, - "computed": false - } - }, - "body": { - "type": "IfStatement", - "start": 15701, - "end": 15872, - "loc": { - "start": { - "line": 151, - "column": 110 - }, - "end": { - "line": 153, - "column": 11 - } - }, - "test": { - "type": "LogicalExpression", - "start": 15705, - "end": 15831, - "loc": { - "start": { - "line": 151, - "column": 114 - }, - "end": { - "line": 151, - "column": 240 - } - }, - "left": { - "type": "LogicalExpression", - "start": 15705, - "end": 15788, - "loc": { - "start": { - "line": 151, - "column": 114 - }, - "end": { - "line": 151, - "column": 197 - } - }, - "left": { - "type": "LogicalExpression", - "start": 15706, - "end": 15772, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 181 - } - }, - "left": { - "type": "LogicalExpression", - "start": 15706, - "end": 15749, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 158 - } - }, - "left": { - "type": "BinaryExpression", - "start": 15706, - "end": 15725, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 134 - } - }, - "left": { - "type": "MemberExpression", - "start": 15706, - "end": 15715, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 124 - } - }, - "object": { - "type": "Identifier", - "start": 15706, - "end": 15707, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 116 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15708, - "end": 15715, - "loc": { - "start": { - "line": 151, - "column": 117 - }, - "end": { - "line": 151, - "column": 124 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 15720, - "end": 15725, - "loc": { - "start": { - "line": 151, - "column": 129 - }, - "end": { - "line": 151, - "column": 134 - } - }, - "extra": { - "rawValue": "pre", - "raw": "\"pre\"" - }, - "value": "pre" - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 15729, - "end": 15749, - "loc": { - "start": { - "line": 151, - "column": 138 - }, - "end": { - "line": 151, - "column": 158 - } - }, - "left": { - "type": "MemberExpression", - "start": 15729, - "end": 15738, - "loc": { - "start": { - "line": 151, - "column": 138 - }, - "end": { - "line": 151, - "column": 147 - } - }, - "object": { - "type": "Identifier", - "start": 15729, - "end": 15730, - "loc": { - "start": { - "line": 151, - "column": 138 - }, - "end": { - "line": 151, - "column": 139 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15731, - "end": 15738, - "loc": { - "start": { - "line": 151, - "column": 140 - }, - "end": { - "line": 151, - "column": 147 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 15743, - "end": 15749, - "loc": { - "start": { - "line": 151, - "column": 152 - }, - "end": { - "line": 151, - "column": 158 - } - }, - "extra": { - "rawValue": "code", - "raw": "\"code\"" - }, - "value": "code" - } - } - }, - "operator": "||", - "right": { - "type": "BinaryExpression", - "start": 15753, - "end": 15772, - "loc": { - "start": { - "line": 151, - "column": 162 - }, - "end": { - "line": 151, - "column": 181 - } - }, - "left": { - "type": "MemberExpression", - "start": 15753, - "end": 15762, - "loc": { - "start": { - "line": 151, - "column": 162 - }, - "end": { - "line": 151, - "column": 171 - } - }, - "object": { - "type": "Identifier", - "start": 15753, - "end": 15754, - "loc": { - "start": { - "line": 151, - "column": 162 - }, - "end": { - "line": 151, - "column": 163 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15755, - "end": 15762, - "loc": { - "start": { - "line": 151, - "column": 164 - }, - "end": { - "line": 151, - "column": 171 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 15767, - "end": 15772, - "loc": { - "start": { - "line": 151, - "column": 176 - }, - "end": { - "line": 151, - "column": 181 - } - }, - "extra": { - "rawValue": "xmp", - "raw": "\"xmp\"" - }, - "value": "xmp" - } - }, - "extra": { - "parenthesized": true, - "parenStart": 15705 - } - }, - "operator": "&&", - "right": { - "type": "MemberExpression", - "start": 15777, - "end": 15788, - "loc": { - "start": { - "line": 151, - "column": 186 - }, - "end": { - "line": 151, - "column": 197 - } - }, - "object": { - "type": "Identifier", - "start": 15777, - "end": 15778, - "loc": { - "start": { - "line": 151, - "column": 186 - }, - "end": { - "line": 151, - "column": 187 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15779, - "end": 15788, - "loc": { - "start": { - "line": 151, - "column": 188 - }, - "end": { - "line": 151, - "column": 197 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - } - }, - "operator": "&&", - "right": { - "type": "BinaryExpression", - "start": 15792, - "end": 15831, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 240 - } - }, - "left": { - "type": "CallExpression", - "start": 15792, - "end": 15826, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 235 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15792, - "end": 15811, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 220 - } - }, - "object": { - "type": "MemberExpression", - "start": 15792, - "end": 15803, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 212 - } - }, - "object": { - "type": "Identifier", - "start": 15792, - "end": 15793, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 202 - }, - "identifierName": "o" - }, - "name": "o" - }, - "property": { - "type": "Identifier", - "start": 15794, - "end": 15803, - "loc": { - "start": { - "line": 151, - "column": 203 - }, - "end": { - "line": 151, - "column": 212 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 15804, - "end": 15811, - "loc": { - "start": { - "line": 151, - "column": 213 - }, - "end": { - "line": 151, - "column": 220 - }, - "identifierName": "indexOf" - }, - "name": "indexOf" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 15812, - "end": 15825, - "loc": { - "start": { - "line": 151, - "column": 221 - }, - "end": { - "line": 151, - "column": 234 - } - }, - "extra": { - "rawValue": "prettyprint", - "raw": "\"prettyprint\"" - }, - "value": "prettyprint" - } - ] - }, - "operator": ">=", - "right": { - "type": "NumericLiteral", - "start": 15830, - "end": 15831, - "loc": { - "start": { - "line": 151, - "column": 239 - }, - "end": { - "line": 151, - "column": 240 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - }, - "consequent": { - "type": "BlockStatement", - "start": 15833, - "end": 15872, - "loc": { - "start": { - "line": 151, - "column": 242 - }, - "end": { - "line": 153, - "column": 11 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 15847, - "end": 15854, - "loc": { - "start": { - "line": 152, - "column": 12 - }, - "end": { - "line": 152, - "column": 19 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 15847, - "end": 15853, - "loc": { - "start": { - "line": 152, - "column": 12 - }, - "end": { - "line": 152, - "column": 18 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15847, - "end": 15848, - "loc": { - "start": { - "line": 152, - "column": 12 - }, - "end": { - "line": 152, - "column": 13 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "UnaryExpression", - "start": 15851, - "end": 15853, - "loc": { - "start": { - "line": 152, - "column": 16 - }, - "end": { - "line": 152, - "column": 18 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15852, - "end": 15853, - "loc": { - "start": { - "line": 152, - "column": 17 - }, - "end": { - "line": 152, - "column": 18 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "BreakStatement", - "start": 15854, - "end": 15860, - "loc": { - "start": { - "line": 152, - "column": 19 - }, - "end": { - "line": 152, - "column": 25 - } - }, - "label": null - } - ], - "directives": [] - }, - "alternate": null - } - }, - { - "type": "ExpressionStatement", - "start": 15872, - "end": 16019, - "loc": { - "start": { - "line": 153, - "column": 11 - }, - "end": { - "line": 153, - "column": 158 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 15872, - "end": 16018, - "loc": { - "start": { - "line": 153, - "column": 11 - }, - "end": { - "line": 153, - "column": 157 - } - }, - "left": { - "type": "Identifier", - "start": 15872, - "end": 15873, - "loc": { - "start": { - "line": 153, - "column": 11 - }, - "end": { - "line": 153, - "column": 12 - }, - "identifierName": "b" - }, - "name": "b" - }, - "operator": "||", - "right": { - "type": "SequenceExpression", - "start": 15878, - "end": 16017, - "loc": { - "start": { - "line": 153, - "column": 17 - }, - "end": { - "line": 153, - "column": 156 - } - }, - "expressions": [ - { - "type": "LogicalExpression", - "start": 15878, - "end": 15985, - "loc": { - "start": { - "line": 153, - "column": 17 - }, - "end": { - "line": 153, - "column": 124 - } - }, - "left": { - "type": "AssignmentExpression", - "start": 15879, - "end": 15973, - "loc": { - "start": { - "line": 153, - "column": 18 - }, - "end": { - "line": 153, - "column": 112 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15879, - "end": 15880, - "loc": { - "start": { - "line": 153, - "column": 18 - }, - "end": { - "line": 153, - "column": 19 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "ConditionalExpression", - "start": 15883, - "end": 15973, - "loc": { - "start": { - "line": 153, - "column": 22 - }, - "end": { - "line": 153, - "column": 112 - } - }, - "test": { - "type": "AssignmentExpression", - "start": 15884, - "end": 15932, - "loc": { - "start": { - "line": 153, - "column": 23 - }, - "end": { - "line": 153, - "column": 71 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15884, - "end": 15885, - "loc": { - "start": { - "line": 153, - "column": 23 - }, - "end": { - "line": 153, - "column": 24 - }, - "identifierName": "b" - }, - "name": "b" - }, - "right": { - "type": "CallExpression", - "start": 15888, - "end": 15932, - "loc": { - "start": { - "line": 153, - "column": 27 - }, - "end": { - "line": 153, - "column": 71 - } - }, - "callee": { - "type": "MemberExpression", - "start": 15888, - "end": 15905, - "loc": { - "start": { - "line": 153, - "column": 27 - }, - "end": { - "line": 153, - "column": 44 - } - }, - "object": { - "type": "MemberExpression", - "start": 15888, - "end": 15899, - "loc": { - "start": { - "line": 153, - "column": 27 - }, - "end": { - "line": 153, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 15888, - "end": 15889, - "loc": { - "start": { - "line": 153, - "column": 27 - }, - "end": { - "line": 153, - "column": 28 - }, - "identifierName": "n" - }, - "name": "n" - }, - "property": { - "type": "Identifier", - "start": 15890, - "end": 15899, - "loc": { - "start": { - "line": 153, - "column": 29 - }, - "end": { - "line": 153, - "column": 38 - }, - "identifierName": "className" - }, - "name": "className" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 15900, - "end": 15905, - "loc": { - "start": { - "line": 153, - "column": 39 - }, - "end": { - "line": 153, - "column": 44 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 15906, - "end": 15931, - "loc": { - "start": { - "line": 153, - "column": 45 - }, - "end": { - "line": 153, - "column": 70 - } - }, - "extra": { - "raw": "/\\blinenums\\b(?::(\\d+))?/" - }, - "pattern": "\\blinenums\\b(?::(\\d+))?", - "flags": "" - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 15883 - } - }, - "consequent": { - "type": "ConditionalExpression", - "start": 15936, - "end": 15968, - "loc": { - "start": { - "line": 153, - "column": 75 - }, - "end": { - "line": 153, - "column": 107 - } - }, - "test": { - "type": "LogicalExpression", - "start": 15936, - "end": 15955, - "loc": { - "start": { - "line": 153, - "column": 75 - }, - "end": { - "line": 153, - "column": 94 - } - }, - "left": { - "type": "MemberExpression", - "start": 15936, - "end": 15940, - "loc": { - "start": { - "line": 153, - "column": 75 - }, - "end": { - "line": 153, - "column": 79 - } - }, - "object": { - "type": "Identifier", - "start": 15936, - "end": 15937, - "loc": { - "start": { - "line": 153, - "column": 75 - }, - "end": { - "line": 153, - "column": 76 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "NumericLiteral", - "start": 15938, - "end": 15939, - "loc": { - "start": { - "line": 153, - "column": 77 - }, - "end": { - "line": 153, - "column": 78 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "operator": "&&", - "right": { - "type": "MemberExpression", - "start": 15944, - "end": 15955, - "loc": { - "start": { - "line": 153, - "column": 83 - }, - "end": { - "line": 153, - "column": 94 - } - }, - "object": { - "type": "MemberExpression", - "start": 15944, - "end": 15948, - "loc": { - "start": { - "line": 153, - "column": 83 - }, - "end": { - "line": 153, - "column": 87 - } - }, - "object": { - "type": "Identifier", - "start": 15944, - "end": 15945, - "loc": { - "start": { - "line": 153, - "column": 83 - }, - "end": { - "line": 153, - "column": 84 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "NumericLiteral", - "start": 15946, - "end": 15947, - "loc": { - "start": { - "line": 153, - "column": 85 - }, - "end": { - "line": 153, - "column": 86 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 15949, - "end": 15955, - "loc": { - "start": { - "line": 153, - "column": 88 - }, - "end": { - "line": 153, - "column": 94 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "consequent": { - "type": "UnaryExpression", - "start": 15958, - "end": 15963, - "loc": { - "start": { - "line": 153, - "column": 97 - }, - "end": { - "line": 153, - "column": 102 - } - }, - "operator": "+", - "prefix": true, - "argument": { - "type": "MemberExpression", - "start": 15959, - "end": 15963, - "loc": { - "start": { - "line": 153, - "column": 98 - }, - "end": { - "line": 153, - "column": 102 - } - }, - "object": { - "type": "Identifier", - "start": 15959, - "end": 15960, - "loc": { - "start": { - "line": 153, - "column": 98 - }, - "end": { - "line": 153, - "column": 99 - }, - "identifierName": "b" - }, - "name": "b" - }, - "property": { - "type": "NumericLiteral", - "start": 15961, - "end": 15962, - "loc": { - "start": { - "line": 153, - "column": 100 - }, - "end": { - "line": 153, - "column": 101 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "extra": { - "parenthesizedArgument": false - } - }, - "alternate": { - "type": "UnaryExpression", - "start": 15966, - "end": 15968, - "loc": { - "start": { - "line": 153, - "column": 105 - }, - "end": { - "line": 153, - "column": 107 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15967, - "end": 15968, - "loc": { - "start": { - "line": 153, - "column": 106 - }, - "end": { - "line": 153, - "column": 107 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "alternate": { - "type": "UnaryExpression", - "start": 15971, - "end": 15973, - "loc": { - "start": { - "line": 153, - "column": 110 - }, - "end": { - "line": 153, - "column": 112 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 15972, - "end": 15973, - "loc": { - "start": { - "line": 153, - "column": 111 - }, - "end": { - "line": 153, - "column": 112 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "extra": { - "parenthesized": true, - "parenStart": 15878 - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 15978, - "end": 15985, - "loc": { - "start": { - "line": 153, - "column": 117 - }, - "end": { - "line": 153, - "column": 124 - } - }, - "callee": { - "type": "Identifier", - "start": 15978, - "end": 15979, - "loc": { - "start": { - "line": 153, - "column": 117 - }, - "end": { - "line": 153, - "column": 118 - }, - "identifierName": "D" - }, - "name": "D" - }, - "arguments": [ - { - "type": "Identifier", - "start": 15980, - "end": 15981, - "loc": { - "start": { - "line": 153, - "column": 119 - }, - "end": { - "line": 153, - "column": 120 - }, - "identifierName": "n" - }, - "name": "n" - }, - { - "type": "Identifier", - "start": 15983, - "end": 15984, - "loc": { - "start": { - "line": 153, - "column": 122 - }, - "end": { - "line": 153, - "column": 123 - }, - "identifierName": "b" - }, - "name": "b" - } - ] - } - }, - { - "type": "AssignmentExpression", - "start": 15987, - "end": 16011, - "loc": { - "start": { - "line": 153, - "column": 126 - }, - "end": { - "line": 153, - "column": 150 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 15987, - "end": 15988, - "loc": { - "start": { - "line": 153, - "column": 126 - }, - "end": { - "line": 153, - "column": 127 - }, - "identifierName": "d" - }, - "name": "d" - }, - "right": { - "type": "ObjectExpression", - "start": 15991, - "end": 16011, - "loc": { - "start": { - "line": 153, - "column": 130 - }, - "end": { - "line": 153, - "column": 150 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 15993, - "end": 15997, - "loc": { - "start": { - "line": 153, - "column": 132 - }, - "end": { - "line": 153, - "column": 136 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 15993, - "end": 15994, - "loc": { - "start": { - "line": 153, - "column": 132 - }, - "end": { - "line": 153, - "column": 133 - }, - "identifierName": "g" - }, - "name": "g" - }, - "value": { - "type": "Identifier", - "start": 15996, - "end": 15997, - "loc": { - "start": { - "line": 153, - "column": 135 - }, - "end": { - "line": 153, - "column": 136 - }, - "identifierName": "k" - }, - "name": "k" - } - }, - { - "type": "ObjectProperty", - "start": 15999, - "end": 16003, - "loc": { - "start": { - "line": 153, - "column": 138 - }, - "end": { - "line": 153, - "column": 142 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 15999, - "end": 16000, - "loc": { - "start": { - "line": 153, - "column": 138 - }, - "end": { - "line": 153, - "column": 139 - }, - "identifierName": "h" - }, - "name": "h" - }, - "value": { - "type": "Identifier", - "start": 16002, - "end": 16003, - "loc": { - "start": { - "line": 153, - "column": 141 - }, - "end": { - "line": 153, - "column": 142 - }, - "identifierName": "n" - }, - "name": "n" - } - }, - { - "type": "ObjectProperty", - "start": 16005, - "end": 16009, - "loc": { - "start": { - "line": 153, - "column": 144 - }, - "end": { - "line": 153, - "column": 148 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16005, - "end": 16006, - "loc": { - "start": { - "line": 153, - "column": 144 - }, - "end": { - "line": 153, - "column": 145 - }, - "identifierName": "i" - }, - "name": "i" - }, - "value": { - "type": "Identifier", - "start": 16008, - "end": 16009, - "loc": { - "start": { - "line": 153, - "column": 147 - }, - "end": { - "line": 153, - "column": 148 - }, - "identifierName": "b" - }, - "name": "b" - } - } - ] - } - }, - { - "type": "CallExpression", - "start": 16013, - "end": 16017, - "loc": { - "start": { - "line": 153, - "column": 152 - }, - "end": { - "line": 153, - "column": 156 - } - }, - "callee": { - "type": "Identifier", - "start": 16013, - "end": 16014, - "loc": { - "start": { - "line": 153, - "column": 152 - }, - "end": { - "line": 153, - "column": 153 - }, - "identifierName": "E" - }, - "name": "E" - }, - "arguments": [ - { - "type": "Identifier", - "start": 16015, - "end": 16016, - "loc": { - "start": { - "line": 153, - "column": 154 - }, - "end": { - "line": 153, - "column": 155 - }, - "identifierName": "d" - }, - "name": "d" - } - ] - } - ], - "extra": { - "parenthesized": true, - "parenStart": 15877 - } - } - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 16037, - "end": 16082, - "loc": { - "start": { - "line": 155, - "column": 7 - }, - "end": { - "line": 155, - "column": 52 - } - }, - "expression": { - "type": "ConditionalExpression", - "start": 16037, - "end": 16081, - "loc": { - "start": { - "line": 155, - "column": 7 - }, - "end": { - "line": 155, - "column": 51 - } - }, - "test": { - "type": "BinaryExpression", - "start": 16037, - "end": 16049, - "loc": { - "start": { - "line": 155, - "column": 7 - }, - "end": { - "line": 155, - "column": 19 - } - }, - "left": { - "type": "Identifier", - "start": 16037, - "end": 16038, - "loc": { - "start": { - "line": 155, - "column": 7 - }, - "end": { - "line": 155, - "column": 8 - }, - "identifierName": "p" - }, - "name": "p" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 16041, - "end": 16049, - "loc": { - "start": { - "line": 155, - "column": 11 - }, - "end": { - "line": 155, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 16041, - "end": 16042, - "loc": { - "start": { - "line": 155, - "column": 11 - }, - "end": { - "line": 155, - "column": 12 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 16043, - "end": 16049, - "loc": { - "start": { - "line": 155, - "column": 13 - }, - "end": { - "line": 155, - "column": 19 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "consequent": { - "type": "CallExpression", - "start": 16052, - "end": 16070, - "loc": { - "start": { - "line": 155, - "column": 22 - }, - "end": { - "line": 155, - "column": 40 - } - }, - "callee": { - "type": "Identifier", - "start": 16052, - "end": 16062, - "loc": { - "start": { - "line": 155, - "column": 22 - }, - "end": { - "line": 155, - "column": 32 - }, - "identifierName": "setTimeout" - }, - "name": "setTimeout" - }, - "arguments": [ - { - "type": "Identifier", - "start": 16063, - "end": 16064, - "loc": { - "start": { - "line": 155, - "column": 33 - }, - "end": { - "line": 155, - "column": 34 - }, - "identifierName": "m" - }, - "name": "m" - }, - { - "type": "NumericLiteral", - "start": 16066, - "end": 16069, - "loc": { - "start": { - "line": 155, - "column": 36 - }, - "end": { - "line": 155, - "column": 39 - } - }, - "extra": { - "rawValue": 250, - "raw": "250" - }, - "value": 250 - } - ] - }, - "alternate": { - "type": "LogicalExpression", - "start": 16073, - "end": 16081, - "loc": { - "start": { - "line": 155, - "column": 43 - }, - "end": { - "line": 155, - "column": 51 - } - }, - "left": { - "type": "Identifier", - "start": 16073, - "end": 16074, - "loc": { - "start": { - "line": 155, - "column": 43 - }, - "end": { - "line": 155, - "column": 44 - }, - "identifierName": "a" - }, - "name": "a" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 16078, - "end": 16081, - "loc": { - "start": { - "line": 155, - "column": 48 - }, - "end": { - "line": 155, - "column": 51 - } - }, - "callee": { - "type": "Identifier", - "start": 16078, - "end": 16079, - "loc": { - "start": { - "line": 155, - "column": 48 - }, - "end": { - "line": 155, - "column": 49 - }, - "identifierName": "a" - }, - "name": "a" - }, - "arguments": [] - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "ForStatement", - "start": 16088, - "end": 16313, - "loc": { - "start": { - "line": 156, - "column": 5 - }, - "end": { - "line": 156, - "column": 230 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 16093, - "end": 16231, - "loc": { - "start": { - "line": 156, - "column": 10 - }, - "end": { - "line": 156, - "column": 148 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 16097, - "end": 16216, - "loc": { - "start": { - "line": 156, - "column": 14 - }, - "end": { - "line": 156, - "column": 133 - } - }, - "id": { - "type": "Identifier", - "start": 16097, - "end": 16098, - "loc": { - "start": { - "line": 156, - "column": 14 - }, - "end": { - "line": 156, - "column": 15 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "ArrayExpression", - "start": 16101, - "end": 16216, - "loc": { - "start": { - "line": 156, - "column": 18 - }, - "end": { - "line": 156, - "column": 133 - } - }, - "elements": [ - { - "type": "CallExpression", - "start": 16102, - "end": 16138, - "loc": { - "start": { - "line": 156, - "column": 19 - }, - "end": { - "line": 156, - "column": 55 - } - }, - "callee": { - "type": "MemberExpression", - "start": 16102, - "end": 16131, - "loc": { - "start": { - "line": 156, - "column": 19 - }, - "end": { - "line": 156, - "column": 48 - } - }, - "object": { - "type": "Identifier", - "start": 16102, - "end": 16110, - "loc": { - "start": { - "line": 156, - "column": 19 - }, - "end": { - "line": 156, - "column": 27 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 16111, - "end": 16131, - "loc": { - "start": { - "line": 156, - "column": 28 - }, - "end": { - "line": 156, - "column": 48 - }, - "identifierName": "getElementsByTagName" - }, - "name": "getElementsByTagName" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 16132, - "end": 16137, - "loc": { - "start": { - "line": 156, - "column": 49 - }, - "end": { - "line": 156, - "column": 54 - } - }, - "extra": { - "rawValue": "pre", - "raw": "\"pre\"" - }, - "value": "pre" - } - ] - }, - { - "type": "CallExpression", - "start": 16140, - "end": 16177, - "loc": { - "start": { - "line": 156, - "column": 57 - }, - "end": { - "line": 156, - "column": 94 - } - }, - "callee": { - "type": "MemberExpression", - "start": 16140, - "end": 16169, - "loc": { - "start": { - "line": 156, - "column": 57 - }, - "end": { - "line": 156, - "column": 86 - } - }, - "object": { - "type": "Identifier", - "start": 16140, - "end": 16148, - "loc": { - "start": { - "line": 156, - "column": 57 - }, - "end": { - "line": 156, - "column": 65 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 16149, - "end": 16169, - "loc": { - "start": { - "line": 156, - "column": 66 - }, - "end": { - "line": 156, - "column": 86 - }, - "identifierName": "getElementsByTagName" - }, - "name": "getElementsByTagName" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 16170, - "end": 16176, - "loc": { - "start": { - "line": 156, - "column": 87 - }, - "end": { - "line": 156, - "column": 93 - } - }, - "extra": { - "rawValue": "code", - "raw": "\"code\"" - }, - "value": "code" - } - ] - }, - { - "type": "CallExpression", - "start": 16179, - "end": 16215, - "loc": { - "start": { - "line": 156, - "column": 96 - }, - "end": { - "line": 156, - "column": 132 - } - }, - "callee": { - "type": "MemberExpression", - "start": 16179, - "end": 16208, - "loc": { - "start": { - "line": 156, - "column": 96 - }, - "end": { - "line": 156, - "column": 125 - } - }, - "object": { - "type": "Identifier", - "start": 16179, - "end": 16187, - "loc": { - "start": { - "line": 156, - "column": 96 - }, - "end": { - "line": 156, - "column": 104 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 16188, - "end": 16208, - "loc": { - "start": { - "line": 156, - "column": 105 - }, - "end": { - "line": 156, - "column": 125 - }, - "identifierName": "getElementsByTagName" - }, - "name": "getElementsByTagName" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 16209, - "end": 16214, - "loc": { - "start": { - "line": 156, - "column": 126 - }, - "end": { - "line": 156, - "column": 131 - } - }, - "extra": { - "rawValue": "xmp", - "raw": "\"xmp\"" - }, - "value": "xmp" - } - ] - } - ] - } - }, - { - "type": "VariableDeclarator", - "start": 16218, - "end": 16224, - "loc": { - "start": { - "line": 156, - "column": 135 - }, - "end": { - "line": 156, - "column": 141 - } - }, - "id": { - "type": "Identifier", - "start": 16218, - "end": 16219, - "loc": { - "start": { - "line": 156, - "column": 135 - }, - "end": { - "line": 156, - "column": 136 - }, - "identifierName": "h" - }, - "name": "h" - }, - "init": { - "type": "ArrayExpression", - "start": 16222, - "end": 16224, - "loc": { - "start": { - "line": 156, - "column": 139 - }, - "end": { - "line": 156, - "column": 141 - } - }, - "elements": [] - } - }, - { - "type": "VariableDeclarator", - "start": 16226, - "end": 16231, - "loc": { - "start": { - "line": 156, - "column": 143 - }, - "end": { - "line": 156, - "column": 148 - } - }, - "id": { - "type": "Identifier", - "start": 16226, - "end": 16227, - "loc": { - "start": { - "line": 156, - "column": 143 - }, - "end": { - "line": 156, - "column": 144 - }, - "identifierName": "k" - }, - "name": "k" - }, - "init": { - "type": "NumericLiteral", - "start": 16230, - "end": 16231, - "loc": { - "start": { - "line": 156, - "column": 147 - }, - "end": { - "line": 156, - "column": 148 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 16233, - "end": 16245, - "loc": { - "start": { - "line": 156, - "column": 150 - }, - "end": { - "line": 156, - "column": 162 - } - }, - "left": { - "type": "Identifier", - "start": 16233, - "end": 16234, - "loc": { - "start": { - "line": 156, - "column": 150 - }, - "end": { - "line": 156, - "column": 151 - }, - "identifierName": "k" - }, - "name": "k" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 16237, - "end": 16245, - "loc": { - "start": { - "line": 156, - "column": 154 - }, - "end": { - "line": 156, - "column": 162 - } - }, - "object": { - "type": "Identifier", - "start": 16237, - "end": 16238, - "loc": { - "start": { - "line": 156, - "column": 154 - }, - "end": { - "line": 156, - "column": 155 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 16239, - "end": 16245, - "loc": { - "start": { - "line": 156, - "column": 156 - }, - "end": { - "line": 156, - "column": 162 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 16247, - "end": 16250, - "loc": { - "start": { - "line": 156, - "column": 164 - }, - "end": { - "line": 156, - "column": 167 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 16249, - "end": 16250, - "loc": { - "start": { - "line": 156, - "column": 166 - }, - "end": { - "line": 156, - "column": 167 - }, - "identifierName": "k" - }, - "name": "k" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ForStatement", - "start": 16252, - "end": 16313, - "loc": { - "start": { - "line": 156, - "column": 169 - }, - "end": { - "line": 156, - "column": 230 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 16257, - "end": 16283, - "loc": { - "start": { - "line": 156, - "column": 174 - }, - "end": { - "line": 156, - "column": 200 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 16261, - "end": 16266, - "loc": { - "start": { - "line": 156, - "column": 178 - }, - "end": { - "line": 156, - "column": 183 - } - }, - "id": { - "type": "Identifier", - "start": 16261, - "end": 16262, - "loc": { - "start": { - "line": 156, - "column": 178 - }, - "end": { - "line": 156, - "column": 179 - }, - "identifierName": "t" - }, - "name": "t" - }, - "init": { - "type": "NumericLiteral", - "start": 16265, - "end": 16266, - "loc": { - "start": { - "line": 156, - "column": 182 - }, - "end": { - "line": 156, - "column": 183 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 16268, - "end": 16283, - "loc": { - "start": { - "line": 156, - "column": 185 - }, - "end": { - "line": 156, - "column": 200 - } - }, - "id": { - "type": "Identifier", - "start": 16268, - "end": 16269, - "loc": { - "start": { - "line": 156, - "column": 185 - }, - "end": { - "line": 156, - "column": 186 - }, - "identifierName": "s" - }, - "name": "s" - }, - "init": { - "type": "MemberExpression", - "start": 16272, - "end": 16283, - "loc": { - "start": { - "line": 156, - "column": 189 - }, - "end": { - "line": 156, - "column": 200 - } - }, - "object": { - "type": "MemberExpression", - "start": 16272, - "end": 16276, - "loc": { - "start": { - "line": 156, - "column": 189 - }, - "end": { - "line": 156, - "column": 193 - } - }, - "object": { - "type": "Identifier", - "start": 16272, - "end": 16273, - "loc": { - "start": { - "line": 156, - "column": 189 - }, - "end": { - "line": 156, - "column": 190 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 16274, - "end": 16275, - "loc": { - "start": { - "line": 156, - "column": 191 - }, - "end": { - "line": 156, - "column": 192 - }, - "identifierName": "k" - }, - "name": "k" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 16277, - "end": 16283, - "loc": { - "start": { - "line": 156, - "column": 194 - }, - "end": { - "line": 156, - "column": 200 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 16285, - "end": 16290, - "loc": { - "start": { - "line": 156, - "column": 202 - }, - "end": { - "line": 156, - "column": 207 - } - }, - "left": { - "type": "Identifier", - "start": 16285, - "end": 16286, - "loc": { - "start": { - "line": 156, - "column": 202 - }, - "end": { - "line": 156, - "column": 203 - }, - "identifierName": "t" - }, - "name": "t" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 16289, - "end": 16290, - "loc": { - "start": { - "line": 156, - "column": 206 - }, - "end": { - "line": 156, - "column": 207 - }, - "identifierName": "s" - }, - "name": "s" - } - }, - "update": { - "type": "UpdateExpression", - "start": 16292, - "end": 16295, - "loc": { - "start": { - "line": 156, - "column": 209 - }, - "end": { - "line": 156, - "column": 212 - } - }, - "operator": "++", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 16294, - "end": 16295, - "loc": { - "start": { - "line": 156, - "column": 211 - }, - "end": { - "line": 156, - "column": 212 - }, - "identifierName": "t" - }, - "name": "t" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "body": { - "type": "ExpressionStatement", - "start": 16297, - "end": 16313, - "loc": { - "start": { - "line": 156, - "column": 214 - }, - "end": { - "line": 156, - "column": 230 - } - }, - "expression": { - "type": "CallExpression", - "start": 16297, - "end": 16312, - "loc": { - "start": { - "line": 156, - "column": 214 - }, - "end": { - "line": 156, - "column": 229 - } - }, - "callee": { - "type": "MemberExpression", - "start": 16297, - "end": 16303, - "loc": { - "start": { - "line": 156, - "column": 214 - }, - "end": { - "line": 156, - "column": 220 - } - }, - "object": { - "type": "Identifier", - "start": 16297, - "end": 16298, - "loc": { - "start": { - "line": 156, - "column": 214 - }, - "end": { - "line": 156, - "column": 215 - }, - "identifierName": "h" - }, - "name": "h" - }, - "property": { - "type": "Identifier", - "start": 16299, - "end": 16303, - "loc": { - "start": { - "line": 156, - "column": 216 - }, - "end": { - "line": 156, - "column": 220 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 16304, - "end": 16311, - "loc": { - "start": { - "line": 156, - "column": 221 - }, - "end": { - "line": 156, - "column": 228 - } - }, - "object": { - "type": "MemberExpression", - "start": 16304, - "end": 16308, - "loc": { - "start": { - "line": 156, - "column": 221 - }, - "end": { - "line": 156, - "column": 225 - } - }, - "object": { - "type": "Identifier", - "start": 16304, - "end": 16305, - "loc": { - "start": { - "line": 156, - "column": 221 - }, - "end": { - "line": 156, - "column": 222 - }, - "identifierName": "e" - }, - "name": "e" - }, - "property": { - "type": "Identifier", - "start": 16306, - "end": 16307, - "loc": { - "start": { - "line": 156, - "column": 223 - }, - "end": { - "line": 156, - "column": 224 - }, - "identifierName": "k" - }, - "name": "k" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 16309, - "end": 16310, - "loc": { - "start": { - "line": 156, - "column": 226 - }, - "end": { - "line": 156, - "column": 227 - }, - "identifierName": "t" - }, - "name": "t" - }, - "computed": true - } - ] - } - } - } - }, - { - "type": "VariableDeclaration", - "start": 16313, - "end": 16341, - "loc": { - "start": { - "line": 156, - "column": 230 - }, - "end": { - "line": 157, - "column": 17 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 16317, - "end": 16322, - "loc": { - "start": { - "line": 156, - "column": 234 - }, - "end": { - "line": 156, - "column": 239 - } - }, - "id": { - "type": "Identifier", - "start": 16317, - "end": 16318, - "loc": { - "start": { - "line": 156, - "column": 234 - }, - "end": { - "line": 156, - "column": 235 - }, - "identifierName": "e" - }, - "name": "e" - }, - "init": { - "type": "Identifier", - "start": 16321, - "end": 16322, - "loc": { - "start": { - "line": 156, - "column": 238 - }, - "end": { - "line": 156, - "column": 239 - }, - "identifierName": "q" - }, - "name": "q" - } - }, - { - "type": "VariableDeclarator", - "start": 16332, - "end": 16340, - "loc": { - "start": { - "line": 157, - "column": 8 - }, - "end": { - "line": 157, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 16332, - "end": 16333, - "loc": { - "start": { - "line": 157, - "column": 8 - }, - "end": { - "line": 157, - "column": 9 - }, - "identifierName": "l" - }, - "name": "l" - }, - "init": { - "type": "Identifier", - "start": 16336, - "end": 16340, - "loc": { - "start": { - "line": 157, - "column": 12 - }, - "end": { - "line": 157, - "column": 16 - }, - "identifierName": "Date" - }, - "name": "Date" - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 16341, - "end": 16415, - "loc": { - "start": { - "line": 157, - "column": 17 - }, - "end": { - "line": 159, - "column": 11 - } - }, - "expression": { - "type": "LogicalExpression", - "start": 16341, - "end": 16414, - "loc": { - "start": { - "line": 157, - "column": 17 - }, - "end": { - "line": 159, - "column": 10 - } - }, - "left": { - "type": "MemberExpression", - "start": 16341, - "end": 16346, - "loc": { - "start": { - "line": 157, - "column": 17 - }, - "end": { - "line": 157, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 16341, - "end": 16342, - "loc": { - "start": { - "line": 157, - "column": 17 - }, - "end": { - "line": 157, - "column": 18 - }, - "identifierName": "l" - }, - "name": "l" - }, - "property": { - "type": "Identifier", - "start": 16343, - "end": 16346, - "loc": { - "start": { - "line": 157, - "column": 19 - }, - "end": { - "line": 157, - "column": 22 - }, - "identifierName": "now" - }, - "name": "now" - }, - "computed": false - }, - "operator": "||", - "right": { - "type": "AssignmentExpression", - "start": 16351, - "end": 16413, - "loc": { - "start": { - "line": 157, - "column": 27 - }, - "end": { - "line": 159, - "column": 9 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 16351, - "end": 16352, - "loc": { - "start": { - "line": 157, - "column": 27 - }, - "end": { - "line": 157, - "column": 28 - }, - "identifierName": "l" - }, - "name": "l" - }, - "right": { - "type": "ObjectExpression", - "start": 16355, - "end": 16413, - "loc": { - "start": { - "line": 157, - "column": 31 - }, - "end": { - "line": 159, - "column": 9 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 16357, - "end": 16411, - "loc": { - "start": { - "line": 157, - "column": 33 - }, - "end": { - "line": 159, - "column": 7 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16357, - "end": 16360, - "loc": { - "start": { - "line": 157, - "column": 33 - }, - "end": { - "line": 157, - "column": 36 - }, - "identifierName": "now" - }, - "name": "now" - }, - "value": { - "type": "FunctionExpression", - "start": 16362, - "end": 16411, - "loc": { - "start": { - "line": 157, - "column": 38 - }, - "end": { - "line": 159, - "column": 7 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 16374, - "end": 16411, - "loc": { - "start": { - "line": 157, - "column": 50 - }, - "end": { - "line": 159, - "column": 7 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 16384, - "end": 16403, - "loc": { - "start": { - "line": 158, - "column": 8 - }, - "end": { - "line": 158, - "column": 27 - } - }, - "argument": { - "type": "UnaryExpression", - "start": 16391, - "end": 16402, - "loc": { - "start": { - "line": 158, - "column": 15 - }, - "end": { - "line": 158, - "column": 26 - } - }, - "operator": "+", - "prefix": true, - "argument": { - "type": "NewExpression", - "start": 16392, - "end": 16402, - "loc": { - "start": { - "line": 158, - "column": 16 - }, - "end": { - "line": 158, - "column": 26 - } - }, - "callee": { - "type": "Identifier", - "start": 16396, - "end": 16400, - "loc": { - "start": { - "line": 158, - "column": 20 - }, - "end": { - "line": 158, - "column": 24 - }, - "identifierName": "Date" - }, - "name": "Date" - }, - "arguments": [] - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ], - "directives": [] - } - } - } - ] - }, - "extra": { - "parenthesized": true, - "parenStart": 16350 - } - } - } - }, - { - "type": "VariableDeclaration", - "start": 16415, - "end": 16482, - "loc": { - "start": { - "line": 159, - "column": 11 - }, - "end": { - "line": 161, - "column": 45 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 16419, - "end": 16424, - "loc": { - "start": { - "line": 159, - "column": 15 - }, - "end": { - "line": 159, - "column": 20 - } - }, - "id": { - "type": "Identifier", - "start": 16419, - "end": 16420, - "loc": { - "start": { - "line": 159, - "column": 15 - }, - "end": { - "line": 159, - "column": 16 - }, - "identifierName": "p" - }, - "name": "p" - }, - "init": { - "type": "NumericLiteral", - "start": 16423, - "end": 16424, - "loc": { - "start": { - "line": 159, - "column": 19 - }, - "end": { - "line": 159, - "column": 20 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - }, - { - "type": "VariableDeclarator", - "start": 16434, - "end": 16435, - "loc": { - "start": { - "line": 160, - "column": 8 - }, - "end": { - "line": 160, - "column": 9 - } - }, - "id": { - "type": "Identifier", - "start": 16434, - "end": 16435, - "loc": { - "start": { - "line": 160, - "column": 8 - }, - "end": { - "line": 160, - "column": 9 - }, - "identifierName": "d" - }, - "name": "d" - }, - "init": null - }, - { - "type": "VariableDeclarator", - "start": 16445, - "end": 16481, - "loc": { - "start": { - "line": 161, - "column": 8 - }, - "end": { - "line": 161, - "column": 44 - } - }, - "id": { - "type": "Identifier", - "start": 16445, - "end": 16446, - "loc": { - "start": { - "line": 161, - "column": 8 - }, - "end": { - "line": 161, - "column": 9 - }, - "identifierName": "g" - }, - "name": "g" - }, - "init": { - "type": "RegExpLiteral", - "start": 16449, - "end": 16481, - "loc": { - "start": { - "line": 161, - "column": 12 - }, - "end": { - "line": 161, - "column": 44 - } - }, - "extra": { - "raw": "/\\blang(?:uage)?-([\\w.]+)(?!\\S)/" - }, - "pattern": "\\blang(?:uage)?-([\\w.]+)(?!\\S)", - "flags": "" - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 16482, - "end": 16486, - "loc": { - "start": { - "line": 161, - "column": 45 - }, - "end": { - "line": 161, - "column": 49 - } - }, - "expression": { - "type": "CallExpression", - "start": 16482, - "end": 16485, - "loc": { - "start": { - "line": 161, - "column": 45 - }, - "end": { - "line": 161, - "column": 48 - } - }, - "callee": { - "type": "Identifier", - "start": 16482, - "end": 16483, - "loc": { - "start": { - "line": 161, - "column": 45 - }, - "end": { - "line": 161, - "column": 46 - }, - "identifierName": "m" - }, - "name": "m" - }, - "arguments": [] - } - } - ], - "directives": [] - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 16491, - "end": 16831, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 163, - "column": 133 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 16491, - "end": 16830, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 163, - "column": 132 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 16491, - "end": 16500, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 162, - "column": 13 - } - }, - "object": { - "type": "Identifier", - "start": 16491, - "end": 16497, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 162, - "column": 10 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 16498, - "end": 16500, - "loc": { - "start": { - "line": 162, - "column": 11 - }, - "end": { - "line": 162, - "column": 13 - }, - "identifierName": "PR" - }, - "name": "PR" - }, - "computed": false - }, - "right": { - "type": "ObjectExpression", - "start": 16503, - "end": 16830, - "loc": { - "start": { - "line": 162, - "column": 16 - }, - "end": { - "line": 163, - "column": 132 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 16505, - "end": 16525, - "loc": { - "start": { - "line": 162, - "column": 18 - }, - "end": { - "line": 162, - "column": 38 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16505, - "end": 16522, - "loc": { - "start": { - "line": 162, - "column": 18 - }, - "end": { - "line": 162, - "column": 35 - }, - "identifierName": "createSimpleLexer" - }, - "name": "createSimpleLexer" - }, - "value": { - "type": "Identifier", - "start": 16524, - "end": 16525, - "loc": { - "start": { - "line": 162, - "column": 37 - }, - "end": { - "line": 162, - "column": 38 - }, - "identifierName": "x" - }, - "name": "x" - } - }, - { - "type": "ObjectProperty", - "start": 16527, - "end": 16549, - "loc": { - "start": { - "line": 162, - "column": 40 - }, - "end": { - "line": 162, - "column": 62 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16527, - "end": 16546, - "loc": { - "start": { - "line": 162, - "column": 40 - }, - "end": { - "line": 162, - "column": 59 - }, - "identifierName": "registerLangHandler" - }, - "name": "registerLangHandler" - }, - "value": { - "type": "Identifier", - "start": 16548, - "end": 16549, - "loc": { - "start": { - "line": 162, - "column": 61 - }, - "end": { - "line": 162, - "column": 62 - }, - "identifierName": "k" - }, - "name": "k" - } - }, - { - "type": "ObjectProperty", - "start": 16551, - "end": 16569, - "loc": { - "start": { - "line": 162, - "column": 64 - }, - "end": { - "line": 162, - "column": 82 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16551, - "end": 16566, - "loc": { - "start": { - "line": 162, - "column": 64 - }, - "end": { - "line": 162, - "column": 79 - }, - "identifierName": "sourceDecorator" - }, - "name": "sourceDecorator" - }, - "value": { - "type": "Identifier", - "start": 16568, - "end": 16569, - "loc": { - "start": { - "line": 162, - "column": 81 - }, - "end": { - "line": 162, - "column": 82 - }, - "identifierName": "u" - }, - "name": "u" - } - }, - { - "type": "ObjectProperty", - "start": 16571, - "end": 16592, - "loc": { - "start": { - "line": 162, - "column": 84 - }, - "end": { - "line": 162, - "column": 105 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16571, - "end": 16585, - "loc": { - "start": { - "line": 162, - "column": 84 - }, - "end": { - "line": 162, - "column": 98 - }, - "identifierName": "PR_ATTRIB_NAME" - }, - "name": "PR_ATTRIB_NAME" - }, - "value": { - "type": "StringLiteral", - "start": 16587, - "end": 16592, - "loc": { - "start": { - "line": 162, - "column": 100 - }, - "end": { - "line": 162, - "column": 105 - } - }, - "extra": { - "rawValue": "atn", - "raw": "\"atn\"" - }, - "value": "atn" - } - }, - { - "type": "ObjectProperty", - "start": 16594, - "end": 16616, - "loc": { - "start": { - "line": 162, - "column": 107 - }, - "end": { - "line": 162, - "column": 129 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16594, - "end": 16609, - "loc": { - "start": { - "line": 162, - "column": 107 - }, - "end": { - "line": 162, - "column": 122 - }, - "identifierName": "PR_ATTRIB_VALUE" - }, - "name": "PR_ATTRIB_VALUE" - }, - "value": { - "type": "StringLiteral", - "start": 16611, - "end": 16616, - "loc": { - "start": { - "line": 162, - "column": 124 - }, - "end": { - "line": 162, - "column": 129 - } - }, - "extra": { - "rawValue": "atv", - "raw": "\"atv\"" - }, - "value": "atv" - } - }, - { - "type": "ObjectProperty", - "start": 16618, - "end": 16635, - "loc": { - "start": { - "line": 162, - "column": 131 - }, - "end": { - "line": 162, - "column": 148 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16618, - "end": 16628, - "loc": { - "start": { - "line": 162, - "column": 131 - }, - "end": { - "line": 162, - "column": 141 - }, - "identifierName": "PR_COMMENT" - }, - "name": "PR_COMMENT" - }, - "value": { - "type": "StringLiteral", - "start": 16630, - "end": 16635, - "loc": { - "start": { - "line": 162, - "column": 143 - }, - "end": { - "line": 162, - "column": 148 - } - }, - "extra": { - "rawValue": "com", - "raw": "\"com\"" - }, - "value": "com" - } - }, - { - "type": "ObjectProperty", - "start": 16637, - "end": 16658, - "loc": { - "start": { - "line": 162, - "column": 150 - }, - "end": { - "line": 162, - "column": 171 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16637, - "end": 16651, - "loc": { - "start": { - "line": 162, - "column": 150 - }, - "end": { - "line": 162, - "column": 164 - }, - "identifierName": "PR_DECLARATION" - }, - "name": "PR_DECLARATION" - }, - "value": { - "type": "StringLiteral", - "start": 16653, - "end": 16658, - "loc": { - "start": { - "line": 162, - "column": 166 - }, - "end": { - "line": 162, - "column": 171 - } - }, - "extra": { - "rawValue": "dec", - "raw": "\"dec\"" - }, - "value": "dec" - } - }, - { - "type": "ObjectProperty", - "start": 16660, - "end": 16677, - "loc": { - "start": { - "line": 162, - "column": 173 - }, - "end": { - "line": 162, - "column": 190 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16660, - "end": 16670, - "loc": { - "start": { - "line": 162, - "column": 173 - }, - "end": { - "line": 162, - "column": 183 - }, - "identifierName": "PR_KEYWORD" - }, - "name": "PR_KEYWORD" - }, - "value": { - "type": "StringLiteral", - "start": 16672, - "end": 16677, - "loc": { - "start": { - "line": 162, - "column": 185 - }, - "end": { - "line": 162, - "column": 190 - } - }, - "extra": { - "rawValue": "kwd", - "raw": "\"kwd\"" - }, - "value": "kwd" - } - }, - { - "type": "ObjectProperty", - "start": 16679, - "end": 16696, - "loc": { - "start": { - "line": 162, - "column": 192 - }, - "end": { - "line": 162, - "column": 209 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16679, - "end": 16689, - "loc": { - "start": { - "line": 162, - "column": 192 - }, - "end": { - "line": 162, - "column": 202 - }, - "identifierName": "PR_LITERAL" - }, - "name": "PR_LITERAL" - }, - "value": { - "type": "StringLiteral", - "start": 16691, - "end": 16696, - "loc": { - "start": { - "line": 162, - "column": 204 - }, - "end": { - "line": 162, - "column": 209 - } - }, - "extra": { - "rawValue": "lit", - "raw": "\"lit\"" - }, - "value": "lit" - } - }, - { - "type": "ObjectProperty", - "start": 16702, - "end": 16721, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 23 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16702, - "end": 16711, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 13 - }, - "identifierName": "PR_NOCODE" - }, - "name": "PR_NOCODE" - }, - "value": { - "type": "StringLiteral", - "start": 16713, - "end": 16721, - "loc": { - "start": { - "line": 163, - "column": 15 - }, - "end": { - "line": 163, - "column": 23 - } - }, - "extra": { - "rawValue": "nocode", - "raw": "\"nocode\"" - }, - "value": "nocode" - } - }, - { - "type": "ObjectProperty", - "start": 16723, - "end": 16738, - "loc": { - "start": { - "line": 163, - "column": 25 - }, - "end": { - "line": 163, - "column": 40 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16723, - "end": 16731, - "loc": { - "start": { - "line": 163, - "column": 25 - }, - "end": { - "line": 163, - "column": 33 - }, - "identifierName": "PR_PLAIN" - }, - "name": "PR_PLAIN" - }, - "value": { - "type": "StringLiteral", - "start": 16733, - "end": 16738, - "loc": { - "start": { - "line": 163, - "column": 35 - }, - "end": { - "line": 163, - "column": 40 - } - }, - "extra": { - "rawValue": "pln", - "raw": "\"pln\"" - }, - "value": "pln" - } - }, - { - "type": "ObjectProperty", - "start": 16740, - "end": 16761, - "loc": { - "start": { - "line": 163, - "column": 42 - }, - "end": { - "line": 163, - "column": 63 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16740, - "end": 16754, - "loc": { - "start": { - "line": 163, - "column": 42 - }, - "end": { - "line": 163, - "column": 56 - }, - "identifierName": "PR_PUNCTUATION" - }, - "name": "PR_PUNCTUATION" - }, - "value": { - "type": "StringLiteral", - "start": 16756, - "end": 16761, - "loc": { - "start": { - "line": 163, - "column": 58 - }, - "end": { - "line": 163, - "column": 63 - } - }, - "extra": { - "rawValue": "pun", - "raw": "\"pun\"" - }, - "value": "pun" - } - }, - { - "type": "ObjectProperty", - "start": 16763, - "end": 16779, - "loc": { - "start": { - "line": 163, - "column": 65 - }, - "end": { - "line": 163, - "column": 81 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16763, - "end": 16772, - "loc": { - "start": { - "line": 163, - "column": 65 - }, - "end": { - "line": 163, - "column": 74 - }, - "identifierName": "PR_SOURCE" - }, - "name": "PR_SOURCE" - }, - "value": { - "type": "StringLiteral", - "start": 16774, - "end": 16779, - "loc": { - "start": { - "line": 163, - "column": 76 - }, - "end": { - "line": 163, - "column": 81 - } - }, - "extra": { - "rawValue": "src", - "raw": "\"src\"" - }, - "value": "src" - } - }, - { - "type": "ObjectProperty", - "start": 16781, - "end": 16797, - "loc": { - "start": { - "line": 163, - "column": 83 - }, - "end": { - "line": 163, - "column": 99 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16781, - "end": 16790, - "loc": { - "start": { - "line": 163, - "column": 83 - }, - "end": { - "line": 163, - "column": 92 - }, - "identifierName": "PR_STRING" - }, - "name": "PR_STRING" - }, - "value": { - "type": "StringLiteral", - "start": 16792, - "end": 16797, - "loc": { - "start": { - "line": 163, - "column": 94 - }, - "end": { - "line": 163, - "column": 99 - } - }, - "extra": { - "rawValue": "str", - "raw": "\"str\"" - }, - "value": "str" - } - }, - { - "type": "ObjectProperty", - "start": 16799, - "end": 16812, - "loc": { - "start": { - "line": 163, - "column": 101 - }, - "end": { - "line": 163, - "column": 114 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16799, - "end": 16805, - "loc": { - "start": { - "line": 163, - "column": 101 - }, - "end": { - "line": 163, - "column": 107 - }, - "identifierName": "PR_TAG" - }, - "name": "PR_TAG" - }, - "value": { - "type": "StringLiteral", - "start": 16807, - "end": 16812, - "loc": { - "start": { - "line": 163, - "column": 109 - }, - "end": { - "line": 163, - "column": 114 - } - }, - "extra": { - "rawValue": "tag", - "raw": "\"tag\"" - }, - "value": "tag" - } - }, - { - "type": "ObjectProperty", - "start": 16814, - "end": 16828, - "loc": { - "start": { - "line": 163, - "column": 116 - }, - "end": { - "line": 163, - "column": 130 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 16814, - "end": 16821, - "loc": { - "start": { - "line": 163, - "column": 116 - }, - "end": { - "line": 163, - "column": 123 - }, - "identifierName": "PR_TYPE" - }, - "name": "PR_TYPE" - }, - "value": { - "type": "StringLiteral", - "start": 16823, - "end": 16828, - "loc": { - "start": { - "line": 163, - "column": 125 - }, - "end": { - "line": 163, - "column": 130 - } - }, - "extra": { - "rawValue": "typ", - "raw": "\"typ\"" - }, - "value": "typ" - } - } - ] - } - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 53 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 0, - "end": 3, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 3 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 4, - "end": 5, - "loc": { - "start": { - "line": 1, - "column": 4 - }, - "end": { - "line": 1, - "column": 5 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 6, - "end": 7, - "loc": { - "start": { - "line": 1, - "column": 6 - }, - "end": { - "line": 1, - "column": 7 - } - } - }, - { - "type": { - "label": "null", - "keyword": "null", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null", - "start": 8, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 8 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 13, - "end": 19, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19, - "end": 20, - "loc": { - "start": { - "line": 1, - "column": 19 - }, - "end": { - "line": 1, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_SHOULD_USE_CONTINUATION", - "start": 20, - "end": 46, - "loc": { - "start": { - "line": 1, - "column": 20 - }, - "end": { - "line": 1, - "column": 46 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 47, - "end": 48, - "loc": { - "start": { - "line": 1, - "column": 47 - }, - "end": { - "line": 1, - "column": 48 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 49, - "end": 50, - "loc": { - "start": { - "line": 1, - "column": 49 - }, - "end": { - "line": 1, - "column": 50 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 50, - "end": 51, - "loc": { - "start": { - "line": 1, - "column": 50 - }, - "end": { - "line": 1, - "column": 51 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 51, - "end": 52, - "loc": { - "start": { - "line": 1, - "column": 51 - }, - "end": { - "line": 1, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 53, - "end": 54, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 54, - "end": 62, - "loc": { - "start": { - "line": 2, - "column": 1 - }, - "end": { - "line": 2, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 63, - "end": 64, - "loc": { - "start": { - "line": 2, - "column": 10 - }, - "end": { - "line": 2, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 64, - "end": 65, - "loc": { - "start": { - "line": 2, - "column": 11 - }, - "end": { - "line": 2, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 66, - "end": 67, - "loc": { - "start": { - "line": 2, - "column": 13 - }, - "end": { - "line": 2, - "column": 14 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 70, - "end": 78, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "L", - "start": 79, - "end": 80, - "loc": { - "start": { - "line": 3, - "column": 11 - }, - "end": { - "line": 3, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 80, - "end": 81, - "loc": { - "start": { - "line": 3, - "column": 12 - }, - "end": { - "line": 3, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 81, - "end": 82, - "loc": { - "start": { - "line": 3, - "column": 13 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 82, - "end": 83, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 15 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 84, - "end": 85, - "loc": { - "start": { - "line": 3, - "column": 16 - }, - "end": { - "line": 3, - "column": 17 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 90, - "end": 98, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 99, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 100, - "end": 101, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 101, - "end": 102, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 102, - "end": 103, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 104, - "end": 105, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 112, - "end": 115, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 116, - "end": 117, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 118, - "end": 119, - "loc": { - "start": { - "line": 5, - "column": 12 - }, - "end": { - "line": 5, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 120, - "end": 121, - "loc": { - "start": { - "line": 5, - "column": 14 - }, - "end": { - "line": 5, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 121, - "end": 122, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charCodeAt", - "start": 122, - "end": 132, - "loc": { - "start": { - "line": 5, - "column": 16 - }, - "end": { - "line": 5, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 132, - "end": 133, - "loc": { - "start": { - "line": 5, - "column": 26 - }, - "end": { - "line": 5, - "column": 27 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 133, - "end": 134, - "loc": { - "start": { - "line": 5, - "column": 27 - }, - "end": { - "line": 5, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 134, - "end": 135, - "loc": { - "start": { - "line": 5, - "column": 28 - }, - "end": { - "line": 5, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 135, - "end": 136, - "loc": { - "start": { - "line": 5, - "column": 29 - }, - "end": { - "line": 5, - "column": 30 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 136, - "end": 138, - "loc": { - "start": { - "line": 5, - "column": 30 - }, - "end": { - "line": 5, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 5, - "column": 33 - }, - "end": { - "line": 5, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 140, - "end": 141, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 35 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 142, - "end": 145, - "loc": { - "start": { - "line": 5, - "column": 36 - }, - "end": { - "line": 5, - "column": 39 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 92, - "start": 146, - "end": 148, - "loc": { - "start": { - "line": 5, - "column": 40 - }, - "end": { - "line": 5, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 148, - "end": 149, - "loc": { - "start": { - "line": 5, - "column": 42 - }, - "end": { - "line": 5, - "column": 43 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 150, - "end": 156, - "loc": { - "start": { - "line": 5, - "column": 44 - }, - "end": { - "line": 5, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 157, - "end": 158, - "loc": { - "start": { - "line": 5, - "column": 51 - }, - "end": { - "line": 5, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 158, - "end": 159, - "loc": { - "start": { - "line": 5, - "column": 52 - }, - "end": { - "line": 5, - "column": 53 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 159, - "end": 162, - "loc": { - "start": { - "line": 5, - "column": 53 - }, - "end": { - "line": 5, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 163, - "end": 164, - "loc": { - "start": { - "line": 5, - "column": 57 - }, - "end": { - "line": 5, - "column": 58 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 165, - "end": 166, - "loc": { - "start": { - "line": 5, - "column": 59 - }, - "end": { - "line": 5, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 61 - }, - "end": { - "line": 5, - "column": 62 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 168, - "end": 169, - "loc": { - "start": { - "line": 5, - "column": 62 - }, - "end": { - "line": 5, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 169, - "end": 175, - "loc": { - "start": { - "line": 5, - "column": 63 - }, - "end": { - "line": 5, - "column": 69 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 175, - "end": 176, - "loc": { - "start": { - "line": 5, - "column": 69 - }, - "end": { - "line": 5, - "column": 70 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 176, - "end": 177, - "loc": { - "start": { - "line": 5, - "column": 70 - }, - "end": { - "line": 5, - "column": 71 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 177, - "end": 178, - "loc": { - "start": { - "line": 5, - "column": 71 - }, - "end": { - "line": 5, - "column": 72 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 178, - "end": 179, - "loc": { - "start": { - "line": 5, - "column": 72 - }, - "end": { - "line": 5, - "column": 73 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 179, - "end": 185, - "loc": { - "start": { - "line": 5, - "column": 73 - }, - "end": { - "line": 5, - "column": 79 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 186, - "end": 187, - "loc": { - "start": { - "line": 5, - "column": 80 - }, - "end": { - "line": 5, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 187, - "end": 188, - "loc": { - "start": { - "line": 5, - "column": 81 - }, - "end": { - "line": 5, - "column": 82 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 189, - "end": 190, - "loc": { - "start": { - "line": 5, - "column": 83 - }, - "end": { - "line": 5, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 191, - "end": 192, - "loc": { - "start": { - "line": 5, - "column": 85 - }, - "end": { - "line": 5, - "column": 86 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 192, - "end": 193, - "loc": { - "start": { - "line": 5, - "column": 86 - }, - "end": { - "line": 5, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 193, - "end": 194, - "loc": { - "start": { - "line": 5, - "column": 87 - }, - "end": { - "line": 5, - "column": 88 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 194, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 88 - }, - "end": { - "line": 5, - "column": 89 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 195, - "end": 196, - "loc": { - "start": { - "line": 5, - "column": 89 - }, - "end": { - "line": 5, - "column": 90 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 197, - "end": 198, - "loc": { - "start": { - "line": 5, - "column": 91 - }, - "end": { - "line": 5, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 199, - "end": 200, - "loc": { - "start": { - "line": 5, - "column": 93 - }, - "end": { - "line": 5, - "column": 94 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 201, - "end": 202, - "loc": { - "start": { - "line": 5, - "column": 95 - }, - "end": { - "line": 5, - "column": 96 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "0", - "start": 203, - "end": 206, - "loc": { - "start": { - "line": 5, - "column": 97 - }, - "end": { - "line": 5, - "column": 100 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 207, - "end": 209, - "loc": { - "start": { - "line": 5, - "column": 101 - }, - "end": { - "line": 5, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 210, - "end": 211, - "loc": { - "start": { - "line": 5, - "column": 104 - }, - "end": { - "line": 5, - "column": 105 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 212, - "end": 214, - "loc": { - "start": { - "line": 5, - "column": 106 - }, - "end": { - "line": 5, - "column": 108 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 215, - "end": 216, - "loc": { - "start": { - "line": 5, - "column": 109 - }, - "end": { - "line": 5, - "column": 110 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 217, - "end": 219, - "loc": { - "start": { - "line": 5, - "column": 111 - }, - "end": { - "line": 5, - "column": 113 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "7", - "start": 220, - "end": 223, - "loc": { - "start": { - "line": 5, - "column": 114 - }, - "end": { - "line": 5, - "column": 117 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 224, - "end": 225, - "loc": { - "start": { - "line": 5, - "column": 118 - }, - "end": { - "line": 5, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parseInt", - "start": 226, - "end": 234, - "loc": { - "start": { - "line": 5, - "column": 120 - }, - "end": { - "line": 5, - "column": 128 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 234, - "end": 235, - "loc": { - "start": { - "line": 5, - "column": 128 - }, - "end": { - "line": 5, - "column": 129 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 235, - "end": 236, - "loc": { - "start": { - "line": 5, - "column": 129 - }, - "end": { - "line": 5, - "column": 130 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 236, - "end": 237, - "loc": { - "start": { - "line": 5, - "column": 130 - }, - "end": { - "line": 5, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 237, - "end": 246, - "loc": { - "start": { - "line": 5, - "column": 131 - }, - "end": { - "line": 5, - "column": 140 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 246, - "end": 247, - "loc": { - "start": { - "line": 5, - "column": 140 - }, - "end": { - "line": 5, - "column": 141 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 247, - "end": 248, - "loc": { - "start": { - "line": 5, - "column": 141 - }, - "end": { - "line": 5, - "column": 142 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 248, - "end": 249, - "loc": { - "start": { - "line": 5, - "column": 142 - }, - "end": { - "line": 5, - "column": 143 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 249, - "end": 250, - "loc": { - "start": { - "line": 5, - "column": 143 - }, - "end": { - "line": 5, - "column": 144 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 8, - "start": 251, - "end": 252, - "loc": { - "start": { - "line": 5, - "column": 145 - }, - "end": { - "line": 5, - "column": 146 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 252, - "end": 253, - "loc": { - "start": { - "line": 5, - "column": 146 - }, - "end": { - "line": 5, - "column": 147 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 254, - "end": 255, - "loc": { - "start": { - "line": 5, - "column": 148 - }, - "end": { - "line": 5, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 256, - "end": 257, - "loc": { - "start": { - "line": 5, - "column": 150 - }, - "end": { - "line": 5, - "column": 151 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 258, - "end": 261, - "loc": { - "start": { - "line": 5, - "column": 152 - }, - "end": { - "line": 5, - "column": 155 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "u", - "start": 262, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 156 - }, - "end": { - "line": 5, - "column": 159 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 266, - "end": 268, - "loc": { - "start": { - "line": 5, - "column": 160 - }, - "end": { - "line": 5, - "column": 162 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 269, - "end": 270, - "loc": { - "start": { - "line": 5, - "column": 163 - }, - "end": { - "line": 5, - "column": 164 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 271, - "end": 274, - "loc": { - "start": { - "line": 5, - "column": 165 - }, - "end": { - "line": 5, - "column": 168 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "x", - "start": 275, - "end": 278, - "loc": { - "start": { - "line": 5, - "column": 169 - }, - "end": { - "line": 5, - "column": 172 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 279, - "end": 280, - "loc": { - "start": { - "line": 5, - "column": 173 - }, - "end": { - "line": 5, - "column": 174 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parseInt", - "start": 281, - "end": 289, - "loc": { - "start": { - "line": 5, - "column": 175 - }, - "end": { - "line": 5, - "column": 183 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 289, - "end": 290, - "loc": { - "start": { - "line": 5, - "column": 183 - }, - "end": { - "line": 5, - "column": 184 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 290, - "end": 291, - "loc": { - "start": { - "line": 5, - "column": 184 - }, - "end": { - "line": 5, - "column": 185 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 291, - "end": 292, - "loc": { - "start": { - "line": 5, - "column": 185 - }, - "end": { - "line": 5, - "column": 186 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 292, - "end": 301, - "loc": { - "start": { - "line": 5, - "column": 186 - }, - "end": { - "line": 5, - "column": 195 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 301, - "end": 302, - "loc": { - "start": { - "line": 5, - "column": 195 - }, - "end": { - "line": 5, - "column": 196 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 302, - "end": 303, - "loc": { - "start": { - "line": 5, - "column": 196 - }, - "end": { - "line": 5, - "column": 197 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 303, - "end": 304, - "loc": { - "start": { - "line": 5, - "column": 197 - }, - "end": { - "line": 5, - "column": 198 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 304, - "end": 305, - "loc": { - "start": { - "line": 5, - "column": 198 - }, - "end": { - "line": 5, - "column": 199 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 16, - "start": 306, - "end": 308, - "loc": { - "start": { - "line": 5, - "column": 200 - }, - "end": { - "line": 5, - "column": 202 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 308, - "end": 309, - "loc": { - "start": { - "line": 5, - "column": 202 - }, - "end": { - "line": 5, - "column": 203 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 310, - "end": 311, - "loc": { - "start": { - "line": 5, - "column": 204 - }, - "end": { - "line": 5, - "column": 205 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 312, - "end": 313, - "loc": { - "start": { - "line": 5, - "column": 206 - }, - "end": { - "line": 5, - "column": 207 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 313, - "end": 314, - "loc": { - "start": { - "line": 5, - "column": 207 - }, - "end": { - "line": 5, - "column": 208 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charCodeAt", - "start": 314, - "end": 324, - "loc": { - "start": { - "line": 5, - "column": 208 - }, - "end": { - "line": 5, - "column": 218 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 324, - "end": 325, - "loc": { - "start": { - "line": 5, - "column": 218 - }, - "end": { - "line": 5, - "column": 219 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 325, - "end": 326, - "loc": { - "start": { - "line": 5, - "column": 219 - }, - "end": { - "line": 5, - "column": 220 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 326, - "end": 327, - "loc": { - "start": { - "line": 5, - "column": 220 - }, - "end": { - "line": 5, - "column": 221 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 327, - "end": 328, - "loc": { - "start": { - "line": 5, - "column": 221 - }, - "end": { - "line": 5, - "column": 222 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 333, - "end": 334, - "loc": { - "start": { - "line": 6, - "column": 4 - }, - "end": { - "line": 6, - "column": 5 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 334, - "end": 342, - "loc": { - "start": { - "line": 6, - "column": 5 - }, - "end": { - "line": 6, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 343, - "end": 344, - "loc": { - "start": { - "line": 6, - "column": 14 - }, - "end": { - "line": 6, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 344, - "end": 345, - "loc": { - "start": { - "line": 6, - "column": 15 - }, - "end": { - "line": 6, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 345, - "end": 346, - "loc": { - "start": { - "line": 6, - "column": 16 - }, - "end": { - "line": 6, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 346, - "end": 347, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 348, - "end": 349, - "loc": { - "start": { - "line": 6, - "column": 19 - }, - "end": { - "line": 6, - "column": 20 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 356, - "end": 358, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 359, - "end": 360, - "loc": { - "start": { - "line": 7, - "column": 9 - }, - "end": { - "line": 7, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 360, - "end": 361, - "loc": { - "start": { - "line": 7, - "column": 10 - }, - "end": { - "line": 7, - "column": 11 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 362, - "end": 363, - "loc": { - "start": { - "line": 7, - "column": 12 - }, - "end": { - "line": 7, - "column": 13 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 32, - "start": 364, - "end": 366, - "loc": { - "start": { - "line": 7, - "column": 14 - }, - "end": { - "line": 7, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 366, - "end": 367, - "loc": { - "start": { - "line": 7, - "column": 16 - }, - "end": { - "line": 7, - "column": 17 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 368, - "end": 374, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 375, - "end": 376, - "loc": { - "start": { - "line": 7, - "column": 25 - }, - "end": { - "line": 7, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 376, - "end": 377, - "loc": { - "start": { - "line": 7, - "column": 26 - }, - "end": { - "line": 7, - "column": 27 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 378, - "end": 379, - "loc": { - "start": { - "line": 7, - "column": 28 - }, - "end": { - "line": 7, - "column": 29 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 16, - "start": 380, - "end": 382, - "loc": { - "start": { - "line": 7, - "column": 30 - }, - "end": { - "line": 7, - "column": 32 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 383, - "end": 384, - "loc": { - "start": { - "line": 7, - "column": 33 - }, - "end": { - "line": 7, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\x0", - "start": 385, - "end": 391, - "loc": { - "start": { - "line": 7, - "column": 35 - }, - "end": { - "line": 7, - "column": 41 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 392, - "end": 393, - "loc": { - "start": { - "line": 7, - "column": 42 - }, - "end": { - "line": 7, - "column": 43 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\x", - "start": 394, - "end": 399, - "loc": { - "start": { - "line": 7, - "column": 44 - }, - "end": { - "line": 7, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 399, - "end": 400, - "loc": { - "start": { - "line": 7, - "column": 49 - }, - "end": { - "line": 7, - "column": 50 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 401, - "end": 402, - "loc": { - "start": { - "line": 7, - "column": 51 - }, - "end": { - "line": 7, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 403, - "end": 404, - "loc": { - "start": { - "line": 7, - "column": 53 - }, - "end": { - "line": 7, - "column": 54 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 404, - "end": 405, - "loc": { - "start": { - "line": 7, - "column": 54 - }, - "end": { - "line": 7, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toString", - "start": 405, - "end": 413, - "loc": { - "start": { - "line": 7, - "column": 55 - }, - "end": { - "line": 7, - "column": 63 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 413, - "end": 414, - "loc": { - "start": { - "line": 7, - "column": 63 - }, - "end": { - "line": 7, - "column": 64 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 16, - "start": 414, - "end": 416, - "loc": { - "start": { - "line": 7, - "column": 64 - }, - "end": { - "line": 7, - "column": 66 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 416, - "end": 417, - "loc": { - "start": { - "line": 7, - "column": 66 - }, - "end": { - "line": 7, - "column": 67 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 417, - "end": 418, - "loc": { - "start": { - "line": 7, - "column": 67 - }, - "end": { - "line": 7, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 418, - "end": 419, - "loc": { - "start": { - "line": 7, - "column": 68 - }, - "end": { - "line": 7, - "column": 69 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 420, - "end": 421, - "loc": { - "start": { - "line": 7, - "column": 70 - }, - "end": { - "line": 7, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "String", - "start": 422, - "end": 428, - "loc": { - "start": { - "line": 7, - "column": 72 - }, - "end": { - "line": 7, - "column": 78 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 428, - "end": 429, - "loc": { - "start": { - "line": 7, - "column": 78 - }, - "end": { - "line": 7, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "fromCharCode", - "start": 429, - "end": 441, - "loc": { - "start": { - "line": 7, - "column": 79 - }, - "end": { - "line": 7, - "column": 91 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 441, - "end": 442, - "loc": { - "start": { - "line": 7, - "column": 91 - }, - "end": { - "line": 7, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 442, - "end": 443, - "loc": { - "start": { - "line": 7, - "column": 92 - }, - "end": { - "line": 7, - "column": 93 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 443, - "end": 444, - "loc": { - "start": { - "line": 7, - "column": 93 - }, - "end": { - "line": 7, - "column": 94 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 444, - "end": 445, - "loc": { - "start": { - "line": 7, - "column": 94 - }, - "end": { - "line": 7, - "column": 95 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 445, - "end": 447, - "loc": { - "start": { - "line": 7, - "column": 95 - }, - "end": { - "line": 7, - "column": 97 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 448, - "end": 449, - "loc": { - "start": { - "line": 7, - "column": 98 - }, - "end": { - "line": 7, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 449, - "end": 450, - "loc": { - "start": { - "line": 7, - "column": 99 - }, - "end": { - "line": 7, - "column": 100 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 451, - "end": 454, - "loc": { - "start": { - "line": 7, - "column": 101 - }, - "end": { - "line": 7, - "column": 104 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 455, - "end": 459, - "loc": { - "start": { - "line": 7, - "column": 105 - }, - "end": { - "line": 7, - "column": 109 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 460, - "end": 462, - "loc": { - "start": { - "line": 7, - "column": 110 - }, - "end": { - "line": 7, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 463, - "end": 464, - "loc": { - "start": { - "line": 7, - "column": 113 - }, - "end": { - "line": 7, - "column": 114 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 465, - "end": 468, - "loc": { - "start": { - "line": 7, - "column": 115 - }, - "end": { - "line": 7, - "column": 118 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "-", - "start": 469, - "end": 472, - "loc": { - "start": { - "line": 7, - "column": 119 - }, - "end": { - "line": 7, - "column": 122 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 473, - "end": 475, - "loc": { - "start": { - "line": 7, - "column": 123 - }, - "end": { - "line": 7, - "column": 125 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 476, - "end": 477, - "loc": { - "start": { - "line": 7, - "column": 126 - }, - "end": { - "line": 7, - "column": 127 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 478, - "end": 481, - "loc": { - "start": { - "line": 7, - "column": 128 - }, - "end": { - "line": 7, - "column": 131 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "[", - "start": 482, - "end": 485, - "loc": { - "start": { - "line": 7, - "column": 132 - }, - "end": { - "line": 7, - "column": 135 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 486, - "end": 488, - "loc": { - "start": { - "line": 7, - "column": 136 - }, - "end": { - "line": 7, - "column": 138 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 489, - "end": 490, - "loc": { - "start": { - "line": 7, - "column": 139 - }, - "end": { - "line": 7, - "column": 140 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 491, - "end": 494, - "loc": { - "start": { - "line": 7, - "column": 141 - }, - "end": { - "line": 7, - "column": 144 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "]", - "start": 495, - "end": 498, - "loc": { - "start": { - "line": 7, - "column": 145 - }, - "end": { - "line": 7, - "column": 148 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 498, - "end": 499, - "loc": { - "start": { - "line": 7, - "column": 148 - }, - "end": { - "line": 7, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 500, - "end": 501, - "loc": { - "start": { - "line": 7, - "column": 150 - }, - "end": { - "line": 7, - "column": 151 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 502, - "end": 503, - "loc": { - "start": { - "line": 7, - "column": 152 - }, - "end": { - "line": 7, - "column": 153 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 504, - "end": 508, - "loc": { - "start": { - "line": 7, - "column": 154 - }, - "end": { - "line": 7, - "column": 158 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 509, - "end": 510, - "loc": { - "start": { - "line": 7, - "column": 159 - }, - "end": { - "line": 7, - "column": 160 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 511, - "end": 512, - "loc": { - "start": { - "line": 7, - "column": 161 - }, - "end": { - "line": 7, - "column": 162 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 512, - "end": 513, - "loc": { - "start": { - "line": 7, - "column": 162 - }, - "end": { - "line": 7, - "column": 163 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 513, - "end": 519, - "loc": { - "start": { - "line": 7, - "column": 163 - }, - "end": { - "line": 7, - "column": 169 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 520, - "end": 521, - "loc": { - "start": { - "line": 7, - "column": 170 - }, - "end": { - "line": 7, - "column": 171 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 521, - "end": 522, - "loc": { - "start": { - "line": 7, - "column": 171 - }, - "end": { - "line": 7, - "column": 172 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 527, - "end": 528, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 528, - "end": 536, - "loc": { - "start": { - "line": 8, - "column": 5 - }, - "end": { - "line": 8, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 537, - "end": 538, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 538, - "end": 539, - "loc": { - "start": { - "line": 8, - "column": 15 - }, - "end": { - "line": 8, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 539, - "end": 540, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 540, - "end": 541, - "loc": { - "start": { - "line": 8, - "column": 17 - }, - "end": { - "line": 8, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 542, - "end": 543, - "loc": { - "start": { - "line": 8, - "column": 19 - }, - "end": { - "line": 8, - "column": 20 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 550, - "end": 553, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 554, - "end": 555, - "loc": { - "start": { - "line": 9, - "column": 10 - }, - "end": { - "line": 9, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 555, - "end": 558, - "loc": { - "start": { - "line": 9, - "column": 11 - }, - "end": { - "line": 9, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 559, - "end": 560, - "loc": { - "start": { - "line": 9, - "column": 15 - }, - "end": { - "line": 9, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 561, - "end": 562, - "loc": { - "start": { - "line": 9, - "column": 17 - }, - "end": { - "line": 9, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 563, - "end": 564, - "loc": { - "start": { - "line": 9, - "column": 19 - }, - "end": { - "line": 9, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 564, - "end": 565, - "loc": { - "start": { - "line": 9, - "column": 20 - }, - "end": { - "line": 9, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 565, - "end": 574, - "loc": { - "start": { - "line": 9, - "column": 21 - }, - "end": { - "line": 9, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 574, - "end": 575, - "loc": { - "start": { - "line": 9, - "column": 30 - }, - "end": { - "line": 9, - "column": 31 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 575, - "end": 576, - "loc": { - "start": { - "line": 9, - "column": 31 - }, - "end": { - "line": 9, - "column": 32 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 576, - "end": 577, - "loc": { - "start": { - "line": 9, - "column": 32 - }, - "end": { - "line": 9, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 578, - "end": 579, - "loc": { - "start": { - "line": 9, - "column": 34 - }, - "end": { - "line": 9, - "column": 35 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 579, - "end": 580, - "loc": { - "start": { - "line": 9, - "column": 35 - }, - "end": { - "line": 9, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 580, - "end": 586, - "loc": { - "start": { - "line": 9, - "column": 36 - }, - "end": { - "line": 9, - "column": 42 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 587, - "end": 588, - "loc": { - "start": { - "line": 9, - "column": 43 - }, - "end": { - "line": 9, - "column": 44 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 589, - "end": 590, - "loc": { - "start": { - "line": 9, - "column": 45 - }, - "end": { - "line": 9, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 590, - "end": 591, - "loc": { - "start": { - "line": 9, - "column": 46 - }, - "end": { - "line": 9, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 591, - "end": 592, - "loc": { - "start": { - "line": 9, - "column": 47 - }, - "end": { - "line": 9, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 592, - "end": 597, - "loc": { - "start": { - "line": 9, - "column": 48 - }, - "end": { - "line": 9, - "column": 53 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 597, - "end": 598, - "loc": { - "start": { - "line": 9, - "column": 53 - }, - "end": { - "line": 9, - "column": 54 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\S\\s]|[^\\\\]", - "flags": "g" - }, - "start": 598, - "end": 680, - "loc": { - "start": { - "line": 9, - "column": 54 - }, - "end": { - "line": 9, - "column": 136 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 680, - "end": 681, - "loc": { - "start": { - "line": 9, - "column": 136 - }, - "end": { - "line": 9, - "column": 137 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 681, - "end": 682, - "loc": { - "start": { - "line": 9, - "column": 137 - }, - "end": { - "line": 9, - "column": 138 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 683, - "end": 684, - "loc": { - "start": { - "line": 9, - "column": 139 - }, - "end": { - "line": 9, - "column": 140 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 685, - "end": 686, - "loc": { - "start": { - "line": 9, - "column": 141 - }, - "end": { - "line": 9, - "column": 142 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 687, - "end": 688, - "loc": { - "start": { - "line": 9, - "column": 143 - }, - "end": { - "line": 9, - "column": 144 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 688, - "end": 689, - "loc": { - "start": { - "line": 9, - "column": 144 - }, - "end": { - "line": 9, - "column": 145 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 689, - "end": 690, - "loc": { - "start": { - "line": 9, - "column": 145 - }, - "end": { - "line": 9, - "column": 146 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 691, - "end": 692, - "loc": { - "start": { - "line": 9, - "column": 147 - }, - "end": { - "line": 9, - "column": 148 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 693, - "end": 694, - "loc": { - "start": { - "line": 9, - "column": 149 - }, - "end": { - "line": 9, - "column": 150 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 695, - "end": 696, - "loc": { - "start": { - "line": 9, - "column": 151 - }, - "end": { - "line": 9, - "column": 152 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 696, - "end": 697, - "loc": { - "start": { - "line": 9, - "column": 152 - }, - "end": { - "line": 9, - "column": 153 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 697, - "end": 698, - "loc": { - "start": { - "line": 9, - "column": 153 - }, - "end": { - "line": 9, - "column": 154 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 699, - "end": 700, - "loc": { - "start": { - "line": 9, - "column": 155 - }, - "end": { - "line": 9, - "column": 156 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 701, - "end": 702, - "loc": { - "start": { - "line": 9, - "column": 157 - }, - "end": { - "line": 9, - "column": 158 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 703, - "end": 704, - "loc": { - "start": { - "line": 9, - "column": 159 - }, - "end": { - "line": 9, - "column": 160 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 704, - "end": 705, - "loc": { - "start": { - "line": 9, - "column": 160 - }, - "end": { - "line": 9, - "column": 161 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 705, - "end": 706, - "loc": { - "start": { - "line": 9, - "column": 161 - }, - "end": { - "line": 9, - "column": 162 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 706, - "end": 707, - "loc": { - "start": { - "line": 9, - "column": 162 - }, - "end": { - "line": 9, - "column": 163 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 708, - "end": 711, - "loc": { - "start": { - "line": 9, - "column": 164 - }, - "end": { - "line": 9, - "column": 167 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "^", - "start": 712, - "end": 715, - "loc": { - "start": { - "line": 9, - "column": 168 - }, - "end": { - "line": 9, - "column": 171 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 715, - "end": 716, - "loc": { - "start": { - "line": 9, - "column": 171 - }, - "end": { - "line": 9, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 717, - "end": 718, - "loc": { - "start": { - "line": 9, - "column": 173 - }, - "end": { - "line": 9, - "column": 174 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 719, - "end": 720, - "loc": { - "start": { - "line": 9, - "column": 175 - }, - "end": { - "line": 9, - "column": 176 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 721, - "end": 722, - "loc": { - "start": { - "line": 9, - "column": 177 - }, - "end": { - "line": 9, - "column": 178 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 723, - "end": 724, - "loc": { - "start": { - "line": 9, - "column": 179 - }, - "end": { - "line": 9, - "column": 180 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 9, - "column": 181 - }, - "end": { - "line": 9, - "column": 182 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 727, - "end": 728, - "loc": { - "start": { - "line": 9, - "column": 183 - }, - "end": { - "line": 9, - "column": 184 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 729, - "end": 730, - "loc": { - "start": { - "line": 9, - "column": 185 - }, - "end": { - "line": 9, - "column": 186 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 730, - "end": 731, - "loc": { - "start": { - "line": 9, - "column": 186 - }, - "end": { - "line": 9, - "column": 187 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 732, - "end": 733, - "loc": { - "start": { - "line": 9, - "column": 188 - }, - "end": { - "line": 9, - "column": 189 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 734, - "end": 735, - "loc": { - "start": { - "line": 9, - "column": 190 - }, - "end": { - "line": 9, - "column": 191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 736, - "end": 737, - "loc": { - "start": { - "line": 9, - "column": 192 - }, - "end": { - "line": 9, - "column": 193 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 737, - "end": 738, - "loc": { - "start": { - "line": 9, - "column": 193 - }, - "end": { - "line": 9, - "column": 194 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 738, - "end": 744, - "loc": { - "start": { - "line": 9, - "column": 194 - }, - "end": { - "line": 9, - "column": 200 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 744, - "end": 745, - "loc": { - "start": { - "line": 9, - "column": 200 - }, - "end": { - "line": 9, - "column": 201 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 746, - "end": 747, - "loc": { - "start": { - "line": 9, - "column": 202 - }, - "end": { - "line": 9, - "column": 203 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 748, - "end": 749, - "loc": { - "start": { - "line": 9, - "column": 204 - }, - "end": { - "line": 9, - "column": 205 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 750, - "end": 751, - "loc": { - "start": { - "line": 9, - "column": 206 - }, - "end": { - "line": 9, - "column": 207 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 751, - "end": 752, - "loc": { - "start": { - "line": 9, - "column": 207 - }, - "end": { - "line": 9, - "column": 208 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 753, - "end": 755, - "loc": { - "start": { - "line": 9, - "column": 209 - }, - "end": { - "line": 9, - "column": 211 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 755, - "end": 756, - "loc": { - "start": { - "line": 9, - "column": 211 - }, - "end": { - "line": 9, - "column": 212 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 756, - "end": 757, - "loc": { - "start": { - "line": 9, - "column": 212 - }, - "end": { - "line": 9, - "column": 213 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 758, - "end": 759, - "loc": { - "start": { - "line": 9, - "column": 214 - }, - "end": { - "line": 9, - "column": 215 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 768, - "end": 771, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 772, - "end": 773, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 774, - "end": 775, - "loc": { - "start": { - "line": 10, - "column": 14 - }, - "end": { - "line": 10, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 776, - "end": 777, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 777, - "end": 778, - "loc": { - "start": { - "line": 10, - "column": 17 - }, - "end": { - "line": 10, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 778, - "end": 779, - "loc": { - "start": { - "line": 10, - "column": 18 - }, - "end": { - "line": 10, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 779, - "end": 780, - "loc": { - "start": { - "line": 10, - "column": 19 - }, - "end": { - "line": 10, - "column": 20 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 780, - "end": 781, - "loc": { - "start": { - "line": 10, - "column": 20 - }, - "end": { - "line": 10, - "column": 21 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 781, - "end": 783, - "loc": { - "start": { - "line": 10, - "column": 21 - }, - "end": { - "line": 10, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 784, - "end": 785, - "loc": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\\\[bdsw]", - "flags": "i" - }, - "start": 785, - "end": 796, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 36 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 796, - "end": 797, - "loc": { - "start": { - "line": 10, - "column": 36 - }, - "end": { - "line": 10, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 797, - "end": 801, - "loc": { - "start": { - "line": 10, - "column": 37 - }, - "end": { - "line": 10, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 801, - "end": 802, - "loc": { - "start": { - "line": 10, - "column": 41 - }, - "end": { - "line": 10, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 802, - "end": 803, - "loc": { - "start": { - "line": 10, - "column": 42 - }, - "end": { - "line": 10, - "column": 43 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 803, - "end": 804, - "loc": { - "start": { - "line": 10, - "column": 43 - }, - "end": { - "line": 10, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 804, - "end": 805, - "loc": { - "start": { - "line": 10, - "column": 44 - }, - "end": { - "line": 10, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 806, - "end": 807, - "loc": { - "start": { - "line": 10, - "column": 46 - }, - "end": { - "line": 10, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 807, - "end": 808, - "loc": { - "start": { - "line": 10, - "column": 47 - }, - "end": { - "line": 10, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 808, - "end": 812, - "loc": { - "start": { - "line": 10, - "column": 48 - }, - "end": { - "line": 10, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 812, - "end": 813, - "loc": { - "start": { - "line": 10, - "column": 52 - }, - "end": { - "line": 10, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 813, - "end": 814, - "loc": { - "start": { - "line": 10, - "column": 53 - }, - "end": { - "line": 10, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 814, - "end": 815, - "loc": { - "start": { - "line": 10, - "column": 54 - }, - "end": { - "line": 10, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 815, - "end": 816, - "loc": { - "start": { - "line": 10, - "column": 55 - }, - "end": { - "line": 10, - "column": 56 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 816, - "end": 820, - "loc": { - "start": { - "line": 10, - "column": 56 - }, - "end": { - "line": 10, - "column": 60 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 821, - "end": 822, - "loc": { - "start": { - "line": 10, - "column": 61 - }, - "end": { - "line": 10, - "column": 62 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 833, - "end": 836, - "loc": { - "start": { - "line": 11, - "column": 10 - }, - "end": { - "line": 11, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 837, - "end": 838, - "loc": { - "start": { - "line": 11, - "column": 14 - }, - "end": { - "line": 11, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 839, - "end": 840, - "loc": { - "start": { - "line": 11, - "column": 16 - }, - "end": { - "line": 11, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 841, - "end": 842, - "loc": { - "start": { - "line": 11, - "column": 18 - }, - "end": { - "line": 11, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 842, - "end": 843, - "loc": { - "start": { - "line": 11, - "column": 19 - }, - "end": { - "line": 11, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 843, - "end": 844, - "loc": { - "start": { - "line": 11, - "column": 20 - }, - "end": { - "line": 11, - "column": 21 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 844, - "end": 845, - "loc": { - "start": { - "line": 11, - "column": 21 - }, - "end": { - "line": 11, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 845, - "end": 846, - "loc": { - "start": { - "line": 11, - "column": 22 - }, - "end": { - "line": 11, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 861, - "end": 862, - "loc": { - "start": { - "line": 12, - "column": 14 - }, - "end": { - "line": 12, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 862, - "end": 863, - "loc": { - "start": { - "line": 12, - "column": 15 - }, - "end": { - "line": 12, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 863, - "end": 864, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 17 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 865, - "end": 866, - "loc": { - "start": { - "line": 12, - "column": 18 - }, - "end": { - "line": 12, - "column": 19 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 867, - "end": 868, - "loc": { - "start": { - "line": 12, - "column": 20 - }, - "end": { - "line": 12, - "column": 21 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 869, - "end": 870, - "loc": { - "start": { - "line": 12, - "column": 22 - }, - "end": { - "line": 12, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 871, - "end": 872, - "loc": { - "start": { - "line": 12, - "column": 24 - }, - "end": { - "line": 12, - "column": 25 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 873, - "end": 875, - "loc": { - "start": { - "line": 12, - "column": 26 - }, - "end": { - "line": 12, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "-", - "start": 876, - "end": 879, - "loc": { - "start": { - "line": 12, - "column": 29 - }, - "end": { - "line": 12, - "column": 32 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 880, - "end": 883, - "loc": { - "start": { - "line": 12, - "column": 33 - }, - "end": { - "line": 12, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 884, - "end": 885, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 38 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 885, - "end": 886, - "loc": { - "start": { - "line": 12, - "column": 38 - }, - "end": { - "line": 12, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 886, - "end": 887, - "loc": { - "start": { - "line": 12, - "column": 39 - }, - "end": { - "line": 12, - "column": 40 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 888, - "end": 889, - "loc": { - "start": { - "line": 12, - "column": 41 - }, - "end": { - "line": 12, - "column": 42 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 890, - "end": 891, - "loc": { - "start": { - "line": 12, - "column": 43 - }, - "end": { - "line": 12, - "column": 44 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 891, - "end": 892, - "loc": { - "start": { - "line": 12, - "column": 44 - }, - "end": { - "line": 12, - "column": 45 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 893, - "end": 894, - "loc": { - "start": { - "line": 12, - "column": 46 - }, - "end": { - "line": 12, - "column": 47 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 895, - "end": 896, - "loc": { - "start": { - "line": 12, - "column": 48 - }, - "end": { - "line": 12, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 896, - "end": 897, - "loc": { - "start": { - "line": 12, - "column": 49 - }, - "end": { - "line": 12, - "column": 50 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 898, - "end": 899, - "loc": { - "start": { - "line": 12, - "column": 51 - }, - "end": { - "line": 12, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 900, - "end": 901, - "loc": { - "start": { - "line": 12, - "column": 53 - }, - "end": { - "line": 12, - "column": 54 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 901, - "end": 902, - "loc": { - "start": { - "line": 12, - "column": 54 - }, - "end": { - "line": 12, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 902, - "end": 903, - "loc": { - "start": { - "line": 12, - "column": 55 - }, - "end": { - "line": 12, - "column": 56 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 903, - "end": 904, - "loc": { - "start": { - "line": 12, - "column": 56 - }, - "end": { - "line": 12, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 904, - "end": 905, - "loc": { - "start": { - "line": 12, - "column": 57 - }, - "end": { - "line": 12, - "column": 58 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 906, - "end": 907, - "loc": { - "start": { - "line": 12, - "column": 59 - }, - "end": { - "line": 12, - "column": 60 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 908, - "end": 909, - "loc": { - "start": { - "line": 12, - "column": 61 - }, - "end": { - "line": 12, - "column": 62 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 909, - "end": 910, - "loc": { - "start": { - "line": 12, - "column": 62 - }, - "end": { - "line": 12, - "column": 63 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 910, - "end": 911, - "loc": { - "start": { - "line": 12, - "column": 63 - }, - "end": { - "line": 12, - "column": 64 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 911, - "end": 912, - "loc": { - "start": { - "line": 12, - "column": 64 - }, - "end": { - "line": 12, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 913, - "end": 914, - "loc": { - "start": { - "line": 12, - "column": 66 - }, - "end": { - "line": 12, - "column": 67 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 915, - "end": 917, - "loc": { - "start": { - "line": 12, - "column": 68 - }, - "end": { - "line": 12, - "column": 70 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 918, - "end": 919, - "loc": { - "start": { - "line": 12, - "column": 71 - }, - "end": { - "line": 12, - "column": 72 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 919, - "end": 920, - "loc": { - "start": { - "line": 12, - "column": 72 - }, - "end": { - "line": 12, - "column": 73 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 921, - "end": 922, - "loc": { - "start": { - "line": 12, - "column": 74 - }, - "end": { - "line": 12, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 923, - "end": 924, - "loc": { - "start": { - "line": 12, - "column": 76 - }, - "end": { - "line": 12, - "column": 77 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 925, - "end": 926, - "loc": { - "start": { - "line": 12, - "column": 78 - }, - "end": { - "line": 12, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 927, - "end": 928, - "loc": { - "start": { - "line": 12, - "column": 80 - }, - "end": { - "line": 12, - "column": 81 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 928, - "end": 929, - "loc": { - "start": { - "line": 12, - "column": 81 - }, - "end": { - "line": 12, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 929, - "end": 930, - "loc": { - "start": { - "line": 12, - "column": 82 - }, - "end": { - "line": 12, - "column": 83 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 930, - "end": 931, - "loc": { - "start": { - "line": 12, - "column": 83 - }, - "end": { - "line": 12, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 931, - "end": 935, - "loc": { - "start": { - "line": 12, - "column": 84 - }, - "end": { - "line": 12, - "column": 88 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 935, - "end": 936, - "loc": { - "start": { - "line": 12, - "column": 88 - }, - "end": { - "line": 12, - "column": 89 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 936, - "end": 937, - "loc": { - "start": { - "line": 12, - "column": 89 - }, - "end": { - "line": 12, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 937, - "end": 938, - "loc": { - "start": { - "line": 12, - "column": 90 - }, - "end": { - "line": 12, - "column": 91 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 938, - "end": 939, - "loc": { - "start": { - "line": 12, - "column": 91 - }, - "end": { - "line": 12, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 940, - "end": 941, - "loc": { - "start": { - "line": 12, - "column": 93 - }, - "end": { - "line": 12, - "column": 94 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 941, - "end": 942, - "loc": { - "start": { - "line": 12, - "column": 94 - }, - "end": { - "line": 12, - "column": 95 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 942, - "end": 943, - "loc": { - "start": { - "line": 12, - "column": 95 - }, - "end": { - "line": 12, - "column": 96 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 943, - "end": 944, - "loc": { - "start": { - "line": 12, - "column": 96 - }, - "end": { - "line": 12, - "column": 97 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 944, - "end": 945, - "loc": { - "start": { - "line": 12, - "column": 97 - }, - "end": { - "line": 12, - "column": 98 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 946, - "end": 947, - "loc": { - "start": { - "line": 12, - "column": 99 - }, - "end": { - "line": 12, - "column": 100 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 65, - "start": 948, - "end": 950, - "loc": { - "start": { - "line": 12, - "column": 101 - }, - "end": { - "line": 12, - "column": 103 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 951, - "end": 953, - "loc": { - "start": { - "line": 12, - "column": 104 - }, - "end": { - "line": 12, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 954, - "end": 955, - "loc": { - "start": { - "line": 12, - "column": 107 - }, - "end": { - "line": 12, - "column": 108 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 956, - "end": 957, - "loc": { - "start": { - "line": 12, - "column": 109 - }, - "end": { - "line": 12, - "column": 110 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 122, - "start": 958, - "end": 961, - "loc": { - "start": { - "line": 12, - "column": 111 - }, - "end": { - "line": 12, - "column": 114 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 962, - "end": 964, - "loc": { - "start": { - "line": 12, - "column": 115 - }, - "end": { - "line": 12, - "column": 117 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 965, - "end": 966, - "loc": { - "start": { - "line": 12, - "column": 118 - }, - "end": { - "line": 12, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 966, - "end": 967, - "loc": { - "start": { - "line": 12, - "column": 119 - }, - "end": { - "line": 12, - "column": 120 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 968, - "end": 969, - "loc": { - "start": { - "line": 12, - "column": 121 - }, - "end": { - "line": 12, - "column": 122 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 65, - "start": 970, - "end": 972, - "loc": { - "start": { - "line": 12, - "column": 123 - }, - "end": { - "line": 12, - "column": 125 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 973, - "end": 975, - "loc": { - "start": { - "line": 12, - "column": 126 - }, - "end": { - "line": 12, - "column": 128 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 976, - "end": 977, - "loc": { - "start": { - "line": 12, - "column": 129 - }, - "end": { - "line": 12, - "column": 130 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 978, - "end": 979, - "loc": { - "start": { - "line": 12, - "column": 131 - }, - "end": { - "line": 12, - "column": 132 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 90, - "start": 980, - "end": 982, - "loc": { - "start": { - "line": 12, - "column": 133 - }, - "end": { - "line": 12, - "column": 135 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 983, - "end": 985, - "loc": { - "start": { - "line": 12, - "column": 136 - }, - "end": { - "line": 12, - "column": 138 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 986, - "end": 987, - "loc": { - "start": { - "line": 12, - "column": 139 - }, - "end": { - "line": 12, - "column": 140 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 987, - "end": 988, - "loc": { - "start": { - "line": 12, - "column": 140 - }, - "end": { - "line": 12, - "column": 141 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 988, - "end": 992, - "loc": { - "start": { - "line": 12, - "column": 141 - }, - "end": { - "line": 12, - "column": 145 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 992, - "end": 993, - "loc": { - "start": { - "line": 12, - "column": 145 - }, - "end": { - "line": 12, - "column": 146 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 993, - "end": 994, - "loc": { - "start": { - "line": 12, - "column": 146 - }, - "end": { - "line": 12, - "column": 147 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 994, - "end": 998, - "loc": { - "start": { - "line": 12, - "column": 147 - }, - "end": { - "line": 12, - "column": 151 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 998, - "end": 999, - "loc": { - "start": { - "line": 12, - "column": 151 - }, - "end": { - "line": 12, - "column": 152 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "max", - "start": 999, - "end": 1002, - "loc": { - "start": { - "line": 12, - "column": 152 - }, - "end": { - "line": 12, - "column": 155 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1002, - "end": 1003, - "loc": { - "start": { - "line": 12, - "column": 155 - }, - "end": { - "line": 12, - "column": 156 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 65, - "start": 1003, - "end": 1005, - "loc": { - "start": { - "line": 12, - "column": 156 - }, - "end": { - "line": 12, - "column": 158 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1005, - "end": 1006, - "loc": { - "start": { - "line": 12, - "column": 158 - }, - "end": { - "line": 12, - "column": 159 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1007, - "end": 1008, - "loc": { - "start": { - "line": 12, - "column": 160 - }, - "end": { - "line": 12, - "column": 161 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1008, - "end": 1009, - "loc": { - "start": { - "line": 12, - "column": 161 - }, - "end": { - "line": 12, - "column": 162 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 1010, - "end": 1011, - "loc": { - "start": { - "line": 12, - "column": 163 - }, - "end": { - "line": 12, - "column": 164 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 32, - "start": 1012, - "end": 1014, - "loc": { - "start": { - "line": 12, - "column": 165 - }, - "end": { - "line": 12, - "column": 167 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1014, - "end": 1015, - "loc": { - "start": { - "line": 12, - "column": 167 - }, - "end": { - "line": 12, - "column": 168 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 1016, - "end": 1020, - "loc": { - "start": { - "line": 12, - "column": 169 - }, - "end": { - "line": 12, - "column": 173 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1020, - "end": 1021, - "loc": { - "start": { - "line": 12, - "column": 173 - }, - "end": { - "line": 12, - "column": 174 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "min", - "start": 1021, - "end": 1024, - "loc": { - "start": { - "line": 12, - "column": 174 - }, - "end": { - "line": 12, - "column": 177 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1024, - "end": 1025, - "loc": { - "start": { - "line": 12, - "column": 177 - }, - "end": { - "line": 12, - "column": 178 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1025, - "end": 1026, - "loc": { - "start": { - "line": 12, - "column": 178 - }, - "end": { - "line": 12, - "column": 179 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1026, - "end": 1027, - "loc": { - "start": { - "line": 12, - "column": 179 - }, - "end": { - "line": 12, - "column": 180 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 90, - "start": 1028, - "end": 1030, - "loc": { - "start": { - "line": 12, - "column": 181 - }, - "end": { - "line": 12, - "column": 183 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1030, - "end": 1031, - "loc": { - "start": { - "line": 12, - "column": 183 - }, - "end": { - "line": 12, - "column": 184 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 1032, - "end": 1033, - "loc": { - "start": { - "line": 12, - "column": 185 - }, - "end": { - "line": 12, - "column": 186 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 32, - "start": 1034, - "end": 1036, - "loc": { - "start": { - "line": 12, - "column": 187 - }, - "end": { - "line": 12, - "column": 189 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1036, - "end": 1037, - "loc": { - "start": { - "line": 12, - "column": 189 - }, - "end": { - "line": 12, - "column": 190 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1037, - "end": 1038, - "loc": { - "start": { - "line": 12, - "column": 190 - }, - "end": { - "line": 12, - "column": 191 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1038, - "end": 1039, - "loc": { - "start": { - "line": 12, - "column": 191 - }, - "end": { - "line": 12, - "column": 192 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1040, - "end": 1041, - "loc": { - "start": { - "line": 12, - "column": 193 - }, - "end": { - "line": 12, - "column": 194 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1042, - "end": 1043, - "loc": { - "start": { - "line": 12, - "column": 195 - }, - "end": { - "line": 12, - "column": 196 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 97, - "start": 1044, - "end": 1046, - "loc": { - "start": { - "line": 12, - "column": 197 - }, - "end": { - "line": 12, - "column": 199 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 1047, - "end": 1049, - "loc": { - "start": { - "line": 12, - "column": 200 - }, - "end": { - "line": 12, - "column": 202 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1050, - "end": 1051, - "loc": { - "start": { - "line": 12, - "column": 203 - }, - "end": { - "line": 12, - "column": 204 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 1052, - "end": 1053, - "loc": { - "start": { - "line": 12, - "column": 205 - }, - "end": { - "line": 12, - "column": 206 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 122, - "start": 1054, - "end": 1057, - "loc": { - "start": { - "line": 12, - "column": 207 - }, - "end": { - "line": 12, - "column": 210 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 1058, - "end": 1060, - "loc": { - "start": { - "line": 12, - "column": 211 - }, - "end": { - "line": 12, - "column": 213 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1061, - "end": 1062, - "loc": { - "start": { - "line": 12, - "column": 214 - }, - "end": { - "line": 12, - "column": 215 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1062, - "end": 1063, - "loc": { - "start": { - "line": 12, - "column": 215 - }, - "end": { - "line": 12, - "column": 216 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1063, - "end": 1067, - "loc": { - "start": { - "line": 12, - "column": 216 - }, - "end": { - "line": 12, - "column": 220 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1067, - "end": 1068, - "loc": { - "start": { - "line": 12, - "column": 220 - }, - "end": { - "line": 12, - "column": 221 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1068, - "end": 1069, - "loc": { - "start": { - "line": 12, - "column": 221 - }, - "end": { - "line": 12, - "column": 222 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 1069, - "end": 1073, - "loc": { - "start": { - "line": 12, - "column": 222 - }, - "end": { - "line": 12, - "column": 226 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1073, - "end": 1074, - "loc": { - "start": { - "line": 12, - "column": 226 - }, - "end": { - "line": 12, - "column": 227 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "max", - "start": 1074, - "end": 1077, - "loc": { - "start": { - "line": 12, - "column": 227 - }, - "end": { - "line": 12, - "column": 230 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1077, - "end": 1078, - "loc": { - "start": { - "line": 12, - "column": 230 - }, - "end": { - "line": 12, - "column": 231 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 97, - "start": 1078, - "end": 1080, - "loc": { - "start": { - "line": 12, - "column": 231 - }, - "end": { - "line": 12, - "column": 233 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1080, - "end": 1081, - "loc": { - "start": { - "line": 12, - "column": 233 - }, - "end": { - "line": 12, - "column": 234 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1082, - "end": 1083, - "loc": { - "start": { - "line": 12, - "column": 235 - }, - "end": { - "line": 12, - "column": 236 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1083, - "end": 1084, - "loc": { - "start": { - "line": 12, - "column": 236 - }, - "end": { - "line": 12, - "column": 237 - } - } - }, - { - "type": { - "label": "&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 5, - "updateContext": null - }, - "value": "&", - "start": 1085, - "end": 1086, - "loc": { - "start": { - "line": 12, - "column": 238 - }, - "end": { - "line": 12, - "column": 239 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1087, - "end": 1088, - "loc": { - "start": { - "line": 12, - "column": 240 - }, - "end": { - "line": 12, - "column": 241 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 33, - "start": 1088, - "end": 1090, - "loc": { - "start": { - "line": 12, - "column": 241 - }, - "end": { - "line": 12, - "column": 243 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1090, - "end": 1091, - "loc": { - "start": { - "line": 12, - "column": 243 - }, - "end": { - "line": 12, - "column": 244 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 1092, - "end": 1096, - "loc": { - "start": { - "line": 12, - "column": 245 - }, - "end": { - "line": 12, - "column": 249 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1096, - "end": 1097, - "loc": { - "start": { - "line": 12, - "column": 249 - }, - "end": { - "line": 12, - "column": 250 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "min", - "start": 1097, - "end": 1100, - "loc": { - "start": { - "line": 12, - "column": 250 - }, - "end": { - "line": 12, - "column": 253 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1100, - "end": 1101, - "loc": { - "start": { - "line": 12, - "column": 253 - }, - "end": { - "line": 12, - "column": 254 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1101, - "end": 1102, - "loc": { - "start": { - "line": 12, - "column": 254 - }, - "end": { - "line": 12, - "column": 255 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1102, - "end": 1103, - "loc": { - "start": { - "line": 12, - "column": 255 - }, - "end": { - "line": 12, - "column": 256 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 122, - "start": 1104, - "end": 1107, - "loc": { - "start": { - "line": 12, - "column": 257 - }, - "end": { - "line": 12, - "column": 260 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1107, - "end": 1108, - "loc": { - "start": { - "line": 12, - "column": 260 - }, - "end": { - "line": 12, - "column": 261 - } - } - }, - { - "type": { - "label": "&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 5, - "updateContext": null - }, - "value": "&", - "start": 1109, - "end": 1110, - "loc": { - "start": { - "line": 12, - "column": 262 - }, - "end": { - "line": 12, - "column": 263 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1111, - "end": 1112, - "loc": { - "start": { - "line": 12, - "column": 264 - }, - "end": { - "line": 12, - "column": 265 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 33, - "start": 1112, - "end": 1114, - "loc": { - "start": { - "line": 12, - "column": 265 - }, - "end": { - "line": 12, - "column": 267 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1114, - "end": 1115, - "loc": { - "start": { - "line": 12, - "column": 267 - }, - "end": { - "line": 12, - "column": 268 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1115, - "end": 1116, - "loc": { - "start": { - "line": 12, - "column": 268 - }, - "end": { - "line": 12, - "column": 269 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1116, - "end": 1117, - "loc": { - "start": { - "line": 12, - "column": 269 - }, - "end": { - "line": 12, - "column": 270 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1117, - "end": 1118, - "loc": { - "start": { - "line": 12, - "column": 270 - }, - "end": { - "line": 12, - "column": 271 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1127, - "end": 1128, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 9 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1135, - "end": 1136, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1136, - "end": 1137, - "loc": { - "start": { - "line": 14, - "column": 7 - }, - "end": { - "line": 14, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1137, - "end": 1138, - "loc": { - "start": { - "line": 14, - "column": 8 - }, - "end": { - "line": 14, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "sort", - "start": 1138, - "end": 1142, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1142, - "end": 1143, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 14 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1143, - "end": 1151, - "loc": { - "start": { - "line": 14, - "column": 14 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1152, - "end": 1153, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1153, - "end": 1154, - "loc": { - "start": { - "line": 14, - "column": 24 - }, - "end": { - "line": 14, - "column": 25 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1154, - "end": 1155, - "loc": { - "start": { - "line": 14, - "column": 25 - }, - "end": { - "line": 14, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1156, - "end": 1157, - "loc": { - "start": { - "line": 14, - "column": 27 - }, - "end": { - "line": 14, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1157, - "end": 1158, - "loc": { - "start": { - "line": 14, - "column": 28 - }, - "end": { - "line": 14, - "column": 29 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1159, - "end": 1160, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 14, - "column": 31 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 1169, - "end": 1175, - "loc": { - "start": { - "line": 15, - "column": 8 - }, - "end": { - "line": 15, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1176, - "end": 1177, - "loc": { - "start": { - "line": 15, - "column": 15 - }, - "end": { - "line": 15, - "column": 16 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1177, - "end": 1178, - "loc": { - "start": { - "line": 15, - "column": 16 - }, - "end": { - "line": 15, - "column": 17 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1178, - "end": 1179, - "loc": { - "start": { - "line": 15, - "column": 17 - }, - "end": { - "line": 15, - "column": 18 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1179, - "end": 1180, - "loc": { - "start": { - "line": 15, - "column": 18 - }, - "end": { - "line": 15, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1181, - "end": 1182, - "loc": { - "start": { - "line": 15, - "column": 20 - }, - "end": { - "line": 15, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1183, - "end": 1184, - "loc": { - "start": { - "line": 15, - "column": 22 - }, - "end": { - "line": 15, - "column": 23 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1184, - "end": 1185, - "loc": { - "start": { - "line": 15, - "column": 23 - }, - "end": { - "line": 15, - "column": 24 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1185, - "end": 1186, - "loc": { - "start": { - "line": 15, - "column": 24 - }, - "end": { - "line": 15, - "column": 25 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1186, - "end": 1187, - "loc": { - "start": { - "line": 15, - "column": 25 - }, - "end": { - "line": 15, - "column": 26 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 1188, - "end": 1190, - "loc": { - "start": { - "line": 15, - "column": 27 - }, - "end": { - "line": 15, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1191, - "end": 1192, - "loc": { - "start": { - "line": 15, - "column": 30 - }, - "end": { - "line": 15, - "column": 31 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1192, - "end": 1193, - "loc": { - "start": { - "line": 15, - "column": 31 - }, - "end": { - "line": 15, - "column": 32 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1193, - "end": 1194, - "loc": { - "start": { - "line": 15, - "column": 32 - }, - "end": { - "line": 15, - "column": 33 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1194, - "end": 1195, - "loc": { - "start": { - "line": 15, - "column": 33 - }, - "end": { - "line": 15, - "column": 34 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1196, - "end": 1197, - "loc": { - "start": { - "line": 15, - "column": 35 - }, - "end": { - "line": 15, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1198, - "end": 1199, - "loc": { - "start": { - "line": 15, - "column": 37 - }, - "end": { - "line": 15, - "column": 38 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1199, - "end": 1200, - "loc": { - "start": { - "line": 15, - "column": 38 - }, - "end": { - "line": 15, - "column": 39 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1200, - "end": 1201, - "loc": { - "start": { - "line": 15, - "column": 39 - }, - "end": { - "line": 15, - "column": 40 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1201, - "end": 1202, - "loc": { - "start": { - "line": 15, - "column": 40 - }, - "end": { - "line": 15, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1202, - "end": 1203, - "loc": { - "start": { - "line": 15, - "column": 41 - }, - "end": { - "line": 15, - "column": 42 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1210, - "end": 1211, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 7 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1211, - "end": 1212, - "loc": { - "start": { - "line": 16, - "column": 7 - }, - "end": { - "line": 16, - "column": 8 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1212, - "end": 1213, - "loc": { - "start": { - "line": 16, - "column": 8 - }, - "end": { - "line": 16, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1213, - "end": 1214, - "loc": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1215, - "end": 1216, - "loc": { - "start": { - "line": 16, - "column": 11 - }, - "end": { - "line": 16, - "column": 12 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1217, - "end": 1218, - "loc": { - "start": { - "line": 16, - "column": 13 - }, - "end": { - "line": 16, - "column": 14 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1218, - "end": 1219, - "loc": { - "start": { - "line": 16, - "column": 14 - }, - "end": { - "line": 16, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1219, - "end": 1220, - "loc": { - "start": { - "line": 16, - "column": 15 - }, - "end": { - "line": 16, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1220, - "end": 1221, - "loc": { - "start": { - "line": 16, - "column": 16 - }, - "end": { - "line": 16, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1222, - "end": 1223, - "loc": { - "start": { - "line": 16, - "column": 18 - }, - "end": { - "line": 16, - "column": 19 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1224, - "end": 1225, - "loc": { - "start": { - "line": 16, - "column": 20 - }, - "end": { - "line": 16, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NaN", - "start": 1225, - "end": 1228, - "loc": { - "start": { - "line": 16, - "column": 21 - }, - "end": { - "line": 16, - "column": 24 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1228, - "end": 1229, - "loc": { - "start": { - "line": 16, - "column": 24 - }, - "end": { - "line": 16, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NaN", - "start": 1230, - "end": 1233, - "loc": { - "start": { - "line": 16, - "column": 26 - }, - "end": { - "line": 16, - "column": 29 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1233, - "end": 1234, - "loc": { - "start": { - "line": 16, - "column": 29 - }, - "end": { - "line": 16, - "column": 30 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1234, - "end": 1235, - "loc": { - "start": { - "line": 16, - "column": 30 - }, - "end": { - "line": 16, - "column": 31 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1235, - "end": 1238, - "loc": { - "start": { - "line": 16, - "column": 31 - }, - "end": { - "line": 16, - "column": 34 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1239, - "end": 1240, - "loc": { - "start": { - "line": 16, - "column": 35 - }, - "end": { - "line": 16, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1240, - "end": 1241, - "loc": { - "start": { - "line": 16, - "column": 36 - }, - "end": { - "line": 16, - "column": 37 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1242, - "end": 1243, - "loc": { - "start": { - "line": 16, - "column": 38 - }, - "end": { - "line": 16, - "column": 39 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1244, - "end": 1245, - "loc": { - "start": { - "line": 16, - "column": 40 - }, - "end": { - "line": 16, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1245, - "end": 1246, - "loc": { - "start": { - "line": 16, - "column": 41 - }, - "end": { - "line": 16, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1247, - "end": 1248, - "loc": { - "start": { - "line": 16, - "column": 43 - }, - "end": { - "line": 16, - "column": 44 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1249, - "end": 1250, - "loc": { - "start": { - "line": 16, - "column": 45 - }, - "end": { - "line": 16, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1251, - "end": 1252, - "loc": { - "start": { - "line": 16, - "column": 47 - }, - "end": { - "line": 16, - "column": 48 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1252, - "end": 1253, - "loc": { - "start": { - "line": 16, - "column": 48 - }, - "end": { - "line": 16, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1253, - "end": 1259, - "loc": { - "start": { - "line": 16, - "column": 49 - }, - "end": { - "line": 16, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1259, - "end": 1260, - "loc": { - "start": { - "line": 16, - "column": 55 - }, - "end": { - "line": 16, - "column": 56 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1261, - "end": 1263, - "loc": { - "start": { - "line": 16, - "column": 57 - }, - "end": { - "line": 16, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1263, - "end": 1264, - "loc": { - "start": { - "line": 16, - "column": 59 - }, - "end": { - "line": 16, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1264, - "end": 1265, - "loc": { - "start": { - "line": 16, - "column": 60 - }, - "end": { - "line": 16, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1266, - "end": 1267, - "loc": { - "start": { - "line": 16, - "column": 62 - }, - "end": { - "line": 16, - "column": 63 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1268, - "end": 1269, - "loc": { - "start": { - "line": 16, - "column": 64 - }, - "end": { - "line": 16, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1270, - "end": 1271, - "loc": { - "start": { - "line": 16, - "column": 66 - }, - "end": { - "line": 16, - "column": 67 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1271, - "end": 1272, - "loc": { - "start": { - "line": 16, - "column": 67 - }, - "end": { - "line": 16, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1272, - "end": 1273, - "loc": { - "start": { - "line": 16, - "column": 68 - }, - "end": { - "line": 16, - "column": 69 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1273, - "end": 1274, - "loc": { - "start": { - "line": 16, - "column": 69 - }, - "end": { - "line": 16, - "column": 70 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1274, - "end": 1275, - "loc": { - "start": { - "line": 16, - "column": 70 - }, - "end": { - "line": 16, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1276, - "end": 1277, - "loc": { - "start": { - "line": 16, - "column": 72 - }, - "end": { - "line": 16, - "column": 73 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1277, - "end": 1278, - "loc": { - "start": { - "line": 16, - "column": 73 - }, - "end": { - "line": 16, - "column": 74 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1278, - "end": 1279, - "loc": { - "start": { - "line": 16, - "column": 74 - }, - "end": { - "line": 16, - "column": 75 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1279, - "end": 1280, - "loc": { - "start": { - "line": 16, - "column": 75 - }, - "end": { - "line": 16, - "column": 76 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 1281, - "end": 1283, - "loc": { - "start": { - "line": 16, - "column": 77 - }, - "end": { - "line": 16, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1284, - "end": 1285, - "loc": { - "start": { - "line": 16, - "column": 80 - }, - "end": { - "line": 16, - "column": 81 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1285, - "end": 1286, - "loc": { - "start": { - "line": 16, - "column": 81 - }, - "end": { - "line": 16, - "column": 82 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1286, - "end": 1287, - "loc": { - "start": { - "line": 16, - "column": 82 - }, - "end": { - "line": 16, - "column": 83 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1287, - "end": 1288, - "loc": { - "start": { - "line": 16, - "column": 83 - }, - "end": { - "line": 16, - "column": 84 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1289, - "end": 1290, - "loc": { - "start": { - "line": 16, - "column": 85 - }, - "end": { - "line": 16, - "column": 86 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1291, - "end": 1292, - "loc": { - "start": { - "line": 16, - "column": 87 - }, - "end": { - "line": 16, - "column": 88 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1293, - "end": 1294, - "loc": { - "start": { - "line": 16, - "column": 89 - }, - "end": { - "line": 16, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1295, - "end": 1296, - "loc": { - "start": { - "line": 16, - "column": 91 - }, - "end": { - "line": 16, - "column": 92 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1296, - "end": 1297, - "loc": { - "start": { - "line": 16, - "column": 92 - }, - "end": { - "line": 16, - "column": 93 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1297, - "end": 1298, - "loc": { - "start": { - "line": 16, - "column": 93 - }, - "end": { - "line": 16, - "column": 94 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1298, - "end": 1299, - "loc": { - "start": { - "line": 16, - "column": 94 - }, - "end": { - "line": 16, - "column": 95 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1300, - "end": 1301, - "loc": { - "start": { - "line": 16, - "column": 96 - }, - "end": { - "line": 16, - "column": 97 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 1302, - "end": 1306, - "loc": { - "start": { - "line": 16, - "column": 98 - }, - "end": { - "line": 16, - "column": 102 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1306, - "end": 1307, - "loc": { - "start": { - "line": 16, - "column": 102 - }, - "end": { - "line": 16, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "max", - "start": 1307, - "end": 1310, - "loc": { - "start": { - "line": 16, - "column": 103 - }, - "end": { - "line": 16, - "column": 106 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1310, - "end": 1311, - "loc": { - "start": { - "line": 16, - "column": 106 - }, - "end": { - "line": 16, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1311, - "end": 1312, - "loc": { - "start": { - "line": 16, - "column": 107 - }, - "end": { - "line": 16, - "column": 108 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1312, - "end": 1313, - "loc": { - "start": { - "line": 16, - "column": 108 - }, - "end": { - "line": 16, - "column": 109 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1313, - "end": 1314, - "loc": { - "start": { - "line": 16, - "column": 109 - }, - "end": { - "line": 16, - "column": 110 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1314, - "end": 1315, - "loc": { - "start": { - "line": 16, - "column": 110 - }, - "end": { - "line": 16, - "column": 111 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1315, - "end": 1316, - "loc": { - "start": { - "line": 16, - "column": 111 - }, - "end": { - "line": 16, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1317, - "end": 1318, - "loc": { - "start": { - "line": 16, - "column": 113 - }, - "end": { - "line": 16, - "column": 114 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1318, - "end": 1319, - "loc": { - "start": { - "line": 16, - "column": 114 - }, - "end": { - "line": 16, - "column": 115 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1319, - "end": 1320, - "loc": { - "start": { - "line": 16, - "column": 115 - }, - "end": { - "line": 16, - "column": 116 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1320, - "end": 1321, - "loc": { - "start": { - "line": 16, - "column": 116 - }, - "end": { - "line": 16, - "column": 117 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1321, - "end": 1322, - "loc": { - "start": { - "line": 16, - "column": 117 - }, - "end": { - "line": 16, - "column": 118 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1323, - "end": 1324, - "loc": { - "start": { - "line": 16, - "column": 119 - }, - "end": { - "line": 16, - "column": 120 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1325, - "end": 1326, - "loc": { - "start": { - "line": 16, - "column": 121 - }, - "end": { - "line": 16, - "column": 122 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1326, - "end": 1327, - "loc": { - "start": { - "line": 16, - "column": 122 - }, - "end": { - "line": 16, - "column": 123 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1327, - "end": 1331, - "loc": { - "start": { - "line": 16, - "column": 123 - }, - "end": { - "line": 16, - "column": 127 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1331, - "end": 1332, - "loc": { - "start": { - "line": 16, - "column": 127 - }, - "end": { - "line": 16, - "column": 128 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1332, - "end": 1333, - "loc": { - "start": { - "line": 16, - "column": 128 - }, - "end": { - "line": 16, - "column": 129 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1334, - "end": 1335, - "loc": { - "start": { - "line": 16, - "column": 130 - }, - "end": { - "line": 16, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1336, - "end": 1337, - "loc": { - "start": { - "line": 16, - "column": 132 - }, - "end": { - "line": 16, - "column": 133 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1337, - "end": 1338, - "loc": { - "start": { - "line": 16, - "column": 133 - }, - "end": { - "line": 16, - "column": 134 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1338, - "end": 1339, - "loc": { - "start": { - "line": 16, - "column": 134 - }, - "end": { - "line": 16, - "column": 135 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1339, - "end": 1340, - "loc": { - "start": { - "line": 16, - "column": 135 - }, - "end": { - "line": 16, - "column": 136 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1341, - "end": 1342, - "loc": { - "start": { - "line": 16, - "column": 137 - }, - "end": { - "line": 16, - "column": 138 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1343, - "end": 1344, - "loc": { - "start": { - "line": 16, - "column": 139 - }, - "end": { - "line": 16, - "column": 140 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "[", - "start": 1344, - "end": 1347, - "loc": { - "start": { - "line": 16, - "column": 140 - }, - "end": { - "line": 16, - "column": 143 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1347, - "end": 1348, - "loc": { - "start": { - "line": 16, - "column": 143 - }, - "end": { - "line": 16, - "column": 144 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1348, - "end": 1349, - "loc": { - "start": { - "line": 16, - "column": 144 - }, - "end": { - "line": 16, - "column": 145 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 1349, - "end": 1350, - "loc": { - "start": { - "line": 16, - "column": 145 - }, - "end": { - "line": 16, - "column": 146 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1351, - "end": 1353, - "loc": { - "start": { - "line": 16, - "column": 147 - }, - "end": { - "line": 16, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1354, - "end": 1355, - "loc": { - "start": { - "line": 16, - "column": 150 - }, - "end": { - "line": 16, - "column": 151 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1355, - "end": 1356, - "loc": { - "start": { - "line": 16, - "column": 151 - }, - "end": { - "line": 16, - "column": 152 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1356, - "end": 1360, - "loc": { - "start": { - "line": 16, - "column": 152 - }, - "end": { - "line": 16, - "column": 156 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1360, - "end": 1361, - "loc": { - "start": { - "line": 16, - "column": 156 - }, - "end": { - "line": 16, - "column": 157 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "^", - "start": 1361, - "end": 1364, - "loc": { - "start": { - "line": 16, - "column": 157 - }, - "end": { - "line": 16, - "column": 160 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1364, - "end": 1365, - "loc": { - "start": { - "line": 16, - "column": 160 - }, - "end": { - "line": 16, - "column": 161 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1365, - "end": 1366, - "loc": { - "start": { - "line": 16, - "column": 161 - }, - "end": { - "line": 16, - "column": 162 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1366, - "end": 1367, - "loc": { - "start": { - "line": 16, - "column": 162 - }, - "end": { - "line": 16, - "column": 163 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1367, - "end": 1368, - "loc": { - "start": { - "line": 16, - "column": 163 - }, - "end": { - "line": 16, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1368, - "end": 1372, - "loc": { - "start": { - "line": 16, - "column": 164 - }, - "end": { - "line": 16, - "column": 168 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1372, - "end": 1373, - "loc": { - "start": { - "line": 16, - "column": 168 - }, - "end": { - "line": 16, - "column": 169 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "apply", - "start": 1373, - "end": 1378, - "loc": { - "start": { - "line": 16, - "column": 169 - }, - "end": { - "line": 16, - "column": 174 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1378, - "end": 1379, - "loc": { - "start": { - "line": 16, - "column": 174 - }, - "end": { - "line": 16, - "column": 175 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1379, - "end": 1380, - "loc": { - "start": { - "line": 16, - "column": 175 - }, - "end": { - "line": 16, - "column": 176 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1380, - "end": 1381, - "loc": { - "start": { - "line": 16, - "column": 176 - }, - "end": { - "line": 16, - "column": 177 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1382, - "end": 1383, - "loc": { - "start": { - "line": 16, - "column": 178 - }, - "end": { - "line": 16, - "column": 179 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1383, - "end": 1384, - "loc": { - "start": { - "line": 16, - "column": 179 - }, - "end": { - "line": 16, - "column": 180 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1384, - "end": 1385, - "loc": { - "start": { - "line": 16, - "column": 180 - }, - "end": { - "line": 16, - "column": 181 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1385, - "end": 1388, - "loc": { - "start": { - "line": 16, - "column": 181 - }, - "end": { - "line": 16, - "column": 184 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1389, - "end": 1390, - "loc": { - "start": { - "line": 16, - "column": 185 - }, - "end": { - "line": 16, - "column": 186 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1390, - "end": 1391, - "loc": { - "start": { - "line": 16, - "column": 186 - }, - "end": { - "line": 16, - "column": 187 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1392, - "end": 1393, - "loc": { - "start": { - "line": 16, - "column": 188 - }, - "end": { - "line": 16, - "column": 189 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1394, - "end": 1395, - "loc": { - "start": { - "line": 16, - "column": 190 - }, - "end": { - "line": 16, - "column": 191 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1395, - "end": 1396, - "loc": { - "start": { - "line": 16, - "column": 191 - }, - "end": { - "line": 16, - "column": 192 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1397, - "end": 1398, - "loc": { - "start": { - "line": 16, - "column": 193 - }, - "end": { - "line": 16, - "column": 194 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1399, - "end": 1400, - "loc": { - "start": { - "line": 16, - "column": 195 - }, - "end": { - "line": 16, - "column": 196 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1401, - "end": 1402, - "loc": { - "start": { - "line": 16, - "column": 197 - }, - "end": { - "line": 16, - "column": 198 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1402, - "end": 1403, - "loc": { - "start": { - "line": 16, - "column": 198 - }, - "end": { - "line": 16, - "column": 199 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1403, - "end": 1409, - "loc": { - "start": { - "line": 16, - "column": 199 - }, - "end": { - "line": 16, - "column": 205 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1409, - "end": 1410, - "loc": { - "start": { - "line": 16, - "column": 205 - }, - "end": { - "line": 16, - "column": 206 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1411, - "end": 1413, - "loc": { - "start": { - "line": 16, - "column": 207 - }, - "end": { - "line": 16, - "column": 209 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1413, - "end": 1414, - "loc": { - "start": { - "line": 16, - "column": 209 - }, - "end": { - "line": 16, - "column": 210 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1414, - "end": 1415, - "loc": { - "start": { - "line": 16, - "column": 210 - }, - "end": { - "line": 16, - "column": 211 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1416, - "end": 1417, - "loc": { - "start": { - "line": 16, - "column": 212 - }, - "end": { - "line": 16, - "column": 213 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1418, - "end": 1419, - "loc": { - "start": { - "line": 16, - "column": 214 - }, - "end": { - "line": 16, - "column": 215 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1420, - "end": 1421, - "loc": { - "start": { - "line": 16, - "column": 216 - }, - "end": { - "line": 16, - "column": 217 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1421, - "end": 1422, - "loc": { - "start": { - "line": 16, - "column": 217 - }, - "end": { - "line": 16, - "column": 218 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1422, - "end": 1423, - "loc": { - "start": { - "line": 16, - "column": 218 - }, - "end": { - "line": 16, - "column": 219 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1423, - "end": 1424, - "loc": { - "start": { - "line": 16, - "column": 219 - }, - "end": { - "line": 16, - "column": 220 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1424, - "end": 1425, - "loc": { - "start": { - "line": 16, - "column": 220 - }, - "end": { - "line": 16, - "column": 221 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1426, - "end": 1427, - "loc": { - "start": { - "line": 16, - "column": 222 - }, - "end": { - "line": 16, - "column": 223 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1427, - "end": 1428, - "loc": { - "start": { - "line": 16, - "column": 223 - }, - "end": { - "line": 16, - "column": 224 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1428, - "end": 1432, - "loc": { - "start": { - "line": 16, - "column": 224 - }, - "end": { - "line": 16, - "column": 228 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1432, - "end": 1433, - "loc": { - "start": { - "line": 16, - "column": 228 - }, - "end": { - "line": 16, - "column": 229 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 1433, - "end": 1434, - "loc": { - "start": { - "line": 16, - "column": 229 - }, - "end": { - "line": 16, - "column": 230 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1434, - "end": 1435, - "loc": { - "start": { - "line": 16, - "column": 230 - }, - "end": { - "line": 16, - "column": 231 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1435, - "end": 1436, - "loc": { - "start": { - "line": 16, - "column": 231 - }, - "end": { - "line": 16, - "column": 232 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1436, - "end": 1437, - "loc": { - "start": { - "line": 16, - "column": 232 - }, - "end": { - "line": 16, - "column": 233 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1437, - "end": 1438, - "loc": { - "start": { - "line": 16, - "column": 233 - }, - "end": { - "line": 16, - "column": 234 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1438, - "end": 1439, - "loc": { - "start": { - "line": 16, - "column": 234 - }, - "end": { - "line": 16, - "column": 235 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1439, - "end": 1440, - "loc": { - "start": { - "line": 16, - "column": 235 - }, - "end": { - "line": 16, - "column": 236 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1440, - "end": 1441, - "loc": { - "start": { - "line": 16, - "column": 236 - }, - "end": { - "line": 16, - "column": 237 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1441, - "end": 1442, - "loc": { - "start": { - "line": 16, - "column": 237 - }, - "end": { - "line": 16, - "column": 238 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1443, - "end": 1444, - "loc": { - "start": { - "line": 16, - "column": 239 - }, - "end": { - "line": 16, - "column": 240 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1444, - "end": 1445, - "loc": { - "start": { - "line": 16, - "column": 240 - }, - "end": { - "line": 16, - "column": 241 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1445, - "end": 1446, - "loc": { - "start": { - "line": 16, - "column": 241 - }, - "end": { - "line": 16, - "column": 242 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1446, - "end": 1447, - "loc": { - "start": { - "line": 16, - "column": 242 - }, - "end": { - "line": 16, - "column": 243 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 1448, - "end": 1449, - "loc": { - "start": { - "line": 16, - "column": 244 - }, - "end": { - "line": 16, - "column": 245 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1450, - "end": 1451, - "loc": { - "start": { - "line": 16, - "column": 246 - }, - "end": { - "line": 16, - "column": 247 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1451, - "end": 1452, - "loc": { - "start": { - "line": 16, - "column": 247 - }, - "end": { - "line": 16, - "column": 248 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1452, - "end": 1453, - "loc": { - "start": { - "line": 16, - "column": 248 - }, - "end": { - "line": 16, - "column": 249 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1453, - "end": 1454, - "loc": { - "start": { - "line": 16, - "column": 249 - }, - "end": { - "line": 16, - "column": 250 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1455, - "end": 1457, - "loc": { - "start": { - "line": 16, - "column": 251 - }, - "end": { - "line": 16, - "column": 253 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1458, - "end": 1459, - "loc": { - "start": { - "line": 16, - "column": 254 - }, - "end": { - "line": 16, - "column": 255 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1459, - "end": 1460, - "loc": { - "start": { - "line": 16, - "column": 255 - }, - "end": { - "line": 16, - "column": 256 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1460, - "end": 1461, - "loc": { - "start": { - "line": 16, - "column": 256 - }, - "end": { - "line": 16, - "column": 257 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1461, - "end": 1462, - "loc": { - "start": { - "line": 16, - "column": 257 - }, - "end": { - "line": 16, - "column": 258 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1462, - "end": 1463, - "loc": { - "start": { - "line": 16, - "column": 258 - }, - "end": { - "line": 16, - "column": 259 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1464, - "end": 1465, - "loc": { - "start": { - "line": 16, - "column": 260 - }, - "end": { - "line": 16, - "column": 261 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1466, - "end": 1467, - "loc": { - "start": { - "line": 16, - "column": 262 - }, - "end": { - "line": 16, - "column": 263 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 1468, - "end": 1469, - "loc": { - "start": { - "line": 16, - "column": 264 - }, - "end": { - "line": 16, - "column": 265 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1470, - "end": 1471, - "loc": { - "start": { - "line": 16, - "column": 266 - }, - "end": { - "line": 16, - "column": 267 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1471, - "end": 1472, - "loc": { - "start": { - "line": 16, - "column": 267 - }, - "end": { - "line": 16, - "column": 268 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1472, - "end": 1473, - "loc": { - "start": { - "line": 16, - "column": 268 - }, - "end": { - "line": 16, - "column": 269 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1473, - "end": 1474, - "loc": { - "start": { - "line": 16, - "column": 269 - }, - "end": { - "line": 16, - "column": 270 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1475, - "end": 1477, - "loc": { - "start": { - "line": 16, - "column": 271 - }, - "end": { - "line": 16, - "column": 273 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1478, - "end": 1479, - "loc": { - "start": { - "line": 16, - "column": 274 - }, - "end": { - "line": 16, - "column": 275 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1479, - "end": 1480, - "loc": { - "start": { - "line": 16, - "column": 275 - }, - "end": { - "line": 16, - "column": 276 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1480, - "end": 1484, - "loc": { - "start": { - "line": 16, - "column": 276 - }, - "end": { - "line": 16, - "column": 280 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1484, - "end": 1485, - "loc": { - "start": { - "line": 16, - "column": 280 - }, - "end": { - "line": 16, - "column": 281 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "-", - "start": 1485, - "end": 1488, - "loc": { - "start": { - "line": 16, - "column": 281 - }, - "end": { - "line": 16, - "column": 284 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1488, - "end": 1489, - "loc": { - "start": { - "line": 16, - "column": 284 - }, - "end": { - "line": 16, - "column": 285 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1489, - "end": 1490, - "loc": { - "start": { - "line": 16, - "column": 285 - }, - "end": { - "line": 16, - "column": 286 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1491, - "end": 1492, - "loc": { - "start": { - "line": 16, - "column": 287 - }, - "end": { - "line": 16, - "column": 288 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1492, - "end": 1493, - "loc": { - "start": { - "line": 16, - "column": 288 - }, - "end": { - "line": 16, - "column": 289 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1493, - "end": 1497, - "loc": { - "start": { - "line": 16, - "column": 289 - }, - "end": { - "line": 16, - "column": 293 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1497, - "end": 1498, - "loc": { - "start": { - "line": 16, - "column": 293 - }, - "end": { - "line": 16, - "column": 294 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 1498, - "end": 1499, - "loc": { - "start": { - "line": 16, - "column": 294 - }, - "end": { - "line": 16, - "column": 295 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1499, - "end": 1500, - "loc": { - "start": { - "line": 16, - "column": 295 - }, - "end": { - "line": 16, - "column": 296 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1500, - "end": 1501, - "loc": { - "start": { - "line": 16, - "column": 296 - }, - "end": { - "line": 16, - "column": 297 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1501, - "end": 1502, - "loc": { - "start": { - "line": 16, - "column": 297 - }, - "end": { - "line": 16, - "column": 298 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1502, - "end": 1503, - "loc": { - "start": { - "line": 16, - "column": 298 - }, - "end": { - "line": 16, - "column": 299 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1503, - "end": 1504, - "loc": { - "start": { - "line": 16, - "column": 299 - }, - "end": { - "line": 16, - "column": 300 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1504, - "end": 1505, - "loc": { - "start": { - "line": 16, - "column": 300 - }, - "end": { - "line": 16, - "column": 301 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1505, - "end": 1506, - "loc": { - "start": { - "line": 16, - "column": 301 - }, - "end": { - "line": 16, - "column": 302 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1506, - "end": 1507, - "loc": { - "start": { - "line": 16, - "column": 302 - }, - "end": { - "line": 16, - "column": 303 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1507, - "end": 1508, - "loc": { - "start": { - "line": 16, - "column": 303 - }, - "end": { - "line": 16, - "column": 304 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1508, - "end": 1509, - "loc": { - "start": { - "line": 16, - "column": 304 - }, - "end": { - "line": 16, - "column": 305 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1509, - "end": 1510, - "loc": { - "start": { - "line": 16, - "column": 305 - }, - "end": { - "line": 16, - "column": 306 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1510, - "end": 1514, - "loc": { - "start": { - "line": 16, - "column": 306 - }, - "end": { - "line": 16, - "column": 310 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1514, - "end": 1515, - "loc": { - "start": { - "line": 16, - "column": 310 - }, - "end": { - "line": 16, - "column": 311 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "]", - "start": 1515, - "end": 1518, - "loc": { - "start": { - "line": 16, - "column": 311 - }, - "end": { - "line": 16, - "column": 314 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1518, - "end": 1519, - "loc": { - "start": { - "line": 16, - "column": 314 - }, - "end": { - "line": 16, - "column": 315 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1519, - "end": 1520, - "loc": { - "start": { - "line": 16, - "column": 315 - }, - "end": { - "line": 16, - "column": 316 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 1520, - "end": 1526, - "loc": { - "start": { - "line": 16, - "column": 316 - }, - "end": { - "line": 16, - "column": 322 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1527, - "end": 1528, - "loc": { - "start": { - "line": 16, - "column": 323 - }, - "end": { - "line": 16, - "column": 324 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1528, - "end": 1529, - "loc": { - "start": { - "line": 16, - "column": 324 - }, - "end": { - "line": 16, - "column": 325 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "join", - "start": 1529, - "end": 1533, - "loc": { - "start": { - "line": 16, - "column": 325 - }, - "end": { - "line": 16, - "column": 329 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1533, - "end": 1534, - "loc": { - "start": { - "line": 16, - "column": 329 - }, - "end": { - "line": 16, - "column": 330 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 1534, - "end": 1536, - "loc": { - "start": { - "line": 16, - "column": 330 - }, - "end": { - "line": 16, - "column": 332 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1536, - "end": 1537, - "loc": { - "start": { - "line": 16, - "column": 332 - }, - "end": { - "line": 16, - "column": 333 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1537, - "end": 1538, - "loc": { - "start": { - "line": 16, - "column": 333 - }, - "end": { - "line": 16, - "column": 334 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1543, - "end": 1544, - "loc": { - "start": { - "line": 17, - "column": 4 - }, - "end": { - "line": 17, - "column": 5 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1544, - "end": 1552, - "loc": { - "start": { - "line": 17, - "column": 5 - }, - "end": { - "line": 17, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 1553, - "end": 1554, - "loc": { - "start": { - "line": 17, - "column": 14 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1554, - "end": 1555, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1555, - "end": 1556, - "loc": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1556, - "end": 1557, - "loc": { - "start": { - "line": 17, - "column": 17 - }, - "end": { - "line": 17, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1558, - "end": 1559, - "loc": { - "start": { - "line": 17, - "column": 19 - }, - "end": { - "line": 17, - "column": 20 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1566, - "end": 1569, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1570, - "end": 1571, - "loc": { - "start": { - "line": 18, - "column": 10 - }, - "end": { - "line": 18, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1571, - "end": 1574, - "loc": { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1575, - "end": 1576, - "loc": { - "start": { - "line": 18, - "column": 15 - }, - "end": { - "line": 18, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1577, - "end": 1578, - "loc": { - "start": { - "line": 18, - "column": 17 - }, - "end": { - "line": 18, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 1579, - "end": 1580, - "loc": { - "start": { - "line": 18, - "column": 19 - }, - "end": { - "line": 18, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1580, - "end": 1581, - "loc": { - "start": { - "line": 18, - "column": 20 - }, - "end": { - "line": 18, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "source", - "start": 1581, - "end": 1587, - "loc": { - "start": { - "line": 18, - "column": 21 - }, - "end": { - "line": 18, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1587, - "end": 1588, - "loc": { - "start": { - "line": 18, - "column": 27 - }, - "end": { - "line": 18, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 1588, - "end": 1593, - "loc": { - "start": { - "line": 18, - "column": 28 - }, - "end": { - "line": 18, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1593, - "end": 1594, - "loc": { - "start": { - "line": 18, - "column": 33 - }, - "end": { - "line": 18, - "column": 34 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*]|\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\\\d+|\\\\[^\\dux]|\\(\\?[!:=]|[()^]|[^()[\\\\^]+", - "flags": "g" - }, - "start": 1594, - "end": 1698, - "loc": { - "start": { - "line": 18, - "column": 34 - }, - "end": { - "line": 18, - "column": 138 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1698, - "end": 1699, - "loc": { - "start": { - "line": 18, - "column": 138 - }, - "end": { - "line": 18, - "column": 139 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1699, - "end": 1700, - "loc": { - "start": { - "line": 18, - "column": 139 - }, - "end": { - "line": 18, - "column": 140 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1701, - "end": 1702, - "loc": { - "start": { - "line": 18, - "column": 141 - }, - "end": { - "line": 18, - "column": 142 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1703, - "end": 1704, - "loc": { - "start": { - "line": 18, - "column": 143 - }, - "end": { - "line": 18, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1705, - "end": 1706, - "loc": { - "start": { - "line": 18, - "column": 145 - }, - "end": { - "line": 18, - "column": 146 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1706, - "end": 1707, - "loc": { - "start": { - "line": 18, - "column": 146 - }, - "end": { - "line": 18, - "column": 147 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1707, - "end": 1713, - "loc": { - "start": { - "line": 18, - "column": 147 - }, - "end": { - "line": 18, - "column": 153 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1713, - "end": 1714, - "loc": { - "start": { - "line": 18, - "column": 153 - }, - "end": { - "line": 18, - "column": 154 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1715, - "end": 1716, - "loc": { - "start": { - "line": 18, - "column": 155 - }, - "end": { - "line": 18, - "column": 156 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1717, - "end": 1718, - "loc": { - "start": { - "line": 18, - "column": 157 - }, - "end": { - "line": 18, - "column": 158 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1719, - "end": 1720, - "loc": { - "start": { - "line": 18, - "column": 159 - }, - "end": { - "line": 18, - "column": 160 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1720, - "end": 1721, - "loc": { - "start": { - "line": 18, - "column": 160 - }, - "end": { - "line": 18, - "column": 161 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1721, - "end": 1722, - "loc": { - "start": { - "line": 18, - "column": 161 - }, - "end": { - "line": 18, - "column": 162 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1723, - "end": 1724, - "loc": { - "start": { - "line": 18, - "column": 163 - }, - "end": { - "line": 18, - "column": 164 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1725, - "end": 1726, - "loc": { - "start": { - "line": 18, - "column": 165 - }, - "end": { - "line": 18, - "column": 166 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1727, - "end": 1728, - "loc": { - "start": { - "line": 18, - "column": 167 - }, - "end": { - "line": 18, - "column": 168 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1728, - "end": 1729, - "loc": { - "start": { - "line": 18, - "column": 168 - }, - "end": { - "line": 18, - "column": 169 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1730, - "end": 1731, - "loc": { - "start": { - "line": 18, - "column": 170 - }, - "end": { - "line": 18, - "column": 171 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1732, - "end": 1733, - "loc": { - "start": { - "line": 18, - "column": 172 - }, - "end": { - "line": 18, - "column": 173 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1734, - "end": 1735, - "loc": { - "start": { - "line": 18, - "column": 174 - }, - "end": { - "line": 18, - "column": 175 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1735, - "end": 1736, - "loc": { - "start": { - "line": 18, - "column": 175 - }, - "end": { - "line": 18, - "column": 176 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1737, - "end": 1738, - "loc": { - "start": { - "line": 18, - "column": 177 - }, - "end": { - "line": 18, - "column": 178 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1739, - "end": 1740, - "loc": { - "start": { - "line": 18, - "column": 179 - }, - "end": { - "line": 18, - "column": 180 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1741, - "end": 1742, - "loc": { - "start": { - "line": 18, - "column": 181 - }, - "end": { - "line": 18, - "column": 182 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1742, - "end": 1743, - "loc": { - "start": { - "line": 18, - "column": 182 - }, - "end": { - "line": 18, - "column": 183 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1744, - "end": 1746, - "loc": { - "start": { - "line": 18, - "column": 184 - }, - "end": { - "line": 18, - "column": 186 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1746, - "end": 1747, - "loc": { - "start": { - "line": 18, - "column": 186 - }, - "end": { - "line": 18, - "column": 187 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1747, - "end": 1748, - "loc": { - "start": { - "line": 18, - "column": 187 - }, - "end": { - "line": 18, - "column": 188 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1749, - "end": 1750, - "loc": { - "start": { - "line": 18, - "column": 189 - }, - "end": { - "line": 18, - "column": 190 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1759, - "end": 1762, - "loc": { - "start": { - "line": 19, - "column": 8 - }, - "end": { - "line": 19, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1763, - "end": 1764, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1765, - "end": 1766, - "loc": { - "start": { - "line": 19, - "column": 14 - }, - "end": { - "line": 19, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1767, - "end": 1768, - "loc": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1768, - "end": 1769, - "loc": { - "start": { - "line": 19, - "column": 17 - }, - "end": { - "line": 19, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1769, - "end": 1770, - "loc": { - "start": { - "line": 19, - "column": 18 - }, - "end": { - "line": 19, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1770, - "end": 1771, - "loc": { - "start": { - "line": 19, - "column": 19 - }, - "end": { - "line": 19, - "column": 20 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1771, - "end": 1772, - "loc": { - "start": { - "line": 19, - "column": 20 - }, - "end": { - "line": 19, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1772, - "end": 1773, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 22 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1774, - "end": 1777, - "loc": { - "start": { - "line": 19, - "column": 23 - }, - "end": { - "line": 19, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "(", - "start": 1778, - "end": 1781, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 30 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1782, - "end": 1783, - "loc": { - "start": { - "line": 19, - "column": 31 - }, - "end": { - "line": 19, - "column": 32 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1784, - "end": 1786, - "loc": { - "start": { - "line": 19, - "column": 33 - }, - "end": { - "line": 19, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1786, - "end": 1787, - "loc": { - "start": { - "line": 19, - "column": 35 - }, - "end": { - "line": 19, - "column": 36 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1788, - "end": 1789, - "loc": { - "start": { - "line": 19, - "column": 37 - }, - "end": { - "line": 19, - "column": 38 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 1790, - "end": 1794, - "loc": { - "start": { - "line": 19, - "column": 39 - }, - "end": { - "line": 19, - "column": 43 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1795, - "end": 1798, - "loc": { - "start": { - "line": 19, - "column": 44 - }, - "end": { - "line": 19, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1799, - "end": 1800, - "loc": { - "start": { - "line": 19, - "column": 48 - }, - "end": { - "line": 19, - "column": 49 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1800, - "end": 1801, - "loc": { - "start": { - "line": 19, - "column": 49 - }, - "end": { - "line": 19, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 1801, - "end": 1807, - "loc": { - "start": { - "line": 19, - "column": 50 - }, - "end": { - "line": 19, - "column": 56 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1807, - "end": 1808, - "loc": { - "start": { - "line": 19, - "column": 56 - }, - "end": { - "line": 19, - "column": 57 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1808, - "end": 1809, - "loc": { - "start": { - "line": 19, - "column": 57 - }, - "end": { - "line": 19, - "column": 58 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1809, - "end": 1810, - "loc": { - "start": { - "line": 19, - "column": 58 - }, - "end": { - "line": 19, - "column": 59 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1811, - "end": 1813, - "loc": { - "start": { - "line": 19, - "column": 60 - }, - "end": { - "line": 19, - "column": 62 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1814, - "end": 1815, - "loc": { - "start": { - "line": 19, - "column": 63 - }, - "end": { - "line": 19, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1815, - "end": 1816, - "loc": { - "start": { - "line": 19, - "column": 64 - }, - "end": { - "line": 19, - "column": 65 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1817, - "end": 1818, - "loc": { - "start": { - "line": 19, - "column": 66 - }, - "end": { - "line": 19, - "column": 67 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1819, - "end": 1820, - "loc": { - "start": { - "line": 19, - "column": 68 - }, - "end": { - "line": 19, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1820, - "end": 1821, - "loc": { - "start": { - "line": 19, - "column": 69 - }, - "end": { - "line": 19, - "column": 70 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1821, - "end": 1822, - "loc": { - "start": { - "line": 19, - "column": 70 - }, - "end": { - "line": 19, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 1822, - "end": 1831, - "loc": { - "start": { - "line": 19, - "column": 71 - }, - "end": { - "line": 19, - "column": 80 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1831, - "end": 1832, - "loc": { - "start": { - "line": 19, - "column": 80 - }, - "end": { - "line": 19, - "column": 81 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1832, - "end": 1833, - "loc": { - "start": { - "line": 19, - "column": 81 - }, - "end": { - "line": 19, - "column": 82 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1833, - "end": 1834, - "loc": { - "start": { - "line": 19, - "column": 82 - }, - "end": { - "line": 19, - "column": 83 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1834, - "end": 1835, - "loc": { - "start": { - "line": 19, - "column": 83 - }, - "end": { - "line": 19, - "column": 84 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1836, - "end": 1838, - "loc": { - "start": { - "line": 19, - "column": 85 - }, - "end": { - "line": 19, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1839, - "end": 1840, - "loc": { - "start": { - "line": 19, - "column": 88 - }, - "end": { - "line": 19, - "column": 89 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 1841, - "end": 1843, - "loc": { - "start": { - "line": 19, - "column": 90 - }, - "end": { - "line": 19, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1844, - "end": 1845, - "loc": { - "start": { - "line": 19, - "column": 93 - }, - "end": { - "line": 19, - "column": 94 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1846, - "end": 1848, - "loc": { - "start": { - "line": 19, - "column": 95 - }, - "end": { - "line": 19, - "column": 97 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1849, - "end": 1850, - "loc": { - "start": { - "line": 19, - "column": 98 - }, - "end": { - "line": 19, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1850, - "end": 1851, - "loc": { - "start": { - "line": 19, - "column": 99 - }, - "end": { - "line": 19, - "column": 100 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1851, - "end": 1852, - "loc": { - "start": { - "line": 19, - "column": 100 - }, - "end": { - "line": 19, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1852, - "end": 1853, - "loc": { - "start": { - "line": 19, - "column": 101 - }, - "end": { - "line": 19, - "column": 102 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1853, - "end": 1854, - "loc": { - "start": { - "line": 19, - "column": 102 - }, - "end": { - "line": 19, - "column": 103 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1855, - "end": 1856, - "loc": { - "start": { - "line": 19, - "column": 104 - }, - "end": { - "line": 19, - "column": 105 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1857, - "end": 1858, - "loc": { - "start": { - "line": 19, - "column": 106 - }, - "end": { - "line": 19, - "column": 107 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1858, - "end": 1859, - "loc": { - "start": { - "line": 19, - "column": 107 - }, - "end": { - "line": 19, - "column": 108 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1859, - "end": 1860, - "loc": { - "start": { - "line": 19, - "column": 108 - }, - "end": { - "line": 19, - "column": 109 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1860, - "end": 1861, - "loc": { - "start": { - "line": 19, - "column": 109 - }, - "end": { - "line": 19, - "column": 110 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1868, - "end": 1869, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 7 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1869, - "end": 1872, - "loc": { - "start": { - "line": 20, - "column": 7 - }, - "end": { - "line": 20, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1873, - "end": 1874, - "loc": { - "start": { - "line": 20, - "column": 11 - }, - "end": { - "line": 20, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1874, - "end": 1875, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1876, - "end": 1877, - "loc": { - "start": { - "line": 20, - "column": 14 - }, - "end": { - "line": 20, - "column": 15 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1878, - "end": 1879, - "loc": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1879, - "end": 1880, - "loc": { - "start": { - "line": 20, - "column": 17 - }, - "end": { - "line": 20, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1881, - "end": 1882, - "loc": { - "start": { - "line": 20, - "column": 19 - }, - "end": { - "line": 20, - "column": 20 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1883, - "end": 1884, - "loc": { - "start": { - "line": 20, - "column": 21 - }, - "end": { - "line": 20, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1885, - "end": 1886, - "loc": { - "start": { - "line": 20, - "column": 23 - }, - "end": { - "line": 20, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1886, - "end": 1887, - "loc": { - "start": { - "line": 20, - "column": 24 - }, - "end": { - "line": 20, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1887, - "end": 1893, - "loc": { - "start": { - "line": 20, - "column": 25 - }, - "end": { - "line": 20, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1893, - "end": 1894, - "loc": { - "start": { - "line": 20, - "column": 31 - }, - "end": { - "line": 20, - "column": 32 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1895, - "end": 1897, - "loc": { - "start": { - "line": 20, - "column": 33 - }, - "end": { - "line": 20, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1897, - "end": 1898, - "loc": { - "start": { - "line": 20, - "column": 35 - }, - "end": { - "line": 20, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1898, - "end": 1899, - "loc": { - "start": { - "line": 20, - "column": 36 - }, - "end": { - "line": 20, - "column": 37 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1900, - "end": 1901, - "loc": { - "start": { - "line": 20, - "column": 38 - }, - "end": { - "line": 20, - "column": 39 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1901, - "end": 1902, - "loc": { - "start": { - "line": 20, - "column": 39 - }, - "end": { - "line": 20, - "column": 40 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1903, - "end": 1906, - "loc": { - "start": { - "line": 20, - "column": 41 - }, - "end": { - "line": 20, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1907, - "end": 1908, - "loc": { - "start": { - "line": 20, - "column": 45 - }, - "end": { - "line": 20, - "column": 46 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1908, - "end": 1909, - "loc": { - "start": { - "line": 20, - "column": 46 - }, - "end": { - "line": 20, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1909, - "end": 1910, - "loc": { - "start": { - "line": 20, - "column": 47 - }, - "end": { - "line": 20, - "column": 48 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1910, - "end": 1911, - "loc": { - "start": { - "line": 20, - "column": 48 - }, - "end": { - "line": 20, - "column": 49 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1912, - "end": 1914, - "loc": { - "start": { - "line": 20, - "column": 50 - }, - "end": { - "line": 20, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1915, - "end": 1916, - "loc": { - "start": { - "line": 20, - "column": 53 - }, - "end": { - "line": 20, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1916, - "end": 1917, - "loc": { - "start": { - "line": 20, - "column": 54 - }, - "end": { - "line": 20, - "column": 55 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1917, - "end": 1918, - "loc": { - "start": { - "line": 20, - "column": 55 - }, - "end": { - "line": 20, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1918, - "end": 1919, - "loc": { - "start": { - "line": 20, - "column": 56 - }, - "end": { - "line": 20, - "column": 57 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1919, - "end": 1920, - "loc": { - "start": { - "line": 20, - "column": 57 - }, - "end": { - "line": 20, - "column": 58 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1921, - "end": 1922, - "loc": { - "start": { - "line": 20, - "column": 59 - }, - "end": { - "line": 20, - "column": 60 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1923, - "end": 1925, - "loc": { - "start": { - "line": 20, - "column": 61 - }, - "end": { - "line": 20, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 1925, - "end": 1926, - "loc": { - "start": { - "line": 20, - "column": 63 - }, - "end": { - "line": 20, - "column": 64 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1926, - "end": 1927, - "loc": { - "start": { - "line": 20, - "column": 64 - }, - "end": { - "line": 20, - "column": 65 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1927, - "end": 1928, - "loc": { - "start": { - "line": 20, - "column": 65 - }, - "end": { - "line": 20, - "column": 66 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1928, - "end": 1931, - "loc": { - "start": { - "line": 20, - "column": 66 - }, - "end": { - "line": 20, - "column": 69 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1932, - "end": 1933, - "loc": { - "start": { - "line": 20, - "column": 70 - }, - "end": { - "line": 20, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1933, - "end": 1934, - "loc": { - "start": { - "line": 20, - "column": 71 - }, - "end": { - "line": 20, - "column": 72 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1935, - "end": 1936, - "loc": { - "start": { - "line": 20, - "column": 73 - }, - "end": { - "line": 20, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1937, - "end": 1938, - "loc": { - "start": { - "line": 20, - "column": 75 - }, - "end": { - "line": 20, - "column": 76 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1939, - "end": 1940, - "loc": { - "start": { - "line": 20, - "column": 77 - }, - "end": { - "line": 20, - "column": 78 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1941, - "end": 1942, - "loc": { - "start": { - "line": 20, - "column": 79 - }, - "end": { - "line": 20, - "column": 80 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1942, - "end": 1943, - "loc": { - "start": { - "line": 20, - "column": 80 - }, - "end": { - "line": 20, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1944, - "end": 1945, - "loc": { - "start": { - "line": 20, - "column": 82 - }, - "end": { - "line": 20, - "column": 83 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1946, - "end": 1947, - "loc": { - "start": { - "line": 20, - "column": 84 - }, - "end": { - "line": 20, - "column": 85 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 1948, - "end": 1949, - "loc": { - "start": { - "line": 20, - "column": 86 - }, - "end": { - "line": 20, - "column": 87 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1949, - "end": 1950, - "loc": { - "start": { - "line": 20, - "column": 87 - }, - "end": { - "line": 20, - "column": 88 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1951, - "end": 1953, - "loc": { - "start": { - "line": 20, - "column": 89 - }, - "end": { - "line": 20, - "column": 91 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1953, - "end": 1954, - "loc": { - "start": { - "line": 20, - "column": 91 - }, - "end": { - "line": 20, - "column": 92 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1954, - "end": 1955, - "loc": { - "start": { - "line": 20, - "column": 92 - }, - "end": { - "line": 20, - "column": 93 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1956, - "end": 1957, - "loc": { - "start": { - "line": 20, - "column": 94 - }, - "end": { - "line": 20, - "column": 95 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1958, - "end": 1959, - "loc": { - "start": { - "line": 20, - "column": 96 - }, - "end": { - "line": 20, - "column": 97 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 1960, - "end": 1961, - "loc": { - "start": { - "line": 20, - "column": 98 - }, - "end": { - "line": 20, - "column": 99 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1961, - "end": 1962, - "loc": { - "start": { - "line": 20, - "column": 99 - }, - "end": { - "line": 20, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 1962, - "end": 1963, - "loc": { - "start": { - "line": 20, - "column": 100 - }, - "end": { - "line": 20, - "column": 101 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1963, - "end": 1964, - "loc": { - "start": { - "line": 20, - "column": 101 - }, - "end": { - "line": 20, - "column": 102 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1964, - "end": 1965, - "loc": { - "start": { - "line": 20, - "column": 102 - }, - "end": { - "line": 20, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 1966, - "end": 1967, - "loc": { - "start": { - "line": 20, - "column": 104 - }, - "end": { - "line": 20, - "column": 105 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1968, - "end": 1971, - "loc": { - "start": { - "line": 20, - "column": 106 - }, - "end": { - "line": 20, - "column": 109 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "(", - "start": 1972, - "end": 1975, - "loc": { - "start": { - "line": 20, - "column": 110 - }, - "end": { - "line": 20, - "column": 113 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1976, - "end": 1977, - "loc": { - "start": { - "line": 20, - "column": 114 - }, - "end": { - "line": 20, - "column": 115 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1978, - "end": 1979, - "loc": { - "start": { - "line": 20, - "column": 116 - }, - "end": { - "line": 20, - "column": 117 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1979, - "end": 1981, - "loc": { - "start": { - "line": 20, - "column": 117 - }, - "end": { - "line": 20, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1981, - "end": 1982, - "loc": { - "start": { - "line": 20, - "column": 119 - }, - "end": { - "line": 20, - "column": 120 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1982, - "end": 1983, - "loc": { - "start": { - "line": 20, - "column": 120 - }, - "end": { - "line": 20, - "column": 121 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 1984, - "end": 1985, - "loc": { - "start": { - "line": 20, - "column": 122 - }, - "end": { - "line": 20, - "column": 123 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1985, - "end": 1986, - "loc": { - "start": { - "line": 20, - "column": 123 - }, - "end": { - "line": 20, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1986, - "end": 1987, - "loc": { - "start": { - "line": 20, - "column": 124 - }, - "end": { - "line": 20, - "column": 125 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1987, - "end": 1988, - "loc": { - "start": { - "line": 20, - "column": 125 - }, - "end": { - "line": 20, - "column": 126 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1989, - "end": 1992, - "loc": { - "start": { - "line": 20, - "column": 127 - }, - "end": { - "line": 20, - "column": 130 - } - } - }, - { - "type": { - "label": "void", - "keyword": "void", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "void", - "start": 1993, - "end": 1997, - "loc": { - "start": { - "line": 20, - "column": 131 - }, - "end": { - "line": 20, - "column": 135 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1998, - "end": 1999, - "loc": { - "start": { - "line": 20, - "column": 136 - }, - "end": { - "line": 20, - "column": 137 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2000, - "end": 2002, - "loc": { - "start": { - "line": 20, - "column": 138 - }, - "end": { - "line": 20, - "column": 140 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2003, - "end": 2004, - "loc": { - "start": { - "line": 20, - "column": 141 - }, - "end": { - "line": 20, - "column": 142 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2004, - "end": 2005, - "loc": { - "start": { - "line": 20, - "column": 142 - }, - "end": { - "line": 20, - "column": 143 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2005, - "end": 2006, - "loc": { - "start": { - "line": 20, - "column": 143 - }, - "end": { - "line": 20, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2006, - "end": 2007, - "loc": { - "start": { - "line": 20, - "column": 144 - }, - "end": { - "line": 20, - "column": 145 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2007, - "end": 2008, - "loc": { - "start": { - "line": 20, - "column": 145 - }, - "end": { - "line": 20, - "column": 146 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2009, - "end": 2010, - "loc": { - "start": { - "line": 20, - "column": 147 - }, - "end": { - "line": 20, - "column": 148 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "(?:", - "start": 2011, - "end": 2016, - "loc": { - "start": { - "line": 20, - "column": 149 - }, - "end": { - "line": 20, - "column": 154 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2016, - "end": 2017, - "loc": { - "start": { - "line": 20, - "column": 154 - }, - "end": { - "line": 20, - "column": 155 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2017, - "end": 2018, - "loc": { - "start": { - "line": 20, - "column": 155 - }, - "end": { - "line": 20, - "column": 156 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2019, - "end": 2020, - "loc": { - "start": { - "line": 20, - "column": 157 - }, - "end": { - "line": 20, - "column": 158 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 2021, - "end": 2025, - "loc": { - "start": { - "line": 20, - "column": 159 - }, - "end": { - "line": 20, - "column": 163 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 2026, - "end": 2029, - "loc": { - "start": { - "line": 20, - "column": 164 - }, - "end": { - "line": 20, - "column": 167 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2030, - "end": 2031, - "loc": { - "start": { - "line": 20, - "column": 168 - }, - "end": { - "line": 20, - "column": 169 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2031, - "end": 2032, - "loc": { - "start": { - "line": 20, - "column": 169 - }, - "end": { - "line": 20, - "column": 170 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 2032, - "end": 2038, - "loc": { - "start": { - "line": 20, - "column": 170 - }, - "end": { - "line": 20, - "column": 176 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2038, - "end": 2039, - "loc": { - "start": { - "line": 20, - "column": 176 - }, - "end": { - "line": 20, - "column": 177 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2039, - "end": 2040, - "loc": { - "start": { - "line": 20, - "column": 177 - }, - "end": { - "line": 20, - "column": 178 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2040, - "end": 2041, - "loc": { - "start": { - "line": 20, - "column": 178 - }, - "end": { - "line": 20, - "column": 179 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2042, - "end": 2044, - "loc": { - "start": { - "line": 20, - "column": 180 - }, - "end": { - "line": 20, - "column": 182 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2045, - "end": 2046, - "loc": { - "start": { - "line": 20, - "column": 183 - }, - "end": { - "line": 20, - "column": 184 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2046, - "end": 2047, - "loc": { - "start": { - "line": 20, - "column": 184 - }, - "end": { - "line": 20, - "column": 185 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2048, - "end": 2049, - "loc": { - "start": { - "line": 20, - "column": 186 - }, - "end": { - "line": 20, - "column": 187 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2050, - "end": 2051, - "loc": { - "start": { - "line": 20, - "column": 188 - }, - "end": { - "line": 20, - "column": 189 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2051, - "end": 2052, - "loc": { - "start": { - "line": 20, - "column": 189 - }, - "end": { - "line": 20, - "column": 190 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2052, - "end": 2053, - "loc": { - "start": { - "line": 20, - "column": 190 - }, - "end": { - "line": 20, - "column": 191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 2053, - "end": 2062, - "loc": { - "start": { - "line": 20, - "column": 191 - }, - "end": { - "line": 20, - "column": 200 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2062, - "end": 2063, - "loc": { - "start": { - "line": 20, - "column": 200 - }, - "end": { - "line": 20, - "column": 201 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2063, - "end": 2064, - "loc": { - "start": { - "line": 20, - "column": 201 - }, - "end": { - "line": 20, - "column": 202 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2064, - "end": 2065, - "loc": { - "start": { - "line": 20, - "column": 202 - }, - "end": { - "line": 20, - "column": 203 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2065, - "end": 2066, - "loc": { - "start": { - "line": 20, - "column": 203 - }, - "end": { - "line": 20, - "column": 204 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2067, - "end": 2069, - "loc": { - "start": { - "line": 20, - "column": 205 - }, - "end": { - "line": 20, - "column": 207 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2070, - "end": 2071, - "loc": { - "start": { - "line": 20, - "column": 208 - }, - "end": { - "line": 20, - "column": 209 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 2072, - "end": 2074, - "loc": { - "start": { - "line": 20, - "column": 210 - }, - "end": { - "line": 20, - "column": 212 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 2075, - "end": 2076, - "loc": { - "start": { - "line": 20, - "column": 213 - }, - "end": { - "line": 20, - "column": 214 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2077, - "end": 2079, - "loc": { - "start": { - "line": 20, - "column": 215 - }, - "end": { - "line": 20, - "column": 217 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2080, - "end": 2081, - "loc": { - "start": { - "line": 20, - "column": 218 - }, - "end": { - "line": 20, - "column": 219 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2081, - "end": 2082, - "loc": { - "start": { - "line": 20, - "column": 219 - }, - "end": { - "line": 20, - "column": 220 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2082, - "end": 2083, - "loc": { - "start": { - "line": 20, - "column": 220 - }, - "end": { - "line": 20, - "column": 221 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2083, - "end": 2084, - "loc": { - "start": { - "line": 20, - "column": 221 - }, - "end": { - "line": 20, - "column": 222 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2084, - "end": 2085, - "loc": { - "start": { - "line": 20, - "column": 222 - }, - "end": { - "line": 20, - "column": 223 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2086, - "end": 2087, - "loc": { - "start": { - "line": 20, - "column": 224 - }, - "end": { - "line": 20, - "column": 225 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 2088, - "end": 2092, - "loc": { - "start": { - "line": 20, - "column": 226 - }, - "end": { - "line": 20, - "column": 230 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2093, - "end": 2094, - "loc": { - "start": { - "line": 20, - "column": 231 - }, - "end": { - "line": 20, - "column": 232 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 2095, - "end": 2096, - "loc": { - "start": { - "line": 20, - "column": 233 - }, - "end": { - "line": 20, - "column": 234 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2096, - "end": 2097, - "loc": { - "start": { - "line": 20, - "column": 234 - }, - "end": { - "line": 20, - "column": 235 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 2097, - "end": 2098, - "loc": { - "start": { - "line": 20, - "column": 235 - }, - "end": { - "line": 20, - "column": 236 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2098, - "end": 2099, - "loc": { - "start": { - "line": 20, - "column": 236 - }, - "end": { - "line": 20, - "column": 237 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2099, - "end": 2100, - "loc": { - "start": { - "line": 20, - "column": 237 - }, - "end": { - "line": 20, - "column": 238 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2100, - "end": 2101, - "loc": { - "start": { - "line": 20, - "column": 238 - }, - "end": { - "line": 20, - "column": 239 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 2101, - "end": 2104, - "loc": { - "start": { - "line": 20, - "column": 239 - }, - "end": { - "line": 20, - "column": 242 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2105, - "end": 2106, - "loc": { - "start": { - "line": 20, - "column": 243 - }, - "end": { - "line": 20, - "column": 244 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 2106, - "end": 2107, - "loc": { - "start": { - "line": 20, - "column": 244 - }, - "end": { - "line": 20, - "column": 245 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2108, - "end": 2109, - "loc": { - "start": { - "line": 20, - "column": 246 - }, - "end": { - "line": 20, - "column": 247 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2110, - "end": 2111, - "loc": { - "start": { - "line": 20, - "column": 248 - }, - "end": { - "line": 20, - "column": 249 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2112, - "end": 2113, - "loc": { - "start": { - "line": 20, - "column": 250 - }, - "end": { - "line": 20, - "column": 251 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2114, - "end": 2115, - "loc": { - "start": { - "line": 20, - "column": 252 - }, - "end": { - "line": 20, - "column": 253 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2115, - "end": 2116, - "loc": { - "start": { - "line": 20, - "column": 253 - }, - "end": { - "line": 20, - "column": 254 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2117, - "end": 2118, - "loc": { - "start": { - "line": 20, - "column": 255 - }, - "end": { - "line": 20, - "column": 256 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 2119, - "end": 2120, - "loc": { - "start": { - "line": 20, - "column": 257 - }, - "end": { - "line": 20, - "column": 258 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 2121, - "end": 2122, - "loc": { - "start": { - "line": 20, - "column": 259 - }, - "end": { - "line": 20, - "column": 260 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2122, - "end": 2123, - "loc": { - "start": { - "line": 20, - "column": 260 - }, - "end": { - "line": 20, - "column": 261 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 2124, - "end": 2126, - "loc": { - "start": { - "line": 20, - "column": 262 - }, - "end": { - "line": 20, - "column": 264 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2126, - "end": 2127, - "loc": { - "start": { - "line": 20, - "column": 264 - }, - "end": { - "line": 20, - "column": 265 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2127, - "end": 2128, - "loc": { - "start": { - "line": 20, - "column": 265 - }, - "end": { - "line": 20, - "column": 266 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "^", - "start": 2129, - "end": 2132, - "loc": { - "start": { - "line": 20, - "column": 267 - }, - "end": { - "line": 20, - "column": 270 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 2133, - "end": 2136, - "loc": { - "start": { - "line": 20, - "column": 271 - }, - "end": { - "line": 20, - "column": 274 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2137, - "end": 2138, - "loc": { - "start": { - "line": 20, - "column": 275 - }, - "end": { - "line": 20, - "column": 276 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2138, - "end": 2139, - "loc": { - "start": { - "line": 20, - "column": 276 - }, - "end": { - "line": 20, - "column": 277 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2139, - "end": 2140, - "loc": { - "start": { - "line": 20, - "column": 277 - }, - "end": { - "line": 20, - "column": 278 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2140, - "end": 2141, - "loc": { - "start": { - "line": 20, - "column": 278 - }, - "end": { - "line": 20, - "column": 279 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2142, - "end": 2144, - "loc": { - "start": { - "line": 20, - "column": 280 - }, - "end": { - "line": 20, - "column": 282 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "^", - "start": 2145, - "end": 2148, - "loc": { - "start": { - "line": 20, - "column": 283 - }, - "end": { - "line": 20, - "column": 286 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 2149, - "end": 2152, - "loc": { - "start": { - "line": 20, - "column": 287 - }, - "end": { - "line": 20, - "column": 290 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2153, - "end": 2154, - "loc": { - "start": { - "line": 20, - "column": 291 - }, - "end": { - "line": 20, - "column": 292 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2154, - "end": 2155, - "loc": { - "start": { - "line": 20, - "column": 292 - }, - "end": { - "line": 20, - "column": 293 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2155, - "end": 2156, - "loc": { - "start": { - "line": 20, - "column": 293 - }, - "end": { - "line": 20, - "column": 294 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2157, - "end": 2158, - "loc": { - "start": { - "line": 20, - "column": 295 - }, - "end": { - "line": 20, - "column": 296 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2159, - "end": 2160, - "loc": { - "start": { - "line": 20, - "column": 297 - }, - "end": { - "line": 20, - "column": 298 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2160, - "end": 2161, - "loc": { - "start": { - "line": 20, - "column": 298 - }, - "end": { - "line": 20, - "column": 299 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2162, - "end": 2164, - "loc": { - "start": { - "line": 20, - "column": 300 - }, - "end": { - "line": 20, - "column": 302 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2165, - "end": 2166, - "loc": { - "start": { - "line": 20, - "column": 303 - }, - "end": { - "line": 20, - "column": 304 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2166, - "end": 2167, - "loc": { - "start": { - "line": 20, - "column": 304 - }, - "end": { - "line": 20, - "column": 305 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2167, - "end": 2168, - "loc": { - "start": { - "line": 20, - "column": 305 - }, - "end": { - "line": 20, - "column": 306 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2168, - "end": 2169, - "loc": { - "start": { - "line": 20, - "column": 306 - }, - "end": { - "line": 20, - "column": 307 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2169, - "end": 2170, - "loc": { - "start": { - "line": 20, - "column": 307 - }, - "end": { - "line": 20, - "column": 308 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2171, - "end": 2172, - "loc": { - "start": { - "line": 20, - "column": 309 - }, - "end": { - "line": 20, - "column": 310 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 2173, - "end": 2175, - "loc": { - "start": { - "line": 20, - "column": 311 - }, - "end": { - "line": 20, - "column": 313 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2175, - "end": 2176, - "loc": { - "start": { - "line": 20, - "column": 313 - }, - "end": { - "line": 20, - "column": 314 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2176, - "end": 2177, - "loc": { - "start": { - "line": 20, - "column": 314 - }, - "end": { - "line": 20, - "column": 315 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2177, - "end": 2179, - "loc": { - "start": { - "line": 20, - "column": 315 - }, - "end": { - "line": 20, - "column": 317 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2180, - "end": 2181, - "loc": { - "start": { - "line": 20, - "column": 318 - }, - "end": { - "line": 20, - "column": 319 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2181, - "end": 2182, - "loc": { - "start": { - "line": 20, - "column": 319 - }, - "end": { - "line": 20, - "column": 320 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2182, - "end": 2183, - "loc": { - "start": { - "line": 20, - "column": 320 - }, - "end": { - "line": 20, - "column": 321 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ignoreCase", - "start": 2183, - "end": 2193, - "loc": { - "start": { - "line": 20, - "column": 321 - }, - "end": { - "line": 20, - "column": 331 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2194, - "end": 2196, - "loc": { - "start": { - "line": 20, - "column": 332 - }, - "end": { - "line": 20, - "column": 334 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 2197, - "end": 2198, - "loc": { - "start": { - "line": 20, - "column": 335 - }, - "end": { - "line": 20, - "column": 336 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2198, - "end": 2199, - "loc": { - "start": { - "line": 20, - "column": 336 - }, - "end": { - "line": 20, - "column": 337 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 2200, - "end": 2203, - "loc": { - "start": { - "line": 20, - "column": 338 - }, - "end": { - "line": 20, - "column": 341 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2204, - "end": 2205, - "loc": { - "start": { - "line": 20, - "column": 342 - }, - "end": { - "line": 20, - "column": 343 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2205, - "end": 2206, - "loc": { - "start": { - "line": 20, - "column": 343 - }, - "end": { - "line": 20, - "column": 344 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2207, - "end": 2208, - "loc": { - "start": { - "line": 20, - "column": 345 - }, - "end": { - "line": 20, - "column": 346 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2209, - "end": 2210, - "loc": { - "start": { - "line": 20, - "column": 347 - }, - "end": { - "line": 20, - "column": 348 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2210, - "end": 2211, - "loc": { - "start": { - "line": 20, - "column": 348 - }, - "end": { - "line": 20, - "column": 349 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2212, - "end": 2213, - "loc": { - "start": { - "line": 20, - "column": 350 - }, - "end": { - "line": 20, - "column": 351 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 2214, - "end": 2215, - "loc": { - "start": { - "line": 20, - "column": 352 - }, - "end": { - "line": 20, - "column": 353 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 2216, - "end": 2217, - "loc": { - "start": { - "line": 20, - "column": 354 - }, - "end": { - "line": 20, - "column": 355 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2217, - "end": 2218, - "loc": { - "start": { - "line": 20, - "column": 355 - }, - "end": { - "line": 20, - "column": 356 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 2219, - "end": 2221, - "loc": { - "start": { - "line": 20, - "column": 357 - }, - "end": { - "line": 20, - "column": 359 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2221, - "end": 2222, - "loc": { - "start": { - "line": 20, - "column": 359 - }, - "end": { - "line": 20, - "column": 360 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2222, - "end": 2223, - "loc": { - "start": { - "line": 20, - "column": 360 - }, - "end": { - "line": 20, - "column": 361 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2224, - "end": 2225, - "loc": { - "start": { - "line": 20, - "column": 362 - }, - "end": { - "line": 20, - "column": 363 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2226, - "end": 2227, - "loc": { - "start": { - "line": 20, - "column": 364 - }, - "end": { - "line": 20, - "column": 365 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2228, - "end": 2229, - "loc": { - "start": { - "line": 20, - "column": 366 - }, - "end": { - "line": 20, - "column": 367 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2229, - "end": 2230, - "loc": { - "start": { - "line": 20, - "column": 367 - }, - "end": { - "line": 20, - "column": 368 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2230, - "end": 2231, - "loc": { - "start": { - "line": 20, - "column": 368 - }, - "end": { - "line": 20, - "column": 369 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2231, - "end": 2232, - "loc": { - "start": { - "line": 20, - "column": 369 - }, - "end": { - "line": 20, - "column": 370 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2232, - "end": 2233, - "loc": { - "start": { - "line": 20, - "column": 370 - }, - "end": { - "line": 20, - "column": 371 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2234, - "end": 2235, - "loc": { - "start": { - "line": 20, - "column": 372 - }, - "end": { - "line": 20, - "column": 373 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2236, - "end": 2237, - "loc": { - "start": { - "line": 20, - "column": 374 - }, - "end": { - "line": 20, - "column": 375 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2238, - "end": 2239, - "loc": { - "start": { - "line": 20, - "column": 376 - }, - "end": { - "line": 20, - "column": 377 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2239, - "end": 2240, - "loc": { - "start": { - "line": 20, - "column": 377 - }, - "end": { - "line": 20, - "column": 378 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 2240, - "end": 2246, - "loc": { - "start": { - "line": 20, - "column": 378 - }, - "end": { - "line": 20, - "column": 384 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2246, - "end": 2247, - "loc": { - "start": { - "line": 20, - "column": 384 - }, - "end": { - "line": 20, - "column": 385 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2247, - "end": 2248, - "loc": { - "start": { - "line": 20, - "column": 385 - }, - "end": { - "line": 20, - "column": 386 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2248, - "end": 2249, - "loc": { - "start": { - "line": 20, - "column": 386 - }, - "end": { - "line": 20, - "column": 387 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2249, - "end": 2250, - "loc": { - "start": { - "line": 20, - "column": 387 - }, - "end": { - "line": 20, - "column": 388 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2251, - "end": 2252, - "loc": { - "start": { - "line": 20, - "column": 389 - }, - "end": { - "line": 20, - "column": 390 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2252, - "end": 2253, - "loc": { - "start": { - "line": 20, - "column": 390 - }, - "end": { - "line": 20, - "column": 391 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 2253, - "end": 2259, - "loc": { - "start": { - "line": 20, - "column": 391 - }, - "end": { - "line": 20, - "column": 397 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 2260, - "end": 2262, - "loc": { - "start": { - "line": 20, - "column": 398 - }, - "end": { - "line": 20, - "column": 400 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 2263, - "end": 2264, - "loc": { - "start": { - "line": 20, - "column": 401 - }, - "end": { - "line": 20, - "column": 402 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2265, - "end": 2267, - "loc": { - "start": { - "line": 20, - "column": 403 - }, - "end": { - "line": 20, - "column": 405 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2268, - "end": 2269, - "loc": { - "start": { - "line": 20, - "column": 406 - }, - "end": { - "line": 20, - "column": 407 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 2270, - "end": 2273, - "loc": { - "start": { - "line": 20, - "column": 408 - }, - "end": { - "line": 20, - "column": 411 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "[", - "start": 2274, - "end": 2277, - "loc": { - "start": { - "line": 20, - "column": 412 - }, - "end": { - "line": 20, - "column": 415 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2278, - "end": 2279, - "loc": { - "start": { - "line": 20, - "column": 416 - }, - "end": { - "line": 20, - "column": 417 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2280, - "end": 2281, - "loc": { - "start": { - "line": 20, - "column": 418 - }, - "end": { - "line": 20, - "column": 419 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2281, - "end": 2282, - "loc": { - "start": { - "line": 20, - "column": 419 - }, - "end": { - "line": 20, - "column": 420 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2282, - "end": 2283, - "loc": { - "start": { - "line": 20, - "column": 420 - }, - "end": { - "line": 20, - "column": 421 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2283, - "end": 2284, - "loc": { - "start": { - "line": 20, - "column": 421 - }, - "end": { - "line": 20, - "column": 422 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2285, - "end": 2286, - "loc": { - "start": { - "line": 20, - "column": 423 - }, - "end": { - "line": 20, - "column": 424 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 2287, - "end": 2288, - "loc": { - "start": { - "line": 20, - "column": 425 - }, - "end": { - "line": 20, - "column": 426 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2288, - "end": 2289, - "loc": { - "start": { - "line": 20, - "column": 426 - }, - "end": { - "line": 20, - "column": 427 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2289, - "end": 2290, - "loc": { - "start": { - "line": 20, - "column": 427 - }, - "end": { - "line": 20, - "column": 428 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2290, - "end": 2291, - "loc": { - "start": { - "line": 20, - "column": 428 - }, - "end": { - "line": 20, - "column": 429 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2292, - "end": 2293, - "loc": { - "start": { - "line": 20, - "column": 430 - }, - "end": { - "line": 20, - "column": 431 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2294, - "end": 2295, - "loc": { - "start": { - "line": 20, - "column": 432 - }, - "end": { - "line": 20, - "column": 433 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 2296, - "end": 2299, - "loc": { - "start": { - "line": 20, - "column": 434 - }, - "end": { - "line": 20, - "column": 437 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\", - "start": 2300, - "end": 2304, - "loc": { - "start": { - "line": 20, - "column": 438 - }, - "end": { - "line": 20, - "column": 442 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2305, - "end": 2307, - "loc": { - "start": { - "line": 20, - "column": 443 - }, - "end": { - "line": 20, - "column": 445 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2308, - "end": 2309, - "loc": { - "start": { - "line": 20, - "column": 446 - }, - "end": { - "line": 20, - "column": 447 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2309, - "end": 2310, - "loc": { - "start": { - "line": 20, - "column": 447 - }, - "end": { - "line": 20, - "column": 448 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2310, - "end": 2311, - "loc": { - "start": { - "line": 20, - "column": 448 - }, - "end": { - "line": 20, - "column": 449 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 2311, - "end": 2312, - "loc": { - "start": { - "line": 20, - "column": 449 - }, - "end": { - "line": 20, - "column": 450 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2312, - "end": 2313, - "loc": { - "start": { - "line": 20, - "column": 450 - }, - "end": { - "line": 20, - "column": 451 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2314, - "end": 2315, - "loc": { - "start": { - "line": 20, - "column": 452 - }, - "end": { - "line": 20, - "column": 453 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 2316, - "end": 2317, - "loc": { - "start": { - "line": 20, - "column": 454 - }, - "end": { - "line": 20, - "column": 455 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2317, - "end": 2318, - "loc": { - "start": { - "line": 20, - "column": 455 - }, - "end": { - "line": 20, - "column": 456 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 2318, - "end": 2325, - "loc": { - "start": { - "line": 20, - "column": 456 - }, - "end": { - "line": 20, - "column": 463 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2325, - "end": 2326, - "loc": { - "start": { - "line": 20, - "column": 463 - }, - "end": { - "line": 20, - "column": 464 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "[A-Za-z]", - "flags": "g" - }, - "start": 2326, - "end": 2337, - "loc": { - "start": { - "line": 20, - "column": 464 - }, - "end": { - "line": 20, - "column": 475 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2337, - "end": 2338, - "loc": { - "start": { - "line": 20, - "column": 475 - }, - "end": { - "line": 20, - "column": 476 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 2339, - "end": 2347, - "loc": { - "start": { - "line": 20, - "column": 477 - }, - "end": { - "line": 20, - "column": 485 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2348, - "end": 2349, - "loc": { - "start": { - "line": 20, - "column": 486 - }, - "end": { - "line": 20, - "column": 487 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2349, - "end": 2350, - "loc": { - "start": { - "line": 20, - "column": 487 - }, - "end": { - "line": 20, - "column": 488 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2350, - "end": 2351, - "loc": { - "start": { - "line": 20, - "column": 488 - }, - "end": { - "line": 20, - "column": 489 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2352, - "end": 2353, - "loc": { - "start": { - "line": 20, - "column": 490 - }, - "end": { - "line": 20, - "column": 491 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2362, - "end": 2363, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2364, - "end": 2365, - "loc": { - "start": { - "line": 21, - "column": 10 - }, - "end": { - "line": 21, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2366, - "end": 2367, - "loc": { - "start": { - "line": 21, - "column": 12 - }, - "end": { - "line": 21, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2367, - "end": 2368, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charCodeAt", - "start": 2368, - "end": 2378, - "loc": { - "start": { - "line": 21, - "column": 14 - }, - "end": { - "line": 21, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2378, - "end": 2379, - "loc": { - "start": { - "line": 21, - "column": 24 - }, - "end": { - "line": 21, - "column": 25 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2379, - "end": 2380, - "loc": { - "start": { - "line": 21, - "column": 25 - }, - "end": { - "line": 21, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2380, - "end": 2381, - "loc": { - "start": { - "line": 21, - "column": 26 - }, - "end": { - "line": 21, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2381, - "end": 2382, - "loc": { - "start": { - "line": 21, - "column": 27 - }, - "end": { - "line": 21, - "column": 28 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2382, - "end": 2388, - "loc": { - "start": { - "line": 21, - "column": 28 - }, - "end": { - "line": 21, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "[", - "start": 2389, - "end": 2392, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 38 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2393, - "end": 2394, - "loc": { - "start": { - "line": 21, - "column": 39 - }, - "end": { - "line": 21, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "String", - "start": 2395, - "end": 2401, - "loc": { - "start": { - "line": 21, - "column": 41 - }, - "end": { - "line": 21, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2401, - "end": 2402, - "loc": { - "start": { - "line": 21, - "column": 47 - }, - "end": { - "line": 21, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "fromCharCode", - "start": 2402, - "end": 2414, - "loc": { - "start": { - "line": 21, - "column": 48 - }, - "end": { - "line": 21, - "column": 60 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2414, - "end": 2415, - "loc": { - "start": { - "line": 21, - "column": 60 - }, - "end": { - "line": 21, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2415, - "end": 2416, - "loc": { - "start": { - "line": 21, - "column": 61 - }, - "end": { - "line": 21, - "column": 62 - } - } - }, - { - "type": { - "label": "&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 5, - "updateContext": null - }, - "value": "&", - "start": 2417, - "end": 2418, - "loc": { - "start": { - "line": 21, - "column": 63 - }, - "end": { - "line": 21, - "column": 64 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 2419, - "end": 2420, - "loc": { - "start": { - "line": 21, - "column": 65 - }, - "end": { - "line": 21, - "column": 66 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 33, - "start": 2420, - "end": 2422, - "loc": { - "start": { - "line": 21, - "column": 66 - }, - "end": { - "line": 21, - "column": 68 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2422, - "end": 2423, - "loc": { - "start": { - "line": 21, - "column": 68 - }, - "end": { - "line": 21, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2424, - "end": 2425, - "loc": { - "start": { - "line": 21, - "column": 70 - }, - "end": { - "line": 21, - "column": 71 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 2426, - "end": 2427, - "loc": { - "start": { - "line": 21, - "column": 72 - }, - "end": { - "line": 21, - "column": 73 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 32, - "start": 2428, - "end": 2430, - "loc": { - "start": { - "line": 21, - "column": 74 - }, - "end": { - "line": 21, - "column": 76 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2430, - "end": 2431, - "loc": { - "start": { - "line": 21, - "column": 76 - }, - "end": { - "line": 21, - "column": 77 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2432, - "end": 2433, - "loc": { - "start": { - "line": 21, - "column": 78 - }, - "end": { - "line": 21, - "column": 79 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "]", - "start": 2434, - "end": 2437, - "loc": { - "start": { - "line": 21, - "column": 80 - }, - "end": { - "line": 21, - "column": 83 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2437, - "end": 2438, - "loc": { - "start": { - "line": 21, - "column": 83 - }, - "end": { - "line": 21, - "column": 84 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2445, - "end": 2446, - "loc": { - "start": { - "line": 22, - "column": 6 - }, - "end": { - "line": 22, - "column": 7 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2446, - "end": 2447, - "loc": { - "start": { - "line": 22, - "column": 7 - }, - "end": { - "line": 22, - "column": 8 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2447, - "end": 2448, - "loc": { - "start": { - "line": 22, - "column": 8 - }, - "end": { - "line": 22, - "column": 9 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2448, - "end": 2449, - "loc": { - "start": { - "line": 22, - "column": 9 - }, - "end": { - "line": 22, - "column": 10 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2449, - "end": 2455, - "loc": { - "start": { - "line": 22, - "column": 10 - }, - "end": { - "line": 22, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2456, - "end": 2457, - "loc": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2457, - "end": 2458, - "loc": { - "start": { - "line": 22, - "column": 18 - }, - "end": { - "line": 22, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "join", - "start": 2458, - "end": 2462, - "loc": { - "start": { - "line": 22, - "column": 19 - }, - "end": { - "line": 22, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2462, - "end": 2463, - "loc": { - "start": { - "line": 22, - "column": 23 - }, - "end": { - "line": 22, - "column": 24 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 2463, - "end": 2465, - "loc": { - "start": { - "line": 22, - "column": 24 - }, - "end": { - "line": 22, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2465, - "end": 2466, - "loc": { - "start": { - "line": 22, - "column": 26 - }, - "end": { - "line": 22, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2466, - "end": 2467, - "loc": { - "start": { - "line": 22, - "column": 27 - }, - "end": { - "line": 22, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2472, - "end": 2473, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 5 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 2473, - "end": 2476, - "loc": { - "start": { - "line": 23, - "column": 5 - }, - "end": { - "line": 23, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2477, - "end": 2478, - "loc": { - "start": { - "line": 23, - "column": 9 - }, - "end": { - "line": 23, - "column": 10 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2478, - "end": 2481, - "loc": { - "start": { - "line": 23, - "column": 10 - }, - "end": { - "line": 23, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 2482, - "end": 2483, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2484, - "end": 2485, - "loc": { - "start": { - "line": 23, - "column": 16 - }, - "end": { - "line": 23, - "column": 17 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2486, - "end": 2487, - "loc": { - "start": { - "line": 23, - "column": 18 - }, - "end": { - "line": 23, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2487, - "end": 2488, - "loc": { - "start": { - "line": 23, - "column": 19 - }, - "end": { - "line": 23, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 2489, - "end": 2490, - "loc": { - "start": { - "line": 23, - "column": 21 - }, - "end": { - "line": 23, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2491, - "end": 2492, - "loc": { - "start": { - "line": 23, - "column": 23 - }, - "end": { - "line": 23, - "column": 24 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 2493, - "end": 2494, - "loc": { - "start": { - "line": 23, - "column": 25 - }, - "end": { - "line": 23, - "column": 26 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2494, - "end": 2495, - "loc": { - "start": { - "line": 23, - "column": 26 - }, - "end": { - "line": 23, - "column": 27 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2495, - "end": 2496, - "loc": { - "start": { - "line": 23, - "column": 27 - }, - "end": { - "line": 23, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 2497, - "end": 2498, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 30 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2499, - "end": 2500, - "loc": { - "start": { - "line": 23, - "column": 31 - }, - "end": { - "line": 23, - "column": 32 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 2501, - "end": 2502, - "loc": { - "start": { - "line": 23, - "column": 33 - }, - "end": { - "line": 23, - "column": 34 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2502, - "end": 2503, - "loc": { - "start": { - "line": 23, - "column": 34 - }, - "end": { - "line": 23, - "column": 35 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2503, - "end": 2504, - "loc": { - "start": { - "line": 23, - "column": 35 - }, - "end": { - "line": 23, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2505, - "end": 2506, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 38 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2507, - "end": 2508, - "loc": { - "start": { - "line": 23, - "column": 39 - }, - "end": { - "line": 23, - "column": 40 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2509, - "end": 2510, - "loc": { - "start": { - "line": 23, - "column": 41 - }, - "end": { - "line": 23, - "column": 42 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2510, - "end": 2511, - "loc": { - "start": { - "line": 23, - "column": 42 - }, - "end": { - "line": 23, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 2512, - "end": 2513, - "loc": { - "start": { - "line": 23, - "column": 44 - }, - "end": { - "line": 23, - "column": 45 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2514, - "end": 2515, - "loc": { - "start": { - "line": 23, - "column": 46 - }, - "end": { - "line": 23, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2516, - "end": 2517, - "loc": { - "start": { - "line": 23, - "column": 48 - }, - "end": { - "line": 23, - "column": 49 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2517, - "end": 2518, - "loc": { - "start": { - "line": 23, - "column": 49 - }, - "end": { - "line": 23, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 2518, - "end": 2524, - "loc": { - "start": { - "line": 23, - "column": 50 - }, - "end": { - "line": 23, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2524, - "end": 2525, - "loc": { - "start": { - "line": 23, - "column": 56 - }, - "end": { - "line": 23, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2526, - "end": 2527, - "loc": { - "start": { - "line": 23, - "column": 58 - }, - "end": { - "line": 23, - "column": 59 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 2528, - "end": 2529, - "loc": { - "start": { - "line": 23, - "column": 60 - }, - "end": { - "line": 23, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 2530, - "end": 2531, - "loc": { - "start": { - "line": 23, - "column": 62 - }, - "end": { - "line": 23, - "column": 63 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2531, - "end": 2532, - "loc": { - "start": { - "line": 23, - "column": 63 - }, - "end": { - "line": 23, - "column": 64 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 2533, - "end": 2535, - "loc": { - "start": { - "line": 23, - "column": 65 - }, - "end": { - "line": 23, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2535, - "end": 2536, - "loc": { - "start": { - "line": 23, - "column": 67 - }, - "end": { - "line": 23, - "column": 68 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2536, - "end": 2537, - "loc": { - "start": { - "line": 23, - "column": 68 - }, - "end": { - "line": 23, - "column": 69 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2538, - "end": 2539, - "loc": { - "start": { - "line": 23, - "column": 70 - }, - "end": { - "line": 23, - "column": 71 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2546, - "end": 2549, - "loc": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2550, - "end": 2551, - "loc": { - "start": { - "line": 24, - "column": 10 - }, - "end": { - "line": 24, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2552, - "end": 2553, - "loc": { - "start": { - "line": 24, - "column": 12 - }, - "end": { - "line": 24, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2554, - "end": 2555, - "loc": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2555, - "end": 2556, - "loc": { - "start": { - "line": 24, - "column": 15 - }, - "end": { - "line": 24, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2556, - "end": 2557, - "loc": { - "start": { - "line": 24, - "column": 16 - }, - "end": { - "line": 24, - "column": 17 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2557, - "end": 2558, - "loc": { - "start": { - "line": 24, - "column": 17 - }, - "end": { - "line": 24, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2558, - "end": 2559, - "loc": { - "start": { - "line": 24, - "column": 18 - }, - "end": { - "line": 24, - "column": 19 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2559, - "end": 2561, - "loc": { - "start": { - "line": 24, - "column": 19 - }, - "end": { - "line": 24, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2562, - "end": 2563, - "loc": { - "start": { - "line": 24, - "column": 22 - }, - "end": { - "line": 24, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2563, - "end": 2564, - "loc": { - "start": { - "line": 24, - "column": 23 - }, - "end": { - "line": 24, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2564, - "end": 2565, - "loc": { - "start": { - "line": 24, - "column": 24 - }, - "end": { - "line": 24, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ignoreCase", - "start": 2565, - "end": 2575, - "loc": { - "start": { - "line": 24, - "column": 25 - }, - "end": { - "line": 24, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2575, - "end": 2576, - "loc": { - "start": { - "line": 24, - "column": 35 - }, - "end": { - "line": 24, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 2577, - "end": 2578, - "loc": { - "start": { - "line": 24, - "column": 37 - }, - "end": { - "line": 24, - "column": 38 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2579, - "end": 2580, - "loc": { - "start": { - "line": 24, - "column": 39 - }, - "end": { - "line": 24, - "column": 40 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 2581, - "end": 2582, - "loc": { - "start": { - "line": 24, - "column": 41 - }, - "end": { - "line": 24, - "column": 42 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2582, - "end": 2583, - "loc": { - "start": { - "line": 24, - "column": 42 - }, - "end": { - "line": 24, - "column": 43 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2583, - "end": 2584, - "loc": { - "start": { - "line": 24, - "column": 43 - }, - "end": { - "line": 24, - "column": 44 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 2584, - "end": 2588, - "loc": { - "start": { - "line": 24, - "column": 44 - }, - "end": { - "line": 24, - "column": 48 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2589, - "end": 2591, - "loc": { - "start": { - "line": 24, - "column": 49 - }, - "end": { - "line": 24, - "column": 51 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2592, - "end": 2593, - "loc": { - "start": { - "line": 24, - "column": 52 - }, - "end": { - "line": 24, - "column": 53 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "[a-z]", - "flags": "i" - }, - "start": 2593, - "end": 2601, - "loc": { - "start": { - "line": 24, - "column": 53 - }, - "end": { - "line": 24, - "column": 61 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2601, - "end": 2602, - "loc": { - "start": { - "line": 24, - "column": 61 - }, - "end": { - "line": 24, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 2602, - "end": 2606, - "loc": { - "start": { - "line": 24, - "column": 62 - }, - "end": { - "line": 24, - "column": 66 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2606, - "end": 2607, - "loc": { - "start": { - "line": 24, - "column": 66 - }, - "end": { - "line": 24, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2607, - "end": 2608, - "loc": { - "start": { - "line": 24, - "column": 67 - }, - "end": { - "line": 24, - "column": 68 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2608, - "end": 2609, - "loc": { - "start": { - "line": 24, - "column": 68 - }, - "end": { - "line": 24, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "source", - "start": 2609, - "end": 2615, - "loc": { - "start": { - "line": 24, - "column": 69 - }, - "end": { - "line": 24, - "column": 75 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2615, - "end": 2616, - "loc": { - "start": { - "line": 24, - "column": 75 - }, - "end": { - "line": 24, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 2616, - "end": 2623, - "loc": { - "start": { - "line": 24, - "column": 76 - }, - "end": { - "line": 24, - "column": 83 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2623, - "end": 2624, - "loc": { - "start": { - "line": 24, - "column": 83 - }, - "end": { - "line": 24, - "column": 84 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\\\u[\\da-f]{4}|\\\\x[\\da-f]{2}|\\\\[^UXux]", - "flags": "gi" - }, - "start": 2624, - "end": 2665, - "loc": { - "start": { - "line": 24, - "column": 84 - }, - "end": { - "line": 24, - "column": 125 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2665, - "end": 2666, - "loc": { - "start": { - "line": 24, - "column": 125 - }, - "end": { - "line": 24, - "column": 126 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 2667, - "end": 2669, - "loc": { - "start": { - "line": 24, - "column": 127 - }, - "end": { - "line": 24, - "column": 129 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2669, - "end": 2670, - "loc": { - "start": { - "line": 24, - "column": 129 - }, - "end": { - "line": 24, - "column": 130 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2670, - "end": 2671, - "loc": { - "start": { - "line": 24, - "column": 130 - }, - "end": { - "line": 24, - "column": 131 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2671, - "end": 2672, - "loc": { - "start": { - "line": 24, - "column": 131 - }, - "end": { - "line": 24, - "column": 132 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2673, - "end": 2674, - "loc": { - "start": { - "line": 24, - "column": 133 - }, - "end": { - "line": 24, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 2683, - "end": 2684, - "loc": { - "start": { - "line": 25, - "column": 8 - }, - "end": { - "line": 25, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2685, - "end": 2686, - "loc": { - "start": { - "line": 25, - "column": 10 - }, - "end": { - "line": 25, - "column": 11 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 2687, - "end": 2688, - "loc": { - "start": { - "line": 25, - "column": 12 - }, - "end": { - "line": 25, - "column": 13 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2688, - "end": 2689, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 25, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2689, - "end": 2690, - "loc": { - "start": { - "line": 25, - "column": 14 - }, - "end": { - "line": 25, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 2690, - "end": 2691, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2692, - "end": 2693, - "loc": { - "start": { - "line": 25, - "column": 17 - }, - "end": { - "line": 25, - "column": 18 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 2694, - "end": 2695, - "loc": { - "start": { - "line": 25, - "column": 19 - }, - "end": { - "line": 25, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2695, - "end": 2696, - "loc": { - "start": { - "line": 25, - "column": 20 - }, - "end": { - "line": 25, - "column": 21 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2696, - "end": 2697, - "loc": { - "start": { - "line": 25, - "column": 21 - }, - "end": { - "line": 25, - "column": 22 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 2697, - "end": 2702, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2702, - "end": 2703, - "loc": { - "start": { - "line": 25, - "column": 27 - }, - "end": { - "line": 25, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2710, - "end": 2711, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2716, - "end": 2717, - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 27, - "column": 5 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 2717, - "end": 2720, - "loc": { - "start": { - "line": 27, - "column": 5 - }, - "end": { - "line": 27, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2721, - "end": 2722, - "loc": { - "start": { - "line": 27, - "column": 9 - }, - "end": { - "line": 27, - "column": 10 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2722, - "end": 2725, - "loc": { - "start": { - "line": 27, - "column": 10 - }, - "end": { - "line": 27, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 2726, - "end": 2727, - "loc": { - "start": { - "line": 27, - "column": 14 - }, - "end": { - "line": 27, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2728, - "end": 2729, - "loc": { - "start": { - "line": 27, - "column": 16 - }, - "end": { - "line": 27, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2730, - "end": 2731, - "loc": { - "start": { - "line": 27, - "column": 18 - }, - "end": { - "line": 27, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 2732, - "end": 2733, - "loc": { - "start": { - "line": 27, - "column": 20 - }, - "end": { - "line": 27, - "column": 21 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2733, - "end": 2734, - "loc": { - "start": { - "line": 27, - "column": 21 - }, - "end": { - "line": 27, - "column": 22 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 8, - "start": 2735, - "end": 2736, - "loc": { - "start": { - "line": 27, - "column": 23 - }, - "end": { - "line": 27, - "column": 24 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2736, - "end": 2737, - "loc": { - "start": { - "line": 27, - "column": 24 - }, - "end": { - "line": 27, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 2738, - "end": 2739, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 27 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2739, - "end": 2740, - "loc": { - "start": { - "line": 27, - "column": 27 - }, - "end": { - "line": 27, - "column": 28 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 9, - "start": 2741, - "end": 2742, - "loc": { - "start": { - "line": 27, - "column": 29 - }, - "end": { - "line": 27, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2742, - "end": 2743, - "loc": { - "start": { - "line": 27, - "column": 30 - }, - "end": { - "line": 27, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 2744, - "end": 2745, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 27, - "column": 33 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2745, - "end": 2746, - "loc": { - "start": { - "line": 27, - "column": 33 - }, - "end": { - "line": 27, - "column": 34 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 10, - "start": 2747, - "end": 2749, - "loc": { - "start": { - "line": 27, - "column": 35 - }, - "end": { - "line": 27, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2749, - "end": 2750, - "loc": { - "start": { - "line": 27, - "column": 37 - }, - "end": { - "line": 27, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 2751, - "end": 2752, - "loc": { - "start": { - "line": 27, - "column": 39 - }, - "end": { - "line": 27, - "column": 40 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2752, - "end": 2753, - "loc": { - "start": { - "line": 27, - "column": 40 - }, - "end": { - "line": 27, - "column": 41 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 11, - "start": 2754, - "end": 2756, - "loc": { - "start": { - "line": 27, - "column": 42 - }, - "end": { - "line": 27, - "column": 44 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2756, - "end": 2757, - "loc": { - "start": { - "line": 27, - "column": 44 - }, - "end": { - "line": 27, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 2758, - "end": 2759, - "loc": { - "start": { - "line": 27, - "column": 46 - }, - "end": { - "line": 27, - "column": 47 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2759, - "end": 2760, - "loc": { - "start": { - "line": 27, - "column": 47 - }, - "end": { - "line": 27, - "column": 48 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 12, - "start": 2761, - "end": 2763, - "loc": { - "start": { - "line": 27, - "column": 49 - }, - "end": { - "line": 27, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2763, - "end": 2764, - "loc": { - "start": { - "line": 27, - "column": 51 - }, - "end": { - "line": 27, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 2765, - "end": 2766, - "loc": { - "start": { - "line": 27, - "column": 53 - }, - "end": { - "line": 27, - "column": 54 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2766, - "end": 2767, - "loc": { - "start": { - "line": 27, - "column": 54 - }, - "end": { - "line": 27, - "column": 55 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 13, - "start": 2768, - "end": 2770, - "loc": { - "start": { - "line": 27, - "column": 56 - }, - "end": { - "line": 27, - "column": 58 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2771, - "end": 2772, - "loc": { - "start": { - "line": 27, - "column": 59 - }, - "end": { - "line": 27, - "column": 60 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2772, - "end": 2773, - "loc": { - "start": { - "line": 27, - "column": 60 - }, - "end": { - "line": 27, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 2774, - "end": 2775, - "loc": { - "start": { - "line": 27, - "column": 62 - }, - "end": { - "line": 27, - "column": 63 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2776, - "end": 2777, - "loc": { - "start": { - "line": 27, - "column": 64 - }, - "end": { - "line": 27, - "column": 65 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2778, - "end": 2779, - "loc": { - "start": { - "line": 27, - "column": 66 - }, - "end": { - "line": 27, - "column": 67 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2779, - "end": 2780, - "loc": { - "start": { - "line": 27, - "column": 67 - }, - "end": { - "line": 27, - "column": 68 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2780, - "end": 2781, - "loc": { - "start": { - "line": 27, - "column": 68 - }, - "end": { - "line": 27, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2782, - "end": 2783, - "loc": { - "start": { - "line": 27, - "column": 70 - }, - "end": { - "line": 27, - "column": 71 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2784, - "end": 2785, - "loc": { - "start": { - "line": 27, - "column": 72 - }, - "end": { - "line": 27, - "column": 73 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 2786, - "end": 2787, - "loc": { - "start": { - "line": 27, - "column": 74 - }, - "end": { - "line": 27, - "column": 75 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2787, - "end": 2788, - "loc": { - "start": { - "line": 27, - "column": 75 - }, - "end": { - "line": 27, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 2789, - "end": 2790, - "loc": { - "start": { - "line": 27, - "column": 77 - }, - "end": { - "line": 27, - "column": 78 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2791, - "end": 2792, - "loc": { - "start": { - "line": 27, - "column": 79 - }, - "end": { - "line": 27, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2793, - "end": 2794, - "loc": { - "start": { - "line": 27, - "column": 81 - }, - "end": { - "line": 27, - "column": 82 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2794, - "end": 2795, - "loc": { - "start": { - "line": 27, - "column": 82 - }, - "end": { - "line": 27, - "column": 83 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 2795, - "end": 2801, - "loc": { - "start": { - "line": 27, - "column": 83 - }, - "end": { - "line": 27, - "column": 89 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2801, - "end": 2802, - "loc": { - "start": { - "line": 27, - "column": 89 - }, - "end": { - "line": 27, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2803, - "end": 2804, - "loc": { - "start": { - "line": 27, - "column": 91 - }, - "end": { - "line": 27, - "column": 92 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 2805, - "end": 2806, - "loc": { - "start": { - "line": 27, - "column": 93 - }, - "end": { - "line": 27, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 2807, - "end": 2808, - "loc": { - "start": { - "line": 27, - "column": 95 - }, - "end": { - "line": 27, - "column": 96 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2808, - "end": 2809, - "loc": { - "start": { - "line": 27, - "column": 96 - }, - "end": { - "line": 27, - "column": 97 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 2810, - "end": 2812, - "loc": { - "start": { - "line": 27, - "column": 98 - }, - "end": { - "line": 27, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2812, - "end": 2813, - "loc": { - "start": { - "line": 27, - "column": 100 - }, - "end": { - "line": 27, - "column": 101 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2813, - "end": 2814, - "loc": { - "start": { - "line": 27, - "column": 101 - }, - "end": { - "line": 27, - "column": 102 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2815, - "end": 2816, - "loc": { - "start": { - "line": 27, - "column": 103 - }, - "end": { - "line": 27, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2823, - "end": 2824, - "loc": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2825, - "end": 2826, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2827, - "end": 2828, - "loc": { - "start": { - "line": 28, - "column": 10 - }, - "end": { - "line": 28, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2828, - "end": 2829, - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 28, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 2829, - "end": 2830, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2830, - "end": 2831, - "loc": { - "start": { - "line": 28, - "column": 13 - }, - "end": { - "line": 28, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2831, - "end": 2832, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 15 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2832, - "end": 2834, - "loc": { - "start": { - "line": 28, - "column": 15 - }, - "end": { - "line": 28, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2835, - "end": 2836, - "loc": { - "start": { - "line": 28, - "column": 18 - }, - "end": { - "line": 28, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2836, - "end": 2837, - "loc": { - "start": { - "line": 28, - "column": 19 - }, - "end": { - "line": 28, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2837, - "end": 2838, - "loc": { - "start": { - "line": 28, - "column": 20 - }, - "end": { - "line": 28, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "global", - "start": 2838, - "end": 2844, - "loc": { - "start": { - "line": 28, - "column": 21 - }, - "end": { - "line": 28, - "column": 27 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 2845, - "end": 2847, - "loc": { - "start": { - "line": 28, - "column": 28 - }, - "end": { - "line": 28, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2848, - "end": 2849, - "loc": { - "start": { - "line": 28, - "column": 31 - }, - "end": { - "line": 28, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2849, - "end": 2850, - "loc": { - "start": { - "line": 28, - "column": 32 - }, - "end": { - "line": 28, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiline", - "start": 2850, - "end": 2859, - "loc": { - "start": { - "line": 28, - "column": 33 - }, - "end": { - "line": 28, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2859, - "end": 2860, - "loc": { - "start": { - "line": 28, - "column": 42 - }, - "end": { - "line": 28, - "column": 43 - } - } - }, - { - "type": { - "label": "throw", - "keyword": "throw", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "throw", - "start": 2861, - "end": 2866, - "loc": { - "start": { - "line": 28, - "column": 44 - }, - "end": { - "line": 28, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Error", - "start": 2867, - "end": 2872, - "loc": { - "start": { - "line": 28, - "column": 50 - }, - "end": { - "line": 28, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2872, - "end": 2873, - "loc": { - "start": { - "line": 28, - "column": 55 - }, - "end": { - "line": 28, - "column": 56 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 2873, - "end": 2875, - "loc": { - "start": { - "line": 28, - "column": 56 - }, - "end": { - "line": 28, - "column": 58 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2876, - "end": 2877, - "loc": { - "start": { - "line": 28, - "column": 59 - }, - "end": { - "line": 28, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2878, - "end": 2879, - "loc": { - "start": { - "line": 28, - "column": 61 - }, - "end": { - "line": 28, - "column": 62 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2879, - "end": 2880, - "loc": { - "start": { - "line": 28, - "column": 62 - }, - "end": { - "line": 28, - "column": 63 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2880, - "end": 2881, - "loc": { - "start": { - "line": 28, - "column": 63 - }, - "end": { - "line": 28, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 2881, - "end": 2882, - "loc": { - "start": { - "line": 28, - "column": 64 - }, - "end": { - "line": 28, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2882, - "end": 2883, - "loc": { - "start": { - "line": 28, - "column": 65 - }, - "end": { - "line": 28, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 2883, - "end": 2887, - "loc": { - "start": { - "line": 28, - "column": 66 - }, - "end": { - "line": 28, - "column": 70 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2887, - "end": 2888, - "loc": { - "start": { - "line": 28, - "column": 70 - }, - "end": { - "line": 28, - "column": 71 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "(?:", - "start": 2888, - "end": 2893, - "loc": { - "start": { - "line": 28, - "column": 71 - }, - "end": { - "line": 28, - "column": 76 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2894, - "end": 2895, - "loc": { - "start": { - "line": 28, - "column": 77 - }, - "end": { - "line": 28, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 2896, - "end": 2897, - "loc": { - "start": { - "line": 28, - "column": 79 - }, - "end": { - "line": 28, - "column": 80 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2897, - "end": 2898, - "loc": { - "start": { - "line": 28, - "column": 80 - }, - "end": { - "line": 28, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 2898, - "end": 2899, - "loc": { - "start": { - "line": 28, - "column": 81 - }, - "end": { - "line": 28, - "column": 82 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2899, - "end": 2900, - "loc": { - "start": { - "line": 28, - "column": 82 - }, - "end": { - "line": 28, - "column": 83 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 2901, - "end": 2902, - "loc": { - "start": { - "line": 28, - "column": 84 - }, - "end": { - "line": 28, - "column": 85 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ")", - "start": 2903, - "end": 2906, - "loc": { - "start": { - "line": 28, - "column": 86 - }, - "end": { - "line": 28, - "column": 89 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2906, - "end": 2907, - "loc": { - "start": { - "line": 28, - "column": 89 - }, - "end": { - "line": 28, - "column": 90 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2907, - "end": 2908, - "loc": { - "start": { - "line": 28, - "column": 90 - }, - "end": { - "line": 28, - "column": 91 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2913, - "end": 2914, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2914, - "end": 2920, - "loc": { - "start": { - "line": 29, - "column": 5 - }, - "end": { - "line": 29, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "RegExp", - "start": 2921, - "end": 2927, - "loc": { - "start": { - "line": 29, - "column": 12 - }, - "end": { - "line": 29, - "column": 18 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2927, - "end": 2928, - "loc": { - "start": { - "line": 29, - "column": 18 - }, - "end": { - "line": 29, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 2928, - "end": 2929, - "loc": { - "start": { - "line": 29, - "column": 19 - }, - "end": { - "line": 29, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2929, - "end": 2930, - "loc": { - "start": { - "line": 29, - "column": 20 - }, - "end": { - "line": 29, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "join", - "start": 2930, - "end": 2934, - "loc": { - "start": { - "line": 29, - "column": 21 - }, - "end": { - "line": 29, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2934, - "end": 2935, - "loc": { - "start": { - "line": 29, - "column": 25 - }, - "end": { - "line": 29, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "|", - "start": 2935, - "end": 2938, - "loc": { - "start": { - "line": 29, - "column": 26 - }, - "end": { - "line": 29, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2938, - "end": 2939, - "loc": { - "start": { - "line": 29, - "column": 29 - }, - "end": { - "line": 29, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2939, - "end": 2940, - "loc": { - "start": { - "line": 29, - "column": 30 - }, - "end": { - "line": 29, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 2941, - "end": 2942, - "loc": { - "start": { - "line": 29, - "column": 32 - }, - "end": { - "line": 29, - "column": 33 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2943, - "end": 2944, - "loc": { - "start": { - "line": 29, - "column": 34 - }, - "end": { - "line": 29, - "column": 35 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "gi", - "start": 2945, - "end": 2949, - "loc": { - "start": { - "line": 29, - "column": 36 - }, - "end": { - "line": 29, - "column": 40 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2950, - "end": 2951, - "loc": { - "start": { - "line": 29, - "column": 41 - }, - "end": { - "line": 29, - "column": 42 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "g", - "start": 2952, - "end": 2955, - "loc": { - "start": { - "line": 29, - "column": 43 - }, - "end": { - "line": 29, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2955, - "end": 2956, - "loc": { - "start": { - "line": 29, - "column": 46 - }, - "end": { - "line": 29, - "column": 47 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2956, - "end": 2957, - "loc": { - "start": { - "line": 29, - "column": 47 - }, - "end": { - "line": 29, - "column": 48 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2960, - "end": 2961, - "loc": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 2961, - "end": 2969, - "loc": { - "start": { - "line": 30, - "column": 3 - }, - "end": { - "line": 30, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "M", - "start": 2970, - "end": 2971, - "loc": { - "start": { - "line": 30, - "column": 12 - }, - "end": { - "line": 30, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2971, - "end": 2972, - "loc": { - "start": { - "line": 30, - "column": 13 - }, - "end": { - "line": 30, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2972, - "end": 2973, - "loc": { - "start": { - "line": 30, - "column": 14 - }, - "end": { - "line": 30, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2973, - "end": 2974, - "loc": { - "start": { - "line": 30, - "column": 15 - }, - "end": { - "line": 30, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2975, - "end": 2976, - "loc": { - "start": { - "line": 30, - "column": 17 - }, - "end": { - "line": 30, - "column": 18 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 2981, - "end": 2989, - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 31, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 2990, - "end": 2991, - "loc": { - "start": { - "line": 31, - "column": 13 - }, - "end": { - "line": 31, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2991, - "end": 2992, - "loc": { - "start": { - "line": 31, - "column": 14 - }, - "end": { - "line": 31, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 2992, - "end": 2993, - "loc": { - "start": { - "line": 31, - "column": 15 - }, - "end": { - "line": 31, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2993, - "end": 2994, - "loc": { - "start": { - "line": 31, - "column": 16 - }, - "end": { - "line": 31, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2995, - "end": 2996, - "loc": { - "start": { - "line": 31, - "column": 18 - }, - "end": { - "line": 31, - "column": 19 - } - } - }, - { - "type": { - "label": "switch", - "keyword": "switch", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "switch", - "start": 3003, - "end": 3009, - "loc": { - "start": { - "line": 32, - "column": 6 - }, - "end": { - "line": 32, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3010, - "end": 3011, - "loc": { - "start": { - "line": 32, - "column": 13 - }, - "end": { - "line": 32, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3011, - "end": 3012, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3012, - "end": 3013, - "loc": { - "start": { - "line": 32, - "column": 15 - }, - "end": { - "line": 32, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeType", - "start": 3013, - "end": 3021, - "loc": { - "start": { - "line": 32, - "column": 16 - }, - "end": { - "line": 32, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3021, - "end": 3022, - "loc": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 32, - "column": 25 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3023, - "end": 3024, - "loc": { - "start": { - "line": 32, - "column": 26 - }, - "end": { - "line": 32, - "column": 27 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 3024, - "end": 3028, - "loc": { - "start": { - "line": 32, - "column": 27 - }, - "end": { - "line": 32, - "column": 31 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3029, - "end": 3030, - "loc": { - "start": { - "line": 32, - "column": 32 - }, - "end": { - "line": 32, - "column": 33 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3030, - "end": 3031, - "loc": { - "start": { - "line": 32, - "column": 33 - }, - "end": { - "line": 32, - "column": 34 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3042, - "end": 3044, - "loc": { - "start": { - "line": 33, - "column": 10 - }, - "end": { - "line": 33, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3045, - "end": 3046, - "loc": { - "start": { - "line": 33, - "column": 13 - }, - "end": { - "line": 33, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3046, - "end": 3047, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3047, - "end": 3048, - "loc": { - "start": { - "line": 33, - "column": 15 - }, - "end": { - "line": 33, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 3048, - "end": 3052, - "loc": { - "start": { - "line": 33, - "column": 16 - }, - "end": { - "line": 33, - "column": 20 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3052, - "end": 3053, - "loc": { - "start": { - "line": 33, - "column": 20 - }, - "end": { - "line": 33, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3053, - "end": 3054, - "loc": { - "start": { - "line": 33, - "column": 21 - }, - "end": { - "line": 33, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3054, - "end": 3055, - "loc": { - "start": { - "line": 33, - "column": 22 - }, - "end": { - "line": 33, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 3055, - "end": 3064, - "loc": { - "start": { - "line": 33, - "column": 23 - }, - "end": { - "line": 33, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3064, - "end": 3065, - "loc": { - "start": { - "line": 33, - "column": 32 - }, - "end": { - "line": 33, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3065, - "end": 3066, - "loc": { - "start": { - "line": 33, - "column": 33 - }, - "end": { - "line": 33, - "column": 34 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 3067, - "end": 3072, - "loc": { - "start": { - "line": 33, - "column": 35 - }, - "end": { - "line": 33, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3072, - "end": 3073, - "loc": { - "start": { - "line": 33, - "column": 40 - }, - "end": { - "line": 33, - "column": 41 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 3073, - "end": 3076, - "loc": { - "start": { - "line": 33, - "column": 41 - }, - "end": { - "line": 33, - "column": 44 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3077, - "end": 3078, - "loc": { - "start": { - "line": 33, - "column": 45 - }, - "end": { - "line": 33, - "column": 46 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3078, - "end": 3081, - "loc": { - "start": { - "line": 33, - "column": 46 - }, - "end": { - "line": 33, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3082, - "end": 3083, - "loc": { - "start": { - "line": 33, - "column": 50 - }, - "end": { - "line": 33, - "column": 51 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3084, - "end": 3085, - "loc": { - "start": { - "line": 33, - "column": 52 - }, - "end": { - "line": 33, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3086, - "end": 3087, - "loc": { - "start": { - "line": 33, - "column": 54 - }, - "end": { - "line": 33, - "column": 55 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3087, - "end": 3088, - "loc": { - "start": { - "line": 33, - "column": 55 - }, - "end": { - "line": 33, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 3088, - "end": 3098, - "loc": { - "start": { - "line": 33, - "column": 56 - }, - "end": { - "line": 33, - "column": 66 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3098, - "end": 3099, - "loc": { - "start": { - "line": 33, - "column": 66 - }, - "end": { - "line": 33, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3100, - "end": 3101, - "loc": { - "start": { - "line": 33, - "column": 68 - }, - "end": { - "line": 33, - "column": 69 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3101, - "end": 3102, - "loc": { - "start": { - "line": 33, - "column": 69 - }, - "end": { - "line": 33, - "column": 70 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3103, - "end": 3104, - "loc": { - "start": { - "line": 33, - "column": 71 - }, - "end": { - "line": 33, - "column": 72 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3105, - "end": 3106, - "loc": { - "start": { - "line": 33, - "column": 73 - }, - "end": { - "line": 33, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3107, - "end": 3108, - "loc": { - "start": { - "line": 33, - "column": 75 - }, - "end": { - "line": 33, - "column": 76 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3108, - "end": 3109, - "loc": { - "start": { - "line": 33, - "column": 76 - }, - "end": { - "line": 33, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 3109, - "end": 3120, - "loc": { - "start": { - "line": 33, - "column": 77 - }, - "end": { - "line": 33, - "column": 88 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3120, - "end": 3121, - "loc": { - "start": { - "line": 33, - "column": 88 - }, - "end": { - "line": 33, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3122, - "end": 3123, - "loc": { - "start": { - "line": 33, - "column": 90 - }, - "end": { - "line": 33, - "column": 91 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3123, - "end": 3124, - "loc": { - "start": { - "line": 33, - "column": 91 - }, - "end": { - "line": 33, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3124, - "end": 3125, - "loc": { - "start": { - "line": 33, - "column": 92 - }, - "end": { - "line": 33, - "column": 93 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3125, - "end": 3126, - "loc": { - "start": { - "line": 33, - "column": 93 - }, - "end": { - "line": 33, - "column": 94 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3126, - "end": 3127, - "loc": { - "start": { - "line": 33, - "column": 94 - }, - "end": { - "line": 33, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3127, - "end": 3128, - "loc": { - "start": { - "line": 33, - "column": 95 - }, - "end": { - "line": 33, - "column": 96 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3129, - "end": 3130, - "loc": { - "start": { - "line": 33, - "column": 97 - }, - "end": { - "line": 33, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3131, - "end": 3132, - "loc": { - "start": { - "line": 33, - "column": 99 - }, - "end": { - "line": 33, - "column": 100 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3132, - "end": 3133, - "loc": { - "start": { - "line": 33, - "column": 100 - }, - "end": { - "line": 33, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeName", - "start": 3133, - "end": 3141, - "loc": { - "start": { - "line": 33, - "column": 101 - }, - "end": { - "line": 33, - "column": 109 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3141, - "end": 3142, - "loc": { - "start": { - "line": 33, - "column": 109 - }, - "end": { - "line": 33, - "column": 110 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3142, - "end": 3144, - "loc": { - "start": { - "line": 33, - "column": 110 - }, - "end": { - "line": 33, - "column": 112 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3145, - "end": 3146, - "loc": { - "start": { - "line": 33, - "column": 113 - }, - "end": { - "line": 33, - "column": 114 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BR", - "start": 3146, - "end": 3150, - "loc": { - "start": { - "line": 33, - "column": 114 - }, - "end": { - "line": 33, - "column": 118 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 3151, - "end": 3154, - "loc": { - "start": { - "line": 33, - "column": 119 - }, - "end": { - "line": 33, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3155, - "end": 3156, - "loc": { - "start": { - "line": 33, - "column": 123 - }, - "end": { - "line": 33, - "column": 124 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 3157, - "end": 3159, - "loc": { - "start": { - "line": 33, - "column": 125 - }, - "end": { - "line": 33, - "column": 127 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "LI", - "start": 3160, - "end": 3164, - "loc": { - "start": { - "line": 33, - "column": 128 - }, - "end": { - "line": 33, - "column": 132 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 3165, - "end": 3168, - "loc": { - "start": { - "line": 33, - "column": 133 - }, - "end": { - "line": 33, - "column": 136 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3169, - "end": 3170, - "loc": { - "start": { - "line": 33, - "column": 137 - }, - "end": { - "line": 33, - "column": 138 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3170, - "end": 3171, - "loc": { - "start": { - "line": 33, - "column": 138 - }, - "end": { - "line": 33, - "column": 139 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3172, - "end": 3173, - "loc": { - "start": { - "line": 33, - "column": 140 - }, - "end": { - "line": 33, - "column": 141 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3173, - "end": 3174, - "loc": { - "start": { - "line": 33, - "column": 141 - }, - "end": { - "line": 33, - "column": 142 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3174, - "end": 3175, - "loc": { - "start": { - "line": 33, - "column": 142 - }, - "end": { - "line": 33, - "column": 143 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3175, - "end": 3176, - "loc": { - "start": { - "line": 33, - "column": 143 - }, - "end": { - "line": 33, - "column": 144 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3177, - "end": 3178, - "loc": { - "start": { - "line": 33, - "column": 145 - }, - "end": { - "line": 33, - "column": 146 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\n", - "start": 3179, - "end": 3183, - "loc": { - "start": { - "line": 33, - "column": 147 - }, - "end": { - "line": 33, - "column": 151 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3183, - "end": 3184, - "loc": { - "start": { - "line": 33, - "column": 151 - }, - "end": { - "line": 33, - "column": 152 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3185, - "end": 3186, - "loc": { - "start": { - "line": 33, - "column": 153 - }, - "end": { - "line": 33, - "column": 154 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3186, - "end": 3187, - "loc": { - "start": { - "line": 33, - "column": 154 - }, - "end": { - "line": 33, - "column": 155 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3187, - "end": 3188, - "loc": { - "start": { - "line": 33, - "column": 155 - }, - "end": { - "line": 33, - "column": 156 - } - } - }, - { - "type": { - "label": "<>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 8, - "updateContext": null - }, - "value": "<<", - "start": 3189, - "end": 3191, - "loc": { - "start": { - "line": 33, - "column": 157 - }, - "end": { - "line": 33, - "column": 159 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3192, - "end": 3193, - "loc": { - "start": { - "line": 33, - "column": 160 - }, - "end": { - "line": 33, - "column": 161 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3193, - "end": 3194, - "loc": { - "start": { - "line": 33, - "column": 161 - }, - "end": { - "line": 33, - "column": 162 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3195, - "end": 3196, - "loc": { - "start": { - "line": 33, - "column": 163 - }, - "end": { - "line": 33, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 3197, - "end": 3198, - "loc": { - "start": { - "line": 33, - "column": 165 - }, - "end": { - "line": 33, - "column": 166 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 3198, - "end": 3200, - "loc": { - "start": { - "line": 33, - "column": 166 - }, - "end": { - "line": 33, - "column": 168 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3200, - "end": 3201, - "loc": { - "start": { - "line": 33, - "column": 168 - }, - "end": { - "line": 33, - "column": 169 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3202, - "end": 3203, - "loc": { - "start": { - "line": 33, - "column": 170 - }, - "end": { - "line": 33, - "column": 171 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3203, - "end": 3204, - "loc": { - "start": { - "line": 33, - "column": 171 - }, - "end": { - "line": 33, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3204, - "end": 3205, - "loc": { - "start": { - "line": 33, - "column": 172 - }, - "end": { - "line": 33, - "column": 173 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 3205, - "end": 3207, - "loc": { - "start": { - "line": 33, - "column": 173 - }, - "end": { - "line": 33, - "column": 175 - } - } - }, - { - "type": { - "label": "<>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 8, - "updateContext": null - }, - "value": "<<", - "start": 3208, - "end": 3210, - "loc": { - "start": { - "line": 33, - "column": 176 - }, - "end": { - "line": 33, - "column": 178 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3211, - "end": 3212, - "loc": { - "start": { - "line": 33, - "column": 179 - }, - "end": { - "line": 33, - "column": 180 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 3213, - "end": 3214, - "loc": { - "start": { - "line": 33, - "column": 181 - }, - "end": { - "line": 33, - "column": 182 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3215, - "end": 3216, - "loc": { - "start": { - "line": 33, - "column": 183 - }, - "end": { - "line": 33, - "column": 184 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3216, - "end": 3217, - "loc": { - "start": { - "line": 33, - "column": 184 - }, - "end": { - "line": 33, - "column": 185 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3218, - "end": 3219, - "loc": { - "start": { - "line": 33, - "column": 186 - }, - "end": { - "line": 33, - "column": 187 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3220, - "end": 3221, - "loc": { - "start": { - "line": 33, - "column": 188 - }, - "end": { - "line": 33, - "column": 189 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3221, - "end": 3222, - "loc": { - "start": { - "line": 33, - "column": 189 - }, - "end": { - "line": 33, - "column": 190 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 3222, - "end": 3227, - "loc": { - "start": { - "line": 33, - "column": 190 - }, - "end": { - "line": 33, - "column": 195 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3227, - "end": 3228, - "loc": { - "start": { - "line": 33, - "column": 195 - }, - "end": { - "line": 33, - "column": 196 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 3228, - "end": 3232, - "loc": { - "start": { - "line": 33, - "column": 196 - }, - "end": { - "line": 33, - "column": 200 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 3233, - "end": 3234, - "loc": { - "start": { - "line": 33, - "column": 201 - }, - "end": { - "line": 33, - "column": 202 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3234, - "end": 3235, - "loc": { - "start": { - "line": 33, - "column": 202 - }, - "end": { - "line": 33, - "column": 203 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 3235, - "end": 3239, - "loc": { - "start": { - "line": 33, - "column": 203 - }, - "end": { - "line": 33, - "column": 207 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 4, - "start": 3240, - "end": 3241, - "loc": { - "start": { - "line": 33, - "column": 208 - }, - "end": { - "line": 33, - "column": 209 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3241, - "end": 3242, - "loc": { - "start": { - "line": 33, - "column": 209 - }, - "end": { - "line": 33, - "column": 210 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3253, - "end": 3254, - "loc": { - "start": { - "line": 34, - "column": 10 - }, - "end": { - "line": 34, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3255, - "end": 3256, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3257, - "end": 3258, - "loc": { - "start": { - "line": 34, - "column": 14 - }, - "end": { - "line": 34, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3258, - "end": 3259, - "loc": { - "start": { - "line": 34, - "column": 15 - }, - "end": { - "line": 34, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeValue", - "start": 3259, - "end": 3268, - "loc": { - "start": { - "line": 34, - "column": 16 - }, - "end": { - "line": 34, - "column": 25 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3268, - "end": 3269, - "loc": { - "start": { - "line": 34, - "column": 25 - }, - "end": { - "line": 34, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3270, - "end": 3271, - "loc": { - "start": { - "line": 34, - "column": 27 - }, - "end": { - "line": 34, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3271, - "end": 3272, - "loc": { - "start": { - "line": 34, - "column": 28 - }, - "end": { - "line": 34, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 3272, - "end": 3278, - "loc": { - "start": { - "line": 34, - "column": 29 - }, - "end": { - "line": 34, - "column": 35 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 3279, - "end": 3281, - "loc": { - "start": { - "line": 34, - "column": 36 - }, - "end": { - "line": 34, - "column": 38 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3282, - "end": 3283, - "loc": { - "start": { - "line": 34, - "column": 39 - }, - "end": { - "line": 34, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3283, - "end": 3284, - "loc": { - "start": { - "line": 34, - "column": 40 - }, - "end": { - "line": 34, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3285, - "end": 3286, - "loc": { - "start": { - "line": 34, - "column": 42 - }, - "end": { - "line": 34, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 3287, - "end": 3288, - "loc": { - "start": { - "line": 34, - "column": 44 - }, - "end": { - "line": 34, - "column": 45 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3289, - "end": 3290, - "loc": { - "start": { - "line": 34, - "column": 46 - }, - "end": { - "line": 34, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3291, - "end": 3292, - "loc": { - "start": { - "line": 34, - "column": 48 - }, - "end": { - "line": 34, - "column": 49 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3292, - "end": 3293, - "loc": { - "start": { - "line": 34, - "column": 49 - }, - "end": { - "line": 34, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 3293, - "end": 3300, - "loc": { - "start": { - "line": 34, - "column": 50 - }, - "end": { - "line": 34, - "column": 57 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3300, - "end": 3301, - "loc": { - "start": { - "line": 34, - "column": 57 - }, - "end": { - "line": 34, - "column": 58 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\r\\n?", - "flags": "g" - }, - "start": 3301, - "end": 3309, - "loc": { - "start": { - "line": 34, - "column": 58 - }, - "end": { - "line": 34, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3309, - "end": 3310, - "loc": { - "start": { - "line": 34, - "column": 66 - }, - "end": { - "line": 34, - "column": 67 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\n", - "start": 3311, - "end": 3315, - "loc": { - "start": { - "line": 34, - "column": 68 - }, - "end": { - "line": 34, - "column": 72 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3315, - "end": 3316, - "loc": { - "start": { - "line": 34, - "column": 72 - }, - "end": { - "line": 34, - "column": 73 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3317, - "end": 3318, - "loc": { - "start": { - "line": 34, - "column": 74 - }, - "end": { - "line": 34, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3319, - "end": 3320, - "loc": { - "start": { - "line": 34, - "column": 76 - }, - "end": { - "line": 34, - "column": 77 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3320, - "end": 3321, - "loc": { - "start": { - "line": 34, - "column": 77 - }, - "end": { - "line": 34, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 3321, - "end": 3328, - "loc": { - "start": { - "line": 34, - "column": 78 - }, - "end": { - "line": 34, - "column": 85 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3328, - "end": 3329, - "loc": { - "start": { - "line": 34, - "column": 85 - }, - "end": { - "line": 34, - "column": 86 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "[\\t\\n\\r ]+", - "flags": "g" - }, - "start": 3329, - "end": 3342, - "loc": { - "start": { - "line": 34, - "column": 86 - }, - "end": { - "line": 34, - "column": 99 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3342, - "end": 3343, - "loc": { - "start": { - "line": 34, - "column": 99 - }, - "end": { - "line": 34, - "column": 100 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": " ", - "start": 3344, - "end": 3347, - "loc": { - "start": { - "line": 34, - "column": 101 - }, - "end": { - "line": 34, - "column": 104 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3347, - "end": 3348, - "loc": { - "start": { - "line": 34, - "column": 104 - }, - "end": { - "line": 34, - "column": 105 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3348, - "end": 3349, - "loc": { - "start": { - "line": 34, - "column": 105 - }, - "end": { - "line": 34, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3350, - "end": 3351, - "loc": { - "start": { - "line": 34, - "column": 107 - }, - "end": { - "line": 34, - "column": 108 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3351, - "end": 3352, - "loc": { - "start": { - "line": 34, - "column": 108 - }, - "end": { - "line": 34, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3352, - "end": 3353, - "loc": { - "start": { - "line": 34, - "column": 109 - }, - "end": { - "line": 34, - "column": 110 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3353, - "end": 3354, - "loc": { - "start": { - "line": 34, - "column": 110 - }, - "end": { - "line": 34, - "column": 111 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3355, - "end": 3356, - "loc": { - "start": { - "line": 34, - "column": 112 - }, - "end": { - "line": 34, - "column": 113 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3357, - "end": 3358, - "loc": { - "start": { - "line": 34, - "column": 114 - }, - "end": { - "line": 34, - "column": 115 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3358, - "end": 3359, - "loc": { - "start": { - "line": 34, - "column": 115 - }, - "end": { - "line": 34, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3360, - "end": 3361, - "loc": { - "start": { - "line": 34, - "column": 117 - }, - "end": { - "line": 34, - "column": 118 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3361, - "end": 3362, - "loc": { - "start": { - "line": 34, - "column": 118 - }, - "end": { - "line": 34, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3362, - "end": 3363, - "loc": { - "start": { - "line": 34, - "column": 119 - }, - "end": { - "line": 34, - "column": 120 - } - } - }, - { - "type": { - "label": "<>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 8, - "updateContext": null - }, - "value": "<<", - "start": 3364, - "end": 3366, - "loc": { - "start": { - "line": 34, - "column": 121 - }, - "end": { - "line": 34, - "column": 123 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3367, - "end": 3368, - "loc": { - "start": { - "line": 34, - "column": 124 - }, - "end": { - "line": 34, - "column": 125 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3368, - "end": 3369, - "loc": { - "start": { - "line": 34, - "column": 125 - }, - "end": { - "line": 34, - "column": 126 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3370, - "end": 3371, - "loc": { - "start": { - "line": 34, - "column": 127 - }, - "end": { - "line": 34, - "column": 128 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 3372, - "end": 3373, - "loc": { - "start": { - "line": 34, - "column": 129 - }, - "end": { - "line": 34, - "column": 130 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3373, - "end": 3374, - "loc": { - "start": { - "line": 34, - "column": 130 - }, - "end": { - "line": 34, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 3375, - "end": 3376, - "loc": { - "start": { - "line": 34, - "column": 132 - }, - "end": { - "line": 34, - "column": 133 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 3377, - "end": 3379, - "loc": { - "start": { - "line": 34, - "column": 134 - }, - "end": { - "line": 34, - "column": 136 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3380, - "end": 3381, - "loc": { - "start": { - "line": 34, - "column": 137 - }, - "end": { - "line": 34, - "column": 138 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3381, - "end": 3382, - "loc": { - "start": { - "line": 34, - "column": 138 - }, - "end": { - "line": 34, - "column": 139 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 3382, - "end": 3388, - "loc": { - "start": { - "line": 34, - "column": 139 - }, - "end": { - "line": 34, - "column": 145 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3388, - "end": 3389, - "loc": { - "start": { - "line": 34, - "column": 145 - }, - "end": { - "line": 34, - "column": 146 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3390, - "end": 3391, - "loc": { - "start": { - "line": 34, - "column": 147 - }, - "end": { - "line": 34, - "column": 148 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3391, - "end": 3392, - "loc": { - "start": { - "line": 34, - "column": 148 - }, - "end": { - "line": 34, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3392, - "end": 3393, - "loc": { - "start": { - "line": 34, - "column": 149 - }, - "end": { - "line": 34, - "column": 150 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 3393, - "end": 3395, - "loc": { - "start": { - "line": 34, - "column": 150 - }, - "end": { - "line": 34, - "column": 152 - } - } - }, - { - "type": { - "label": "<>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 8, - "updateContext": null - }, - "value": "<<", - "start": 3396, - "end": 3398, - "loc": { - "start": { - "line": 34, - "column": 153 - }, - "end": { - "line": 34, - "column": 155 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3399, - "end": 3400, - "loc": { - "start": { - "line": 34, - "column": 156 - }, - "end": { - "line": 34, - "column": 157 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 3401, - "end": 3402, - "loc": { - "start": { - "line": 34, - "column": 158 - }, - "end": { - "line": 34, - "column": 159 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3403, - "end": 3404, - "loc": { - "start": { - "line": 34, - "column": 160 - }, - "end": { - "line": 34, - "column": 161 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3404, - "end": 3405, - "loc": { - "start": { - "line": 34, - "column": 161 - }, - "end": { - "line": 34, - "column": 162 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3406, - "end": 3407, - "loc": { - "start": { - "line": 34, - "column": 163 - }, - "end": { - "line": 34, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3408, - "end": 3409, - "loc": { - "start": { - "line": 34, - "column": 165 - }, - "end": { - "line": 34, - "column": 166 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3409, - "end": 3410, - "loc": { - "start": { - "line": 34, - "column": 166 - }, - "end": { - "line": 34, - "column": 167 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3410, - "end": 3411, - "loc": { - "start": { - "line": 34, - "column": 167 - }, - "end": { - "line": 34, - "column": 168 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3411, - "end": 3412, - "loc": { - "start": { - "line": 34, - "column": 168 - }, - "end": { - "line": 34, - "column": 169 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3417, - "end": 3418, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 5 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3418, - "end": 3421, - "loc": { - "start": { - "line": 35, - "column": 5 - }, - "end": { - "line": 35, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3422, - "end": 3423, - "loc": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3424, - "end": 3425, - "loc": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 12 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "(?:^|\\s)nocode(?:\\s|$)", - "flags": "" - }, - "start": 3426, - "end": 3450, - "loc": { - "start": { - "line": 35, - "column": 13 - }, - "end": { - "line": 35, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3450, - "end": 3451, - "loc": { - "start": { - "line": 35, - "column": 37 - }, - "end": { - "line": 35, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3460, - "end": 3461, - "loc": { - "start": { - "line": 36, - "column": 8 - }, - "end": { - "line": 36, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3462, - "end": 3463, - "loc": { - "start": { - "line": 36, - "column": 10 - }, - "end": { - "line": 36, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3464, - "end": 3465, - "loc": { - "start": { - "line": 36, - "column": 12 - }, - "end": { - "line": 36, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3465, - "end": 3466, - "loc": { - "start": { - "line": 36, - "column": 13 - }, - "end": { - "line": 36, - "column": 14 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3466, - "end": 3467, - "loc": { - "start": { - "line": 36, - "column": 14 - }, - "end": { - "line": 36, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 3476, - "end": 3477, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3478, - "end": 3479, - "loc": { - "start": { - "line": 37, - "column": 10 - }, - "end": { - "line": 37, - "column": 11 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 3480, - "end": 3481, - "loc": { - "start": { - "line": 37, - "column": 12 - }, - "end": { - "line": 37, - "column": 13 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3481, - "end": 3482, - "loc": { - "start": { - "line": 37, - "column": 13 - }, - "end": { - "line": 37, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3491, - "end": 3492, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3493, - "end": 3494, - "loc": { - "start": { - "line": 38, - "column": 10 - }, - "end": { - "line": 38, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3495, - "end": 3496, - "loc": { - "start": { - "line": 38, - "column": 12 - }, - "end": { - "line": 38, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3496, - "end": 3497, - "loc": { - "start": { - "line": 38, - "column": 13 - }, - "end": { - "line": 38, - "column": 14 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3497, - "end": 3498, - "loc": { - "start": { - "line": 38, - "column": 14 - }, - "end": { - "line": 38, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 3507, - "end": 3508, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3509, - "end": 3510, - "loc": { - "start": { - "line": 39, - "column": 10 - }, - "end": { - "line": 39, - "column": 11 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 3511, - "end": 3512, - "loc": { - "start": { - "line": 39, - "column": 12 - }, - "end": { - "line": 39, - "column": 13 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3512, - "end": 3513, - "loc": { - "start": { - "line": 39, - "column": 13 - }, - "end": { - "line": 39, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3522, - "end": 3523, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3523, - "end": 3524, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3524, - "end": 3525, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 11 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3525, - "end": 3526, - "loc": { - "start": { - "line": 40, - "column": 11 - }, - "end": { - "line": 40, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentStyle", - "start": 3526, - "end": 3538, - "loc": { - "start": { - "line": 40, - "column": 12 - }, - "end": { - "line": 40, - "column": 24 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3539, - "end": 3540, - "loc": { - "start": { - "line": 40, - "column": 25 - }, - "end": { - "line": 40, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3541, - "end": 3542, - "loc": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3543, - "end": 3544, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 40, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3545, - "end": 3546, - "loc": { - "start": { - "line": 40, - "column": 31 - }, - "end": { - "line": 40, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3546, - "end": 3547, - "loc": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentStyle", - "start": 3547, - "end": 3559, - "loc": { - "start": { - "line": 40, - "column": 33 - }, - "end": { - "line": 40, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3559, - "end": 3560, - "loc": { - "start": { - "line": 40, - "column": 45 - }, - "end": { - "line": 40, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "whiteSpace", - "start": 3560, - "end": 3570, - "loc": { - "start": { - "line": 40, - "column": 46 - }, - "end": { - "line": 40, - "column": 56 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3571, - "end": 3572, - "loc": { - "start": { - "line": 40, - "column": 57 - }, - "end": { - "line": 40, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 3573, - "end": 3579, - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3579, - "end": 3580, - "loc": { - "start": { - "line": 40, - "column": 65 - }, - "end": { - "line": 40, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getComputedStyle", - "start": 3580, - "end": 3596, - "loc": { - "start": { - "line": 40, - "column": 66 - }, - "end": { - "line": 40, - "column": 82 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 3597, - "end": 3599, - "loc": { - "start": { - "line": 40, - "column": 83 - }, - "end": { - "line": 40, - "column": 85 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3600, - "end": 3601, - "loc": { - "start": { - "line": 40, - "column": 86 - }, - "end": { - "line": 40, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3601, - "end": 3602, - "loc": { - "start": { - "line": 40, - "column": 87 - }, - "end": { - "line": 40, - "column": 88 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3603, - "end": 3604, - "loc": { - "start": { - "line": 40, - "column": 89 - }, - "end": { - "line": 40, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 3605, - "end": 3613, - "loc": { - "start": { - "line": 40, - "column": 91 - }, - "end": { - "line": 40, - "column": 99 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3613, - "end": 3614, - "loc": { - "start": { - "line": 40, - "column": 99 - }, - "end": { - "line": 40, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "defaultView", - "start": 3614, - "end": 3625, - "loc": { - "start": { - "line": 40, - "column": 100 - }, - "end": { - "line": 40, - "column": 111 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3625, - "end": 3626, - "loc": { - "start": { - "line": 40, - "column": 111 - }, - "end": { - "line": 40, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getComputedStyle", - "start": 3626, - "end": 3642, - "loc": { - "start": { - "line": 40, - "column": 112 - }, - "end": { - "line": 40, - "column": 128 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3642, - "end": 3643, - "loc": { - "start": { - "line": 40, - "column": 128 - }, - "end": { - "line": 40, - "column": 129 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3643, - "end": 3644, - "loc": { - "start": { - "line": 40, - "column": 129 - }, - "end": { - "line": 40, - "column": 130 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3644, - "end": 3645, - "loc": { - "start": { - "line": 40, - "column": 130 - }, - "end": { - "line": 40, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 3646, - "end": 3647, - "loc": { - "start": { - "line": 40, - "column": 132 - }, - "end": { - "line": 40, - "column": 133 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3647, - "end": 3648, - "loc": { - "start": { - "line": 40, - "column": 133 - }, - "end": { - "line": 40, - "column": 134 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3648, - "end": 3649, - "loc": { - "start": { - "line": 40, - "column": 134 - }, - "end": { - "line": 40, - "column": 135 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getPropertyValue", - "start": 3649, - "end": 3665, - "loc": { - "start": { - "line": 40, - "column": 135 - }, - "end": { - "line": 40, - "column": 151 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3665, - "end": 3666, - "loc": { - "start": { - "line": 40, - "column": 151 - }, - "end": { - "line": 40, - "column": 152 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "white-space", - "start": 3666, - "end": 3679, - "loc": { - "start": { - "line": 40, - "column": 152 - }, - "end": { - "line": 40, - "column": 165 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3679, - "end": 3680, - "loc": { - "start": { - "line": 40, - "column": 165 - }, - "end": { - "line": 40, - "column": 166 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3680, - "end": 3681, - "loc": { - "start": { - "line": 40, - "column": 166 - }, - "end": { - "line": 40, - "column": 167 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3681, - "end": 3682, - "loc": { - "start": { - "line": 40, - "column": 167 - }, - "end": { - "line": 40, - "column": 168 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3682, - "end": 3685, - "loc": { - "start": { - "line": 40, - "column": 168 - }, - "end": { - "line": 40, - "column": 171 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 3686, - "end": 3687, - "loc": { - "start": { - "line": 40, - "column": 172 - }, - "end": { - "line": 40, - "column": 173 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3688, - "end": 3689, - "loc": { - "start": { - "line": 40, - "column": 174 - }, - "end": { - "line": 40, - "column": 175 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3690, - "end": 3691, - "loc": { - "start": { - "line": 40, - "column": 176 - }, - "end": { - "line": 40, - "column": 177 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 3692, - "end": 3694, - "loc": { - "start": { - "line": 40, - "column": 178 - }, - "end": { - "line": 40, - "column": 180 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pre", - "start": 3695, - "end": 3700, - "loc": { - "start": { - "line": 40, - "column": 181 - }, - "end": { - "line": 40, - "column": 186 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 3701, - "end": 3704, - "loc": { - "start": { - "line": 40, - "column": 187 - }, - "end": { - "line": 40, - "column": 190 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3705, - "end": 3706, - "loc": { - "start": { - "line": 40, - "column": 191 - }, - "end": { - "line": 40, - "column": 192 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3706, - "end": 3707, - "loc": { - "start": { - "line": 40, - "column": 192 - }, - "end": { - "line": 40, - "column": 193 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 3707, - "end": 3716, - "loc": { - "start": { - "line": 40, - "column": 193 - }, - "end": { - "line": 40, - "column": 202 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3716, - "end": 3717, - "loc": { - "start": { - "line": 40, - "column": 202 - }, - "end": { - "line": 40, - "column": 203 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 3717, - "end": 3718, - "loc": { - "start": { - "line": 40, - "column": 203 - }, - "end": { - "line": 40, - "column": 204 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3718, - "end": 3719, - "loc": { - "start": { - "line": 40, - "column": 204 - }, - "end": { - "line": 40, - "column": 205 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 3720, - "end": 3721, - "loc": { - "start": { - "line": 40, - "column": 206 - }, - "end": { - "line": 40, - "column": 207 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3721, - "end": 3722, - "loc": { - "start": { - "line": 40, - "column": 207 - }, - "end": { - "line": 40, - "column": 208 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3722, - "end": 3723, - "loc": { - "start": { - "line": 40, - "column": 208 - }, - "end": { - "line": 40, - "column": 209 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3723, - "end": 3724, - "loc": { - "start": { - "line": 40, - "column": 209 - }, - "end": { - "line": 40, - "column": 210 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3724, - "end": 3725, - "loc": { - "start": { - "line": 40, - "column": 210 - }, - "end": { - "line": 40, - "column": 211 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3725, - "end": 3726, - "loc": { - "start": { - "line": 40, - "column": 211 - }, - "end": { - "line": 40, - "column": 212 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3726, - "end": 3727, - "loc": { - "start": { - "line": 40, - "column": 212 - }, - "end": { - "line": 40, - "column": 213 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3727, - "end": 3728, - "loc": { - "start": { - "line": 40, - "column": 213 - }, - "end": { - "line": 40, - "column": 214 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3728, - "end": 3734, - "loc": { - "start": { - "line": 40, - "column": 214 - }, - "end": { - "line": 40, - "column": 220 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3735, - "end": 3736, - "loc": { - "start": { - "line": 40, - "column": 221 - }, - "end": { - "line": 40, - "column": 222 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3737, - "end": 3738, - "loc": { - "start": { - "line": 40, - "column": 223 - }, - "end": { - "line": 40, - "column": 224 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3738, - "end": 3739, - "loc": { - "start": { - "line": 40, - "column": 224 - }, - "end": { - "line": 40, - "column": 225 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3740, - "end": 3741, - "loc": { - "start": { - "line": 40, - "column": 226 - }, - "end": { - "line": 40, - "column": 227 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3741, - "end": 3742, - "loc": { - "start": { - "line": 40, - "column": 227 - }, - "end": { - "line": 40, - "column": 228 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "join", - "start": 3742, - "end": 3746, - "loc": { - "start": { - "line": 40, - "column": 228 - }, - "end": { - "line": 40, - "column": 232 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3746, - "end": 3747, - "loc": { - "start": { - "line": 40, - "column": 232 - }, - "end": { - "line": 40, - "column": 233 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 3747, - "end": 3749, - "loc": { - "start": { - "line": 40, - "column": 233 - }, - "end": { - "line": 40, - "column": 235 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3749, - "end": 3750, - "loc": { - "start": { - "line": 40, - "column": 235 - }, - "end": { - "line": 40, - "column": 236 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3750, - "end": 3751, - "loc": { - "start": { - "line": 40, - "column": 236 - }, - "end": { - "line": 40, - "column": 237 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 3751, - "end": 3758, - "loc": { - "start": { - "line": 40, - "column": 237 - }, - "end": { - "line": 40, - "column": 244 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3758, - "end": 3759, - "loc": { - "start": { - "line": 40, - "column": 244 - }, - "end": { - "line": 40, - "column": 245 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\n$", - "flags": "" - }, - "start": 3759, - "end": 3764, - "loc": { - "start": { - "line": 40, - "column": 245 - }, - "end": { - "line": 40, - "column": 250 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3764, - "end": 3765, - "loc": { - "start": { - "line": 40, - "column": 250 - }, - "end": { - "line": 40, - "column": 251 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 3766, - "end": 3768, - "loc": { - "start": { - "line": 40, - "column": 252 - }, - "end": { - "line": 40, - "column": 254 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3768, - "end": 3769, - "loc": { - "start": { - "line": 40, - "column": 254 - }, - "end": { - "line": 40, - "column": 255 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3769, - "end": 3770, - "loc": { - "start": { - "line": 40, - "column": 255 - }, - "end": { - "line": 40, - "column": 256 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 3771, - "end": 3772, - "loc": { - "start": { - "line": 40, - "column": 257 - }, - "end": { - "line": 40, - "column": 258 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3772, - "end": 3773, - "loc": { - "start": { - "line": 40, - "column": 258 - }, - "end": { - "line": 40, - "column": 259 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 3774, - "end": 3775, - "loc": { - "start": { - "line": 40, - "column": 260 - }, - "end": { - "line": 40, - "column": 261 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3776, - "end": 3777, - "loc": { - "start": { - "line": 40, - "column": 262 - }, - "end": { - "line": 40, - "column": 263 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3777, - "end": 3778, - "loc": { - "start": { - "line": 40, - "column": 263 - }, - "end": { - "line": 40, - "column": 264 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3781, - "end": 3782, - "loc": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 3782, - "end": 3790, - "loc": { - "start": { - "line": 41, - "column": 3 - }, - "end": { - "line": 41, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "B", - "start": 3791, - "end": 3792, - "loc": { - "start": { - "line": 41, - "column": 12 - }, - "end": { - "line": 41, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3792, - "end": 3793, - "loc": { - "start": { - "line": 41, - "column": 13 - }, - "end": { - "line": 41, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3793, - "end": 3794, - "loc": { - "start": { - "line": 41, - "column": 14 - }, - "end": { - "line": 41, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3794, - "end": 3795, - "loc": { - "start": { - "line": 41, - "column": 15 - }, - "end": { - "line": 41, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3796, - "end": 3797, - "loc": { - "start": { - "line": 41, - "column": 17 - }, - "end": { - "line": 41, - "column": 18 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3797, - "end": 3798, - "loc": { - "start": { - "line": 41, - "column": 18 - }, - "end": { - "line": 41, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3799, - "end": 3800, - "loc": { - "start": { - "line": 41, - "column": 20 - }, - "end": { - "line": 41, - "column": 21 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3800, - "end": 3801, - "loc": { - "start": { - "line": 41, - "column": 21 - }, - "end": { - "line": 41, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3802, - "end": 3803, - "loc": { - "start": { - "line": 41, - "column": 23 - }, - "end": { - "line": 41, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3803, - "end": 3804, - "loc": { - "start": { - "line": 41, - "column": 24 - }, - "end": { - "line": 41, - "column": 25 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3805, - "end": 3806, - "loc": { - "start": { - "line": 41, - "column": 26 - }, - "end": { - "line": 41, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3811, - "end": 3812, - "loc": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 5 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 3813, - "end": 3815, - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 42, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3816, - "end": 3817, - "loc": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3817, - "end": 3818, - "loc": { - "start": { - "line": 42, - "column": 10 - }, - "end": { - "line": 42, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3819, - "end": 3820, - "loc": { - "start": { - "line": 42, - "column": 12 - }, - "end": { - "line": 42, - "column": 13 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3821, - "end": 3822, - "loc": { - "start": { - "line": 42, - "column": 14 - }, - "end": { - "line": 42, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3823, - "end": 3824, - "loc": { - "start": { - "line": 42, - "column": 16 - }, - "end": { - "line": 42, - "column": 17 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3824, - "end": 3825, - "loc": { - "start": { - "line": 42, - "column": 17 - }, - "end": { - "line": 42, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3826, - "end": 3827, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3827, - "end": 3828, - "loc": { - "start": { - "line": 42, - "column": 20 - }, - "end": { - "line": 42, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 3829, - "end": 3830, - "loc": { - "start": { - "line": 42, - "column": 22 - }, - "end": { - "line": 42, - "column": 23 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3830, - "end": 3831, - "loc": { - "start": { - "line": 42, - "column": 23 - }, - "end": { - "line": 42, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3832, - "end": 3833, - "loc": { - "start": { - "line": 42, - "column": 25 - }, - "end": { - "line": 42, - "column": 26 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3834, - "end": 3835, - "loc": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3835, - "end": 3836, - "loc": { - "start": { - "line": 42, - "column": 28 - }, - "end": { - "line": 42, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3837, - "end": 3838, - "loc": { - "start": { - "line": 42, - "column": 30 - }, - "end": { - "line": 42, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3838, - "end": 3839, - "loc": { - "start": { - "line": 42, - "column": 31 - }, - "end": { - "line": 42, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3839, - "end": 3840, - "loc": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3840, - "end": 3841, - "loc": { - "start": { - "line": 42, - "column": 33 - }, - "end": { - "line": 42, - "column": 34 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3841, - "end": 3842, - "loc": { - "start": { - "line": 42, - "column": 34 - }, - "end": { - "line": 42, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3843, - "end": 3844, - "loc": { - "start": { - "line": 42, - "column": 36 - }, - "end": { - "line": 42, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3844, - "end": 3845, - "loc": { - "start": { - "line": 42, - "column": 37 - }, - "end": { - "line": 42, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 3845, - "end": 3849, - "loc": { - "start": { - "line": 42, - "column": 38 - }, - "end": { - "line": 42, - "column": 42 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3849, - "end": 3850, - "loc": { - "start": { - "line": 42, - "column": 42 - }, - "end": { - "line": 42, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "apply", - "start": 3850, - "end": 3855, - "loc": { - "start": { - "line": 42, - "column": 43 - }, - "end": { - "line": 42, - "column": 48 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3855, - "end": 3856, - "loc": { - "start": { - "line": 42, - "column": 48 - }, - "end": { - "line": 42, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 3856, - "end": 3857, - "loc": { - "start": { - "line": 42, - "column": 49 - }, - "end": { - "line": 42, - "column": 50 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3857, - "end": 3858, - "loc": { - "start": { - "line": 42, - "column": 50 - }, - "end": { - "line": 42, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3859, - "end": 3860, - "loc": { - "start": { - "line": 42, - "column": 52 - }, - "end": { - "line": 42, - "column": 53 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3860, - "end": 3861, - "loc": { - "start": { - "line": 42, - "column": 53 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3861, - "end": 3862, - "loc": { - "start": { - "line": 42, - "column": 54 - }, - "end": { - "line": 42, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3862, - "end": 3863, - "loc": { - "start": { - "line": 42, - "column": 55 - }, - "end": { - "line": 42, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3863, - "end": 3864, - "loc": { - "start": { - "line": 42, - "column": 56 - }, - "end": { - "line": 42, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3864, - "end": 3865, - "loc": { - "start": { - "line": 42, - "column": 57 - }, - "end": { - "line": 42, - "column": 58 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3868, - "end": 3869, - "loc": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 43, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 3869, - "end": 3877, - "loc": { - "start": { - "line": 43, - "column": 3 - }, - "end": { - "line": 43, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 3878, - "end": 3879, - "loc": { - "start": { - "line": 43, - "column": 12 - }, - "end": { - "line": 43, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3879, - "end": 3880, - "loc": { - "start": { - "line": 43, - "column": 13 - }, - "end": { - "line": 43, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3880, - "end": 3881, - "loc": { - "start": { - "line": 43, - "column": 14 - }, - "end": { - "line": 43, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3881, - "end": 3882, - "loc": { - "start": { - "line": 43, - "column": 15 - }, - "end": { - "line": 43, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 3883, - "end": 3884, - "loc": { - "start": { - "line": 43, - "column": 17 - }, - "end": { - "line": 43, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3884, - "end": 3885, - "loc": { - "start": { - "line": 43, - "column": 18 - }, - "end": { - "line": 43, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3886, - "end": 3887, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 21 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 3892, - "end": 3900, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 3901, - "end": 3902, - "loc": { - "start": { - "line": 44, - "column": 13 - }, - "end": { - "line": 44, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3902, - "end": 3903, - "loc": { - "start": { - "line": 44, - "column": 14 - }, - "end": { - "line": 44, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3903, - "end": 3904, - "loc": { - "start": { - "line": 44, - "column": 15 - }, - "end": { - "line": 44, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3904, - "end": 3905, - "loc": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3906, - "end": 3907, - "loc": { - "start": { - "line": 44, - "column": 18 - }, - "end": { - "line": 44, - "column": 19 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 3914, - "end": 3917, - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 45, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3918, - "end": 3919, - "loc": { - "start": { - "line": 45, - "column": 10 - }, - "end": { - "line": 45, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3919, - "end": 3922, - "loc": { - "start": { - "line": 45, - "column": 11 - }, - "end": { - "line": 45, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3923, - "end": 3924, - "loc": { - "start": { - "line": 45, - "column": 15 - }, - "end": { - "line": 45, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3925, - "end": 3926, - "loc": { - "start": { - "line": 45, - "column": 17 - }, - "end": { - "line": 45, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3927, - "end": 3928, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3928, - "end": 3929, - "loc": { - "start": { - "line": 45, - "column": 20 - }, - "end": { - "line": 45, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 3929, - "end": 3930, - "loc": { - "start": { - "line": 45, - "column": 21 - }, - "end": { - "line": 45, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3930, - "end": 3931, - "loc": { - "start": { - "line": 45, - "column": 22 - }, - "end": { - "line": 45, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 3932, - "end": 3933, - "loc": { - "start": { - "line": 45, - "column": 24 - }, - "end": { - "line": 45, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3934, - "end": 3935, - "loc": { - "start": { - "line": 45, - "column": 26 - }, - "end": { - "line": 45, - "column": 27 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3936, - "end": 3937, - "loc": { - "start": { - "line": 45, - "column": 28 - }, - "end": { - "line": 45, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 3937, - "end": 3938, - "loc": { - "start": { - "line": 45, - "column": 29 - }, - "end": { - "line": 45, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3938, - "end": 3939, - "loc": { - "start": { - "line": 45, - "column": 30 - }, - "end": { - "line": 45, - "column": 31 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 3940, - "end": 3945, - "loc": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 37 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3945, - "end": 3946, - "loc": { - "start": { - "line": 45, - "column": 37 - }, - "end": { - "line": 45, - "column": 38 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3946, - "end": 3947, - "loc": { - "start": { - "line": 45, - "column": 38 - }, - "end": { - "line": 45, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 3948, - "end": 3949, - "loc": { - "start": { - "line": 45, - "column": 40 - }, - "end": { - "line": 45, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3950, - "end": 3951, - "loc": { - "start": { - "line": 45, - "column": 42 - }, - "end": { - "line": 45, - "column": 43 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 3952, - "end": 3953, - "loc": { - "start": { - "line": 45, - "column": 44 - }, - "end": { - "line": 45, - "column": 45 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3953, - "end": 3954, - "loc": { - "start": { - "line": 45, - "column": 45 - }, - "end": { - "line": 45, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3955, - "end": 3956, - "loc": { - "start": { - "line": 45, - "column": 47 - }, - "end": { - "line": 45, - "column": 48 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3957, - "end": 3958, - "loc": { - "start": { - "line": 45, - "column": 49 - }, - "end": { - "line": 45, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3959, - "end": 3960, - "loc": { - "start": { - "line": 45, - "column": 51 - }, - "end": { - "line": 45, - "column": 52 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3960, - "end": 3961, - "loc": { - "start": { - "line": 45, - "column": 52 - }, - "end": { - "line": 45, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 3961, - "end": 3962, - "loc": { - "start": { - "line": 45, - "column": 53 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3962, - "end": 3963, - "loc": { - "start": { - "line": 45, - "column": 54 - }, - "end": { - "line": 45, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 3963, - "end": 3968, - "loc": { - "start": { - "line": 45, - "column": 55 - }, - "end": { - "line": 45, - "column": 60 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3968, - "end": 3969, - "loc": { - "start": { - "line": 45, - "column": 60 - }, - "end": { - "line": 45, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 3969, - "end": 3970, - "loc": { - "start": { - "line": 45, - "column": 61 - }, - "end": { - "line": 45, - "column": 62 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3970, - "end": 3971, - "loc": { - "start": { - "line": 45, - "column": 62 - }, - "end": { - "line": 45, - "column": 63 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 3972, - "end": 3974, - "loc": { - "start": { - "line": 45, - "column": 64 - }, - "end": { - "line": 45, - "column": 66 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3975, - "end": 3976, - "loc": { - "start": { - "line": 45, - "column": 67 - }, - "end": { - "line": 45, - "column": 68 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3976, - "end": 3977, - "loc": { - "start": { - "line": 45, - "column": 68 - }, - "end": { - "line": 45, - "column": 69 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3977, - "end": 3978, - "loc": { - "start": { - "line": 45, - "column": 69 - }, - "end": { - "line": 45, - "column": 70 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 3979, - "end": 3980, - "loc": { - "start": { - "line": 45, - "column": 71 - }, - "end": { - "line": 45, - "column": 72 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3981, - "end": 3982, - "loc": { - "start": { - "line": 45, - "column": 73 - }, - "end": { - "line": 45, - "column": 74 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3983, - "end": 3984, - "loc": { - "start": { - "line": 45, - "column": 75 - }, - "end": { - "line": 45, - "column": 76 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3984, - "end": 3985, - "loc": { - "start": { - "line": 45, - "column": 76 - }, - "end": { - "line": 45, - "column": 77 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3985, - "end": 3986, - "loc": { - "start": { - "line": 45, - "column": 77 - }, - "end": { - "line": 45, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 3987, - "end": 3988, - "loc": { - "start": { - "line": 45, - "column": 79 - }, - "end": { - "line": 45, - "column": 80 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3989, - "end": 3990, - "loc": { - "start": { - "line": 45, - "column": 81 - }, - "end": { - "line": 45, - "column": 82 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 3991, - "end": 3992, - "loc": { - "start": { - "line": 45, - "column": 83 - }, - "end": { - "line": 45, - "column": 84 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3992, - "end": 3993, - "loc": { - "start": { - "line": 45, - "column": 84 - }, - "end": { - "line": 45, - "column": 85 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 3994, - "end": 3995, - "loc": { - "start": { - "line": 45, - "column": 86 - }, - "end": { - "line": 45, - "column": 87 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3996, - "end": 3997, - "loc": { - "start": { - "line": 45, - "column": 88 - }, - "end": { - "line": 45, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 3998, - "end": 3999, - "loc": { - "start": { - "line": 45, - "column": 90 - }, - "end": { - "line": 45, - "column": 91 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3999, - "end": 4000, - "loc": { - "start": { - "line": 45, - "column": 91 - }, - "end": { - "line": 45, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4000, - "end": 4006, - "loc": { - "start": { - "line": 45, - "column": 92 - }, - "end": { - "line": 45, - "column": 98 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4006, - "end": 4007, - "loc": { - "start": { - "line": 45, - "column": 98 - }, - "end": { - "line": 45, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 4008, - "end": 4009, - "loc": { - "start": { - "line": 45, - "column": 100 - }, - "end": { - "line": 45, - "column": 101 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 4010, - "end": 4011, - "loc": { - "start": { - "line": 45, - "column": 102 - }, - "end": { - "line": 45, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 4012, - "end": 4013, - "loc": { - "start": { - "line": 45, - "column": 104 - }, - "end": { - "line": 45, - "column": 105 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4013, - "end": 4014, - "loc": { - "start": { - "line": 45, - "column": 105 - }, - "end": { - "line": 45, - "column": 106 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 4015, - "end": 4017, - "loc": { - "start": { - "line": 45, - "column": 107 - }, - "end": { - "line": 45, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 4017, - "end": 4018, - "loc": { - "start": { - "line": 45, - "column": 109 - }, - "end": { - "line": 45, - "column": 110 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4018, - "end": 4019, - "loc": { - "start": { - "line": 45, - "column": 110 - }, - "end": { - "line": 45, - "column": 111 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4020, - "end": 4021, - "loc": { - "start": { - "line": 45, - "column": 112 - }, - "end": { - "line": 45, - "column": 113 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4030, - "end": 4033, - "loc": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4034, - "end": 4035, - "loc": { - "start": { - "line": 46, - "column": 12 - }, - "end": { - "line": 46, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4036, - "end": 4037, - "loc": { - "start": { - "line": 46, - "column": 14 - }, - "end": { - "line": 46, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 4038, - "end": 4039, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4039, - "end": 4040, - "loc": { - "start": { - "line": 46, - "column": 17 - }, - "end": { - "line": 46, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 4040, - "end": 4041, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4041, - "end": 4042, - "loc": { - "start": { - "line": 46, - "column": 19 - }, - "end": { - "line": 46, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4042, - "end": 4043, - "loc": { - "start": { - "line": 46, - "column": 20 - }, - "end": { - "line": 46, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4056, - "end": 4057, - "loc": { - "start": { - "line": 47, - "column": 12 - }, - "end": { - "line": 47, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4058, - "end": 4059, - "loc": { - "start": { - "line": 47, - "column": 14 - }, - "end": { - "line": 47, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 4060, - "end": 4061, - "loc": { - "start": { - "line": 47, - "column": 16 - }, - "end": { - "line": 47, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4061, - "end": 4062, - "loc": { - "start": { - "line": 47, - "column": 17 - }, - "end": { - "line": 47, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4062, - "end": 4063, - "loc": { - "start": { - "line": 47, - "column": 18 - }, - "end": { - "line": 47, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4063, - "end": 4064, - "loc": { - "start": { - "line": 47, - "column": 19 - }, - "end": { - "line": 47, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4064, - "end": 4065, - "loc": { - "start": { - "line": 47, - "column": 20 - }, - "end": { - "line": 47, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4078, - "end": 4079, - "loc": { - "start": { - "line": 48, - "column": 12 - }, - "end": { - "line": 48, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4080, - "end": 4081, - "loc": { - "start": { - "line": 48, - "column": 14 - }, - "end": { - "line": 48, - "column": 15 - } - } - }, - { - "type": { - "label": "void", - "keyword": "void", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "void", - "start": 4082, - "end": 4086, - "loc": { - "start": { - "line": 48, - "column": 16 - }, - "end": { - "line": 48, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4087, - "end": 4088, - "loc": { - "start": { - "line": 48, - "column": 21 - }, - "end": { - "line": 48, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4088, - "end": 4089, - "loc": { - "start": { - "line": 48, - "column": 22 - }, - "end": { - "line": 48, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4102, - "end": 4103, - "loc": { - "start": { - "line": 49, - "column": 12 - }, - "end": { - "line": 49, - "column": 13 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4103, - "end": 4104, - "loc": { - "start": { - "line": 49, - "column": 13 - }, - "end": { - "line": 49, - "column": 14 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4104, - "end": 4106, - "loc": { - "start": { - "line": 49, - "column": 14 - }, - "end": { - "line": 49, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4107, - "end": 4108, - "loc": { - "start": { - "line": 49, - "column": 17 - }, - "end": { - "line": 49, - "column": 18 - } - } - }, - { - "type": { - "label": "typeof", - "keyword": "typeof", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "typeof", - "start": 4108, - "end": 4114, - "loc": { - "start": { - "line": 49, - "column": 18 - }, - "end": { - "line": 49, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4115, - "end": 4116, - "loc": { - "start": { - "line": 49, - "column": 25 - }, - "end": { - "line": 49, - "column": 26 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 4117, - "end": 4120, - "loc": { - "start": { - "line": 49, - "column": 27 - }, - "end": { - "line": 49, - "column": 30 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "string", - "start": 4121, - "end": 4129, - "loc": { - "start": { - "line": 49, - "column": 31 - }, - "end": { - "line": 49, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4129, - "end": 4130, - "loc": { - "start": { - "line": 49, - "column": 39 - }, - "end": { - "line": 49, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4131, - "end": 4132, - "loc": { - "start": { - "line": 49, - "column": 41 - }, - "end": { - "line": 49, - "column": 42 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4133, - "end": 4134, - "loc": { - "start": { - "line": 49, - "column": 43 - }, - "end": { - "line": 49, - "column": 44 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 4135, - "end": 4136, - "loc": { - "start": { - "line": 49, - "column": 45 - }, - "end": { - "line": 49, - "column": 46 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4136, - "end": 4137, - "loc": { - "start": { - "line": 49, - "column": 46 - }, - "end": { - "line": 49, - "column": 47 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4137, - "end": 4138, - "loc": { - "start": { - "line": 49, - "column": 47 - }, - "end": { - "line": 49, - "column": 48 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 4138, - "end": 4142, - "loc": { - "start": { - "line": 49, - "column": 48 - }, - "end": { - "line": 49, - "column": 52 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4143, - "end": 4144, - "loc": { - "start": { - "line": 49, - "column": 53 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4155, - "end": 4158, - "loc": { - "start": { - "line": 50, - "column": 10 - }, - "end": { - "line": 50, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4159, - "end": 4160, - "loc": { - "start": { - "line": 50, - "column": 14 - }, - "end": { - "line": 50, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4161, - "end": 4162, - "loc": { - "start": { - "line": 50, - "column": 16 - }, - "end": { - "line": 50, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 4163, - "end": 4164, - "loc": { - "start": { - "line": 50, - "column": 18 - }, - "end": { - "line": 50, - "column": 19 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4164, - "end": 4165, - "loc": { - "start": { - "line": 50, - "column": 19 - }, - "end": { - "line": 50, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4165, - "end": 4166, - "loc": { - "start": { - "line": 50, - "column": 20 - }, - "end": { - "line": 50, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4166, - "end": 4167, - "loc": { - "start": { - "line": 50, - "column": 21 - }, - "end": { - "line": 50, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 4167, - "end": 4173, - "loc": { - "start": { - "line": 50, - "column": 22 - }, - "end": { - "line": 50, - "column": 28 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4173, - "end": 4174, - "loc": { - "start": { - "line": 50, - "column": 28 - }, - "end": { - "line": 50, - "column": 29 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4174, - "end": 4175, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 50, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4175, - "end": 4176, - "loc": { - "start": { - "line": 50, - "column": 30 - }, - "end": { - "line": 50, - "column": 31 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4176, - "end": 4177, - "loc": { - "start": { - "line": 50, - "column": 31 - }, - "end": { - "line": 50, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4177, - "end": 4178, - "loc": { - "start": { - "line": 50, - "column": 32 - }, - "end": { - "line": 50, - "column": 33 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4178, - "end": 4180, - "loc": { - "start": { - "line": 50, - "column": 33 - }, - "end": { - "line": 50, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4181, - "end": 4182, - "loc": { - "start": { - "line": 50, - "column": 36 - }, - "end": { - "line": 50, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4182, - "end": 4183, - "loc": { - "start": { - "line": 50, - "column": 37 - }, - "end": { - "line": 50, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4183, - "end": 4184, - "loc": { - "start": { - "line": 50, - "column": 38 - }, - "end": { - "line": 50, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4185, - "end": 4186, - "loc": { - "start": { - "line": 50, - "column": 40 - }, - "end": { - "line": 50, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4187, - "end": 4188, - "loc": { - "start": { - "line": 50, - "column": 42 - }, - "end": { - "line": 50, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4189, - "end": 4190, - "loc": { - "start": { - "line": 50, - "column": 44 - }, - "end": { - "line": 50, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4190, - "end": 4191, - "loc": { - "start": { - "line": 50, - "column": 45 - }, - "end": { - "line": 50, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 4191, - "end": 4196, - "loc": { - "start": { - "line": 50, - "column": 46 - }, - "end": { - "line": 50, - "column": 51 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4196, - "end": 4197, - "loc": { - "start": { - "line": 50, - "column": 51 - }, - "end": { - "line": 50, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4197, - "end": 4198, - "loc": { - "start": { - "line": 50, - "column": 52 - }, - "end": { - "line": 50, - "column": 53 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4198, - "end": 4199, - "loc": { - "start": { - "line": 50, - "column": 53 - }, - "end": { - "line": 50, - "column": 54 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4199, - "end": 4200, - "loc": { - "start": { - "line": 50, - "column": 54 - }, - "end": { - "line": 50, - "column": 55 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4200, - "end": 4201, - "loc": { - "start": { - "line": 50, - "column": 55 - }, - "end": { - "line": 50, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4201, - "end": 4202, - "loc": { - "start": { - "line": 50, - "column": 56 - }, - "end": { - "line": 50, - "column": 57 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4202, - "end": 4203, - "loc": { - "start": { - "line": 50, - "column": 57 - }, - "end": { - "line": 50, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4204, - "end": 4205, - "loc": { - "start": { - "line": 50, - "column": 59 - }, - "end": { - "line": 50, - "column": 60 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4206, - "end": 4207, - "loc": { - "start": { - "line": 50, - "column": 61 - }, - "end": { - "line": 50, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4208, - "end": 4209, - "loc": { - "start": { - "line": 50, - "column": 63 - }, - "end": { - "line": 50, - "column": 64 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4209, - "end": 4210, - "loc": { - "start": { - "line": 50, - "column": 64 - }, - "end": { - "line": 50, - "column": 65 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4210, - "end": 4211, - "loc": { - "start": { - "line": 50, - "column": 65 - }, - "end": { - "line": 50, - "column": 66 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4211, - "end": 4212, - "loc": { - "start": { - "line": 50, - "column": 66 - }, - "end": { - "line": 50, - "column": 67 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4212, - "end": 4213, - "loc": { - "start": { - "line": 50, - "column": 67 - }, - "end": { - "line": 50, - "column": 68 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 4213, - "end": 4217, - "loc": { - "start": { - "line": 50, - "column": 68 - }, - "end": { - "line": 50, - "column": 72 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4218, - "end": 4219, - "loc": { - "start": { - "line": 50, - "column": 73 - }, - "end": { - "line": 50, - "column": 74 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 4232, - "end": 4235, - "loc": { - "start": { - "line": 51, - "column": 12 - }, - "end": { - "line": 51, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4236, - "end": 4237, - "loc": { - "start": { - "line": 51, - "column": 16 - }, - "end": { - "line": 51, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4237, - "end": 4238, - "loc": { - "start": { - "line": 51, - "column": 17 - }, - "end": { - "line": 51, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4239, - "end": 4240, - "loc": { - "start": { - "line": 51, - "column": 19 - }, - "end": { - "line": 51, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4241, - "end": 4242, - "loc": { - "start": { - "line": 51, - "column": 21 - }, - "end": { - "line": 51, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4242, - "end": 4243, - "loc": { - "start": { - "line": 51, - "column": 22 - }, - "end": { - "line": 51, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4244, - "end": 4245, - "loc": { - "start": { - "line": 51, - "column": 24 - }, - "end": { - "line": 51, - "column": 25 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 4246, - "end": 4247, - "loc": { - "start": { - "line": 51, - "column": 26 - }, - "end": { - "line": 51, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 4248, - "end": 4249, - "loc": { - "start": { - "line": 51, - "column": 28 - }, - "end": { - "line": 51, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4249, - "end": 4250, - "loc": { - "start": { - "line": 51, - "column": 29 - }, - "end": { - "line": 51, - "column": 30 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 4251, - "end": 4253, - "loc": { - "start": { - "line": 51, - "column": 31 - }, - "end": { - "line": 51, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4253, - "end": 4254, - "loc": { - "start": { - "line": 51, - "column": 33 - }, - "end": { - "line": 51, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4254, - "end": 4255, - "loc": { - "start": { - "line": 51, - "column": 34 - }, - "end": { - "line": 51, - "column": 35 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4256, - "end": 4258, - "loc": { - "start": { - "line": 51, - "column": 36 - }, - "end": { - "line": 51, - "column": 38 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4259, - "end": 4260, - "loc": { - "start": { - "line": 51, - "column": 39 - }, - "end": { - "line": 51, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4260, - "end": 4261, - "loc": { - "start": { - "line": 51, - "column": 40 - }, - "end": { - "line": 51, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4262, - "end": 4263, - "loc": { - "start": { - "line": 51, - "column": 42 - }, - "end": { - "line": 51, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 4264, - "end": 4265, - "loc": { - "start": { - "line": 51, - "column": 44 - }, - "end": { - "line": 51, - "column": 45 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4265, - "end": 4266, - "loc": { - "start": { - "line": 51, - "column": 45 - }, - "end": { - "line": 51, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4266, - "end": 4267, - "loc": { - "start": { - "line": 51, - "column": 46 - }, - "end": { - "line": 51, - "column": 47 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4267, - "end": 4268, - "loc": { - "start": { - "line": 51, - "column": 47 - }, - "end": { - "line": 51, - "column": 48 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4268, - "end": 4269, - "loc": { - "start": { - "line": 51, - "column": 48 - }, - "end": { - "line": 51, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4270, - "end": 4271, - "loc": { - "start": { - "line": 51, - "column": 50 - }, - "end": { - "line": 51, - "column": 51 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4272, - "end": 4273, - "loc": { - "start": { - "line": 51, - "column": 52 - }, - "end": { - "line": 51, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4274, - "end": 4275, - "loc": { - "start": { - "line": 51, - "column": 54 - }, - "end": { - "line": 51, - "column": 55 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4275, - "end": 4276, - "loc": { - "start": { - "line": 51, - "column": 55 - }, - "end": { - "line": 51, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 4276, - "end": 4281, - "loc": { - "start": { - "line": 51, - "column": 56 - }, - "end": { - "line": 51, - "column": 61 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4281, - "end": 4282, - "loc": { - "start": { - "line": 51, - "column": 61 - }, - "end": { - "line": 51, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4282, - "end": 4283, - "loc": { - "start": { - "line": 51, - "column": 62 - }, - "end": { - "line": 51, - "column": 63 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4283, - "end": 4284, - "loc": { - "start": { - "line": 51, - "column": 63 - }, - "end": { - "line": 51, - "column": 64 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4284, - "end": 4285, - "loc": { - "start": { - "line": 51, - "column": 64 - }, - "end": { - "line": 51, - "column": 65 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4285, - "end": 4286, - "loc": { - "start": { - "line": 51, - "column": 65 - }, - "end": { - "line": 51, - "column": 66 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4286, - "end": 4287, - "loc": { - "start": { - "line": 51, - "column": 66 - }, - "end": { - "line": 51, - "column": 67 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4287, - "end": 4288, - "loc": { - "start": { - "line": 51, - "column": 67 - }, - "end": { - "line": 51, - "column": 68 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4289, - "end": 4290, - "loc": { - "start": { - "line": 51, - "column": 69 - }, - "end": { - "line": 51, - "column": 70 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4305, - "end": 4306, - "loc": { - "start": { - "line": 52, - "column": 14 - }, - "end": { - "line": 52, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4307, - "end": 4308, - "loc": { - "start": { - "line": 52, - "column": 16 - }, - "end": { - "line": 52, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4309, - "end": 4310, - "loc": { - "start": { - "line": 52, - "column": 18 - }, - "end": { - "line": 52, - "column": 19 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4310, - "end": 4311, - "loc": { - "start": { - "line": 52, - "column": 19 - }, - "end": { - "line": 52, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4311, - "end": 4312, - "loc": { - "start": { - "line": 52, - "column": 20 - }, - "end": { - "line": 52, - "column": 21 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4312, - "end": 4313, - "loc": { - "start": { - "line": 52, - "column": 21 - }, - "end": { - "line": 52, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4313, - "end": 4314, - "loc": { - "start": { - "line": 52, - "column": 22 - }, - "end": { - "line": 52, - "column": 23 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 4314, - "end": 4319, - "loc": { - "start": { - "line": 52, - "column": 23 - }, - "end": { - "line": 52, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4319, - "end": 4320, - "loc": { - "start": { - "line": 52, - "column": 28 - }, - "end": { - "line": 52, - "column": 29 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4333, - "end": 4334, - "loc": { - "start": { - "line": 53, - "column": 12 - }, - "end": { - "line": 53, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4334, - "end": 4335, - "loc": { - "start": { - "line": 53, - "column": 13 - }, - "end": { - "line": 53, - "column": 14 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 4336, - "end": 4338, - "loc": { - "start": { - "line": 53, - "column": 15 - }, - "end": { - "line": 53, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4339, - "end": 4340, - "loc": { - "start": { - "line": 53, - "column": 18 - }, - "end": { - "line": 53, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4340, - "end": 4341, - "loc": { - "start": { - "line": 53, - "column": 19 - }, - "end": { - "line": 53, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4342, - "end": 4343, - "loc": { - "start": { - "line": 53, - "column": 21 - }, - "end": { - "line": 53, - "column": 22 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 4344, - "end": 4349, - "loc": { - "start": { - "line": 53, - "column": 23 - }, - "end": { - "line": 53, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4349, - "end": 4350, - "loc": { - "start": { - "line": 53, - "column": 28 - }, - "end": { - "line": 53, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4350, - "end": 4351, - "loc": { - "start": { - "line": 53, - "column": 29 - }, - "end": { - "line": 53, - "column": 30 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4362, - "end": 4363, - "loc": { - "start": { - "line": 54, - "column": 10 - }, - "end": { - "line": 54, - "column": 11 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4363, - "end": 4365, - "loc": { - "start": { - "line": 54, - "column": 11 - }, - "end": { - "line": 54, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4366, - "end": 4367, - "loc": { - "start": { - "line": 54, - "column": 14 - }, - "end": { - "line": 54, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4367, - "end": 4368, - "loc": { - "start": { - "line": 54, - "column": 15 - }, - "end": { - "line": 54, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4368, - "end": 4369, - "loc": { - "start": { - "line": 54, - "column": 16 - }, - "end": { - "line": 54, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4370, - "end": 4371, - "loc": { - "start": { - "line": 54, - "column": 18 - }, - "end": { - "line": 54, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4372, - "end": 4373, - "loc": { - "start": { - "line": 54, - "column": 20 - }, - "end": { - "line": 54, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4373, - "end": 4374, - "loc": { - "start": { - "line": 54, - "column": 21 - }, - "end": { - "line": 54, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4374, - "end": 4380, - "loc": { - "start": { - "line": 54, - "column": 22 - }, - "end": { - "line": 54, - "column": 28 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 4381, - "end": 4383, - "loc": { - "start": { - "line": 54, - "column": 29 - }, - "end": { - "line": 54, - "column": 31 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 5, - "start": 4384, - "end": 4385, - "loc": { - "start": { - "line": 54, - "column": 32 - }, - "end": { - "line": 54, - "column": 33 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 4386, - "end": 4388, - "loc": { - "start": { - "line": 54, - "column": 34 - }, - "end": { - "line": 54, - "column": 36 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-", - "start": 4389, - "end": 4396, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 44 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 4397, - "end": 4400, - "loc": { - "start": { - "line": 54, - "column": 45 - }, - "end": { - "line": 54, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4401, - "end": 4402, - "loc": { - "start": { - "line": 54, - "column": 49 - }, - "end": { - "line": 54, - "column": 50 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4402, - "end": 4403, - "loc": { - "start": { - "line": 54, - "column": 50 - }, - "end": { - "line": 54, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 4403, - "end": 4412, - "loc": { - "start": { - "line": 54, - "column": 51 - }, - "end": { - "line": 54, - "column": 60 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4412, - "end": 4413, - "loc": { - "start": { - "line": 54, - "column": 60 - }, - "end": { - "line": 54, - "column": 61 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4413, - "end": 4414, - "loc": { - "start": { - "line": 54, - "column": 61 - }, - "end": { - "line": 54, - "column": 62 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4414, - "end": 4415, - "loc": { - "start": { - "line": 54, - "column": 62 - }, - "end": { - "line": 54, - "column": 63 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 5, - "start": 4416, - "end": 4417, - "loc": { - "start": { - "line": 54, - "column": 64 - }, - "end": { - "line": 54, - "column": 65 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4417, - "end": 4418, - "loc": { - "start": { - "line": 54, - "column": 65 - }, - "end": { - "line": 54, - "column": 66 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4418, - "end": 4419, - "loc": { - "start": { - "line": 54, - "column": 66 - }, - "end": { - "line": 54, - "column": 67 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 4420, - "end": 4422, - "loc": { - "start": { - "line": 54, - "column": 68 - }, - "end": { - "line": 54, - "column": 70 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 4423, - "end": 4424, - "loc": { - "start": { - "line": 54, - "column": 71 - }, - "end": { - "line": 54, - "column": 72 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4424, - "end": 4425, - "loc": { - "start": { - "line": 54, - "column": 72 - }, - "end": { - "line": 54, - "column": 73 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4425, - "end": 4426, - "loc": { - "start": { - "line": 54, - "column": 73 - }, - "end": { - "line": 54, - "column": 74 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 4427, - "end": 4429, - "loc": { - "start": { - "line": 54, - "column": 75 - }, - "end": { - "line": 54, - "column": 77 - } - } - }, - { - "type": { - "label": "typeof", - "keyword": "typeof", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "typeof", - "start": 4430, - "end": 4436, - "loc": { - "start": { - "line": 54, - "column": 78 - }, - "end": { - "line": 54, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4437, - "end": 4438, - "loc": { - "start": { - "line": 54, - "column": 85 - }, - "end": { - "line": 54, - "column": 86 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4438, - "end": 4439, - "loc": { - "start": { - "line": 54, - "column": 86 - }, - "end": { - "line": 54, - "column": 87 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4439, - "end": 4440, - "loc": { - "start": { - "line": 54, - "column": 87 - }, - "end": { - "line": 54, - "column": 88 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4440, - "end": 4441, - "loc": { - "start": { - "line": 54, - "column": 88 - }, - "end": { - "line": 54, - "column": 89 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 4442, - "end": 4445, - "loc": { - "start": { - "line": 54, - "column": 90 - }, - "end": { - "line": 54, - "column": 93 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "string", - "start": 4446, - "end": 4454, - "loc": { - "start": { - "line": 54, - "column": 94 - }, - "end": { - "line": 54, - "column": 102 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4454, - "end": 4455, - "loc": { - "start": { - "line": 54, - "column": 102 - }, - "end": { - "line": 54, - "column": 103 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4455, - "end": 4456, - "loc": { - "start": { - "line": 54, - "column": 103 - }, - "end": { - "line": 54, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4457, - "end": 4458, - "loc": { - "start": { - "line": 54, - "column": 105 - }, - "end": { - "line": 54, - "column": 106 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4459, - "end": 4460, - "loc": { - "start": { - "line": 54, - "column": 107 - }, - "end": { - "line": 54, - "column": 108 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 4461, - "end": 4462, - "loc": { - "start": { - "line": 54, - "column": 109 - }, - "end": { - "line": 54, - "column": 110 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4462, - "end": 4463, - "loc": { - "start": { - "line": 54, - "column": 110 - }, - "end": { - "line": 54, - "column": 111 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4463, - "end": 4464, - "loc": { - "start": { - "line": 54, - "column": 111 - }, - "end": { - "line": 54, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4465, - "end": 4466, - "loc": { - "start": { - "line": 54, - "column": 113 - }, - "end": { - "line": 54, - "column": 114 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4467, - "end": 4468, - "loc": { - "start": { - "line": 54, - "column": 115 - }, - "end": { - "line": 54, - "column": 116 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "src", - "start": 4469, - "end": 4474, - "loc": { - "start": { - "line": 54, - "column": 117 - }, - "end": { - "line": 54, - "column": 122 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4474, - "end": 4475, - "loc": { - "start": { - "line": 54, - "column": 122 - }, - "end": { - "line": 54, - "column": 123 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4475, - "end": 4476, - "loc": { - "start": { - "line": 54, - "column": 123 - }, - "end": { - "line": 54, - "column": 124 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 4477, - "end": 4479, - "loc": { - "start": { - "line": 54, - "column": 125 - }, - "end": { - "line": 54, - "column": 127 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4480, - "end": 4481, - "loc": { - "start": { - "line": 54, - "column": 128 - }, - "end": { - "line": 54, - "column": 129 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 4481, - "end": 4482, - "loc": { - "start": { - "line": 54, - "column": 129 - }, - "end": { - "line": 54, - "column": 130 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4482, - "end": 4483, - "loc": { - "start": { - "line": 54, - "column": 130 - }, - "end": { - "line": 54, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4483, - "end": 4484, - "loc": { - "start": { - "line": 54, - "column": 131 - }, - "end": { - "line": 54, - "column": 132 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4484, - "end": 4485, - "loc": { - "start": { - "line": 54, - "column": 132 - }, - "end": { - "line": 54, - "column": 133 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4486, - "end": 4487, - "loc": { - "start": { - "line": 54, - "column": 134 - }, - "end": { - "line": 54, - "column": 135 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4488, - "end": 4489, - "loc": { - "start": { - "line": 54, - "column": 136 - }, - "end": { - "line": 54, - "column": 137 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4489, - "end": 4490, - "loc": { - "start": { - "line": 54, - "column": 137 - }, - "end": { - "line": 54, - "column": 138 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4490, - "end": 4491, - "loc": { - "start": { - "line": 54, - "column": 138 - }, - "end": { - "line": 54, - "column": 139 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4500, - "end": 4501, - "loc": { - "start": { - "line": 55, - "column": 8 - }, - "end": { - "line": 55, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4501, - "end": 4502, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4503, - "end": 4504, - "loc": { - "start": { - "line": 55, - "column": 11 - }, - "end": { - "line": 55, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4505, - "end": 4506, - "loc": { - "start": { - "line": 55, - "column": 13 - }, - "end": { - "line": 55, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4506, - "end": 4507, - "loc": { - "start": { - "line": 55, - "column": 14 - }, - "end": { - "line": 55, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4507, - "end": 4508, - "loc": { - "start": { - "line": 55, - "column": 15 - }, - "end": { - "line": 55, - "column": 16 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 4509, - "end": 4511, - "loc": { - "start": { - "line": 55, - "column": 17 - }, - "end": { - "line": 55, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4512, - "end": 4513, - "loc": { - "start": { - "line": 55, - "column": 20 - }, - "end": { - "line": 55, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4513, - "end": 4514, - "loc": { - "start": { - "line": 55, - "column": 21 - }, - "end": { - "line": 55, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4514, - "end": 4520, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4520, - "end": 4521, - "loc": { - "start": { - "line": 55, - "column": 28 - }, - "end": { - "line": 55, - "column": 29 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4521, - "end": 4523, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 55, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4524, - "end": 4525, - "loc": { - "start": { - "line": 55, - "column": 32 - }, - "end": { - "line": 55, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4525, - "end": 4526, - "loc": { - "start": { - "line": 55, - "column": 33 - }, - "end": { - "line": 55, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4526, - "end": 4527, - "loc": { - "start": { - "line": 55, - "column": 34 - }, - "end": { - "line": 55, - "column": 35 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4528, - "end": 4529, - "loc": { - "start": { - "line": 55, - "column": 36 - }, - "end": { - "line": 55, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4540, - "end": 4541, - "loc": { - "start": { - "line": 56, - "column": 10 - }, - "end": { - "line": 56, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4542, - "end": 4543, - "loc": { - "start": { - "line": 56, - "column": 12 - }, - "end": { - "line": 56, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4544, - "end": 4545, - "loc": { - "start": { - "line": 56, - "column": 14 - }, - "end": { - "line": 56, - "column": 15 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4545, - "end": 4546, - "loc": { - "start": { - "line": 56, - "column": 15 - }, - "end": { - "line": 56, - "column": 16 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 4546, - "end": 4547, - "loc": { - "start": { - "line": 56, - "column": 16 - }, - "end": { - "line": 56, - "column": 17 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4547, - "end": 4548, - "loc": { - "start": { - "line": 56, - "column": 17 - }, - "end": { - "line": 56, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4548, - "end": 4549, - "loc": { - "start": { - "line": 56, - "column": 18 - }, - "end": { - "line": 56, - "column": 19 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4549, - "end": 4552, - "loc": { - "start": { - "line": 56, - "column": 19 - }, - "end": { - "line": 56, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 4553, - "end": 4554, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 24 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4555, - "end": 4556, - "loc": { - "start": { - "line": 56, - "column": 25 - }, - "end": { - "line": 56, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4557, - "end": 4558, - "loc": { - "start": { - "line": 56, - "column": 27 - }, - "end": { - "line": 56, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4558, - "end": 4559, - "loc": { - "start": { - "line": 56, - "column": 28 - }, - "end": { - "line": 56, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "indexOf", - "start": 4559, - "end": 4566, - "loc": { - "start": { - "line": 56, - "column": 29 - }, - "end": { - "line": 56, - "column": 36 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4566, - "end": 4567, - "loc": { - "start": { - "line": 56, - "column": 36 - }, - "end": { - "line": 56, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4567, - "end": 4568, - "loc": { - "start": { - "line": 56, - "column": 37 - }, - "end": { - "line": 56, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4568, - "end": 4569, - "loc": { - "start": { - "line": 56, - "column": 38 - }, - "end": { - "line": 56, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4569, - "end": 4570, - "loc": { - "start": { - "line": 56, - "column": 39 - }, - "end": { - "line": 56, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 4585, - "end": 4586, - "loc": { - "start": { - "line": 57, - "column": 14 - }, - "end": { - "line": 57, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4587, - "end": 4588, - "loc": { - "start": { - "line": 57, - "column": 16 - }, - "end": { - "line": 57, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 4589, - "end": 4590, - "loc": { - "start": { - "line": 57, - "column": 18 - }, - "end": { - "line": 57, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4591, - "end": 4592, - "loc": { - "start": { - "line": 57, - "column": 20 - }, - "end": { - "line": 57, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4593, - "end": 4594, - "loc": { - "start": { - "line": 57, - "column": 22 - }, - "end": { - "line": 57, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4594, - "end": 4595, - "loc": { - "start": { - "line": 57, - "column": 23 - }, - "end": { - "line": 57, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4595, - "end": 4601, - "loc": { - "start": { - "line": 57, - "column": 24 - }, - "end": { - "line": 57, - "column": 30 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4601, - "end": 4602, - "loc": { - "start": { - "line": 57, - "column": 30 - }, - "end": { - "line": 57, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4602, - "end": 4603, - "loc": { - "start": { - "line": 57, - "column": 31 - }, - "end": { - "line": 57, - "column": 32 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4603, - "end": 4604, - "loc": { - "start": { - "line": 57, - "column": 32 - }, - "end": { - "line": 57, - "column": 33 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 4604, - "end": 4605, - "loc": { - "start": { - "line": 57, - "column": 33 - }, - "end": { - "line": 57, - "column": 34 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4605, - "end": 4606, - "loc": { - "start": { - "line": 57, - "column": 34 - }, - "end": { - "line": 57, - "column": 35 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 4607, - "end": 4609, - "loc": { - "start": { - "line": 57, - "column": 36 - }, - "end": { - "line": 57, - "column": 38 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4610, - "end": 4611, - "loc": { - "start": { - "line": 57, - "column": 39 - }, - "end": { - "line": 57, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 4611, - "end": 4612, - "loc": { - "start": { - "line": 57, - "column": 40 - }, - "end": { - "line": 57, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4613, - "end": 4614, - "loc": { - "start": { - "line": 57, - "column": 42 - }, - "end": { - "line": 57, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4615, - "end": 4616, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 57, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4616, - "end": 4617, - "loc": { - "start": { - "line": 57, - "column": 45 - }, - "end": { - "line": 57, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4617, - "end": 4623, - "loc": { - "start": { - "line": 57, - "column": 46 - }, - "end": { - "line": 57, - "column": 52 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 4624, - "end": 4625, - "loc": { - "start": { - "line": 57, - "column": 53 - }, - "end": { - "line": 57, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 4626, - "end": 4627, - "loc": { - "start": { - "line": 57, - "column": 55 - }, - "end": { - "line": 57, - "column": 56 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4627, - "end": 4628, - "loc": { - "start": { - "line": 57, - "column": 56 - }, - "end": { - "line": 57, - "column": 57 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 4628, - "end": 4629, - "loc": { - "start": { - "line": 57, - "column": 57 - }, - "end": { - "line": 57, - "column": 58 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4629, - "end": 4630, - "loc": { - "start": { - "line": 57, - "column": 58 - }, - "end": { - "line": 57, - "column": 59 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4630, - "end": 4631, - "loc": { - "start": { - "line": 57, - "column": 59 - }, - "end": { - "line": 57, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4631, - "end": 4637, - "loc": { - "start": { - "line": 57, - "column": 60 - }, - "end": { - "line": 57, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4637, - "end": 4638, - "loc": { - "start": { - "line": 57, - "column": 66 - }, - "end": { - "line": 57, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 4639, - "end": 4640, - "loc": { - "start": { - "line": 57, - "column": 68 - }, - "end": { - "line": 57, - "column": 69 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4641, - "end": 4642, - "loc": { - "start": { - "line": 57, - "column": 70 - }, - "end": { - "line": 57, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 4643, - "end": 4644, - "loc": { - "start": { - "line": 57, - "column": 72 - }, - "end": { - "line": 57, - "column": 73 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 4645, - "end": 4646, - "loc": { - "start": { - "line": 57, - "column": 74 - }, - "end": { - "line": 57, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4647, - "end": 4648, - "loc": { - "start": { - "line": 57, - "column": 76 - }, - "end": { - "line": 57, - "column": 77 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4648, - "end": 4649, - "loc": { - "start": { - "line": 57, - "column": 77 - }, - "end": { - "line": 57, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4649, - "end": 4655, - "loc": { - "start": { - "line": 57, - "column": 78 - }, - "end": { - "line": 57, - "column": 84 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4655, - "end": 4656, - "loc": { - "start": { - "line": 57, - "column": 84 - }, - "end": { - "line": 57, - "column": 85 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4656, - "end": 4657, - "loc": { - "start": { - "line": 57, - "column": 85 - }, - "end": { - "line": 57, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4657, - "end": 4658, - "loc": { - "start": { - "line": 57, - "column": 86 - }, - "end": { - "line": 57, - "column": 87 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4659, - "end": 4660, - "loc": { - "start": { - "line": 57, - "column": 88 - }, - "end": { - "line": 57, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4661, - "end": 4662, - "loc": { - "start": { - "line": 57, - "column": 90 - }, - "end": { - "line": 57, - "column": 91 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4662, - "end": 4663, - "loc": { - "start": { - "line": 57, - "column": 91 - }, - "end": { - "line": 57, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 4663, - "end": 4672, - "loc": { - "start": { - "line": 57, - "column": 92 - }, - "end": { - "line": 57, - "column": 101 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4672, - "end": 4673, - "loc": { - "start": { - "line": 57, - "column": 101 - }, - "end": { - "line": 57, - "column": 102 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 5, - "start": 4673, - "end": 4674, - "loc": { - "start": { - "line": 57, - "column": 102 - }, - "end": { - "line": 57, - "column": 103 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4674, - "end": 4675, - "loc": { - "start": { - "line": 57, - "column": 103 - }, - "end": { - "line": 57, - "column": 104 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4675, - "end": 4676, - "loc": { - "start": { - "line": 57, - "column": 104 - }, - "end": { - "line": 57, - "column": 105 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "B", - "start": 4676, - "end": 4677, - "loc": { - "start": { - "line": 57, - "column": 105 - }, - "end": { - "line": 57, - "column": 106 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4677, - "end": 4678, - "loc": { - "start": { - "line": 57, - "column": 106 - }, - "end": { - "line": 57, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 4678, - "end": 4679, - "loc": { - "start": { - "line": 57, - "column": 107 - }, - "end": { - "line": 57, - "column": 108 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4680, - "end": 4681, - "loc": { - "start": { - "line": 57, - "column": 109 - }, - "end": { - "line": 57, - "column": 110 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4682, - "end": 4683, - "loc": { - "start": { - "line": 57, - "column": 111 - }, - "end": { - "line": 57, - "column": 112 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4683, - "end": 4684, - "loc": { - "start": { - "line": 57, - "column": 112 - }, - "end": { - "line": 57, - "column": 113 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4685, - "end": 4686, - "loc": { - "start": { - "line": 57, - "column": 114 - }, - "end": { - "line": 57, - "column": 115 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4686, - "end": 4687, - "loc": { - "start": { - "line": 57, - "column": 115 - }, - "end": { - "line": 57, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 4687, - "end": 4696, - "loc": { - "start": { - "line": 57, - "column": 116 - }, - "end": { - "line": 57, - "column": 125 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4696, - "end": 4697, - "loc": { - "start": { - "line": 57, - "column": 125 - }, - "end": { - "line": 57, - "column": 126 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4697, - "end": 4698, - "loc": { - "start": { - "line": 57, - "column": 126 - }, - "end": { - "line": 57, - "column": 127 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4698, - "end": 4699, - "loc": { - "start": { - "line": 57, - "column": 127 - }, - "end": { - "line": 57, - "column": 128 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 4700, - "end": 4701, - "loc": { - "start": { - "line": 57, - "column": 129 - }, - "end": { - "line": 57, - "column": 130 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4701, - "end": 4702, - "loc": { - "start": { - "line": 57, - "column": 130 - }, - "end": { - "line": 57, - "column": 131 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4702, - "end": 4703, - "loc": { - "start": { - "line": 57, - "column": 131 - }, - "end": { - "line": 57, - "column": 132 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4704, - "end": 4705, - "loc": { - "start": { - "line": 57, - "column": 133 - }, - "end": { - "line": 57, - "column": 134 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4705, - "end": 4706, - "loc": { - "start": { - "line": 57, - "column": 134 - }, - "end": { - "line": 57, - "column": 135 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4707, - "end": 4708, - "loc": { - "start": { - "line": 57, - "column": 136 - }, - "end": { - "line": 57, - "column": 137 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4708, - "end": 4709, - "loc": { - "start": { - "line": 57, - "column": 137 - }, - "end": { - "line": 57, - "column": 138 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4709, - "end": 4710, - "loc": { - "start": { - "line": 57, - "column": 138 - }, - "end": { - "line": 57, - "column": 139 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "B", - "start": 4710, - "end": 4711, - "loc": { - "start": { - "line": 57, - "column": 139 - }, - "end": { - "line": 57, - "column": 140 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4711, - "end": 4712, - "loc": { - "start": { - "line": 57, - "column": 140 - }, - "end": { - "line": 57, - "column": 141 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 4712, - "end": 4713, - "loc": { - "start": { - "line": 57, - "column": 141 - }, - "end": { - "line": 57, - "column": 142 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4714, - "end": 4715, - "loc": { - "start": { - "line": 57, - "column": 143 - }, - "end": { - "line": 57, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4716, - "end": 4717, - "loc": { - "start": { - "line": 57, - "column": 145 - }, - "end": { - "line": 57, - "column": 146 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4718, - "end": 4719, - "loc": { - "start": { - "line": 57, - "column": 147 - }, - "end": { - "line": 57, - "column": 148 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 4720, - "end": 4721, - "loc": { - "start": { - "line": 57, - "column": 149 - }, - "end": { - "line": 57, - "column": 150 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4721, - "end": 4722, - "loc": { - "start": { - "line": 57, - "column": 150 - }, - "end": { - "line": 57, - "column": 151 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4723, - "end": 4724, - "loc": { - "start": { - "line": 57, - "column": 152 - }, - "end": { - "line": 57, - "column": 153 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4724, - "end": 4725, - "loc": { - "start": { - "line": 57, - "column": 153 - }, - "end": { - "line": 57, - "column": 154 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "C", - "start": 4726, - "end": 4727, - "loc": { - "start": { - "line": 57, - "column": 155 - }, - "end": { - "line": 57, - "column": 156 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4727, - "end": 4728, - "loc": { - "start": { - "line": 57, - "column": 156 - }, - "end": { - "line": 57, - "column": 157 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4728, - "end": 4729, - "loc": { - "start": { - "line": 57, - "column": 157 - }, - "end": { - "line": 57, - "column": 158 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4729, - "end": 4730, - "loc": { - "start": { - "line": 57, - "column": 158 - }, - "end": { - "line": 57, - "column": 159 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 4731, - "end": 4732, - "loc": { - "start": { - "line": 57, - "column": 160 - }, - "end": { - "line": 57, - "column": 161 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4732, - "end": 4733, - "loc": { - "start": { - "line": 57, - "column": 161 - }, - "end": { - "line": 57, - "column": 162 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4733, - "end": 4734, - "loc": { - "start": { - "line": 57, - "column": 162 - }, - "end": { - "line": 57, - "column": 163 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4735, - "end": 4736, - "loc": { - "start": { - "line": 57, - "column": 164 - }, - "end": { - "line": 57, - "column": 165 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4736, - "end": 4737, - "loc": { - "start": { - "line": 57, - "column": 165 - }, - "end": { - "line": 57, - "column": 166 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4737, - "end": 4738, - "loc": { - "start": { - "line": 57, - "column": 166 - }, - "end": { - "line": 57, - "column": 167 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "B", - "start": 4738, - "end": 4739, - "loc": { - "start": { - "line": 57, - "column": 167 - }, - "end": { - "line": 57, - "column": 168 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4739, - "end": 4740, - "loc": { - "start": { - "line": 57, - "column": 168 - }, - "end": { - "line": 57, - "column": 169 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 4740, - "end": 4741, - "loc": { - "start": { - "line": 57, - "column": 169 - }, - "end": { - "line": 57, - "column": 170 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4742, - "end": 4743, - "loc": { - "start": { - "line": 57, - "column": 171 - }, - "end": { - "line": 57, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4744, - "end": 4745, - "loc": { - "start": { - "line": 57, - "column": 173 - }, - "end": { - "line": 57, - "column": 174 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4746, - "end": 4747, - "loc": { - "start": { - "line": 57, - "column": 175 - }, - "end": { - "line": 57, - "column": 176 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 4748, - "end": 4749, - "loc": { - "start": { - "line": 57, - "column": 177 - }, - "end": { - "line": 57, - "column": 178 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4749, - "end": 4750, - "loc": { - "start": { - "line": 57, - "column": 178 - }, - "end": { - "line": 57, - "column": 179 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 4751, - "end": 4752, - "loc": { - "start": { - "line": 57, - "column": 180 - }, - "end": { - "line": 57, - "column": 181 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4752, - "end": 4753, - "loc": { - "start": { - "line": 57, - "column": 181 - }, - "end": { - "line": 57, - "column": 182 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 4753, - "end": 4762, - "loc": { - "start": { - "line": 57, - "column": 182 - }, - "end": { - "line": 57, - "column": 191 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4762, - "end": 4763, - "loc": { - "start": { - "line": 57, - "column": 191 - }, - "end": { - "line": 57, - "column": 192 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 4763, - "end": 4764, - "loc": { - "start": { - "line": 57, - "column": 192 - }, - "end": { - "line": 57, - "column": 193 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4764, - "end": 4765, - "loc": { - "start": { - "line": 57, - "column": 193 - }, - "end": { - "line": 57, - "column": 194 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4765, - "end": 4766, - "loc": { - "start": { - "line": 57, - "column": 194 - }, - "end": { - "line": 57, - "column": 195 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4767, - "end": 4768, - "loc": { - "start": { - "line": 57, - "column": 196 - }, - "end": { - "line": 57, - "column": 197 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4768, - "end": 4769, - "loc": { - "start": { - "line": 57, - "column": 197 - }, - "end": { - "line": 57, - "column": 198 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4770, - "end": 4771, - "loc": { - "start": { - "line": 57, - "column": 199 - }, - "end": { - "line": 57, - "column": 200 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4771, - "end": 4772, - "loc": { - "start": { - "line": 57, - "column": 200 - }, - "end": { - "line": 57, - "column": 201 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4772, - "end": 4773, - "loc": { - "start": { - "line": 57, - "column": 201 - }, - "end": { - "line": 57, - "column": 202 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4782, - "end": 4783, - "loc": { - "start": { - "line": 58, - "column": 8 - }, - "end": { - "line": 58, - "column": 9 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 4784, - "end": 4788, - "loc": { - "start": { - "line": 58, - "column": 10 - }, - "end": { - "line": 58, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4789, - "end": 4790, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4790, - "end": 4791, - "loc": { - "start": { - "line": 58, - "column": 16 - }, - "end": { - "line": 58, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 4791, - "end": 4795, - "loc": { - "start": { - "line": 58, - "column": 17 - }, - "end": { - "line": 58, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4795, - "end": 4796, - "loc": { - "start": { - "line": 58, - "column": 21 - }, - "end": { - "line": 58, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 4796, - "end": 4797, - "loc": { - "start": { - "line": 58, - "column": 22 - }, - "end": { - "line": 58, - "column": 23 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 4798, - "end": 4799, - "loc": { - "start": { - "line": 58, - "column": 24 - }, - "end": { - "line": 58, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 4800, - "end": 4801, - "loc": { - "start": { - "line": 58, - "column": 26 - }, - "end": { - "line": 58, - "column": 27 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4801, - "end": 4802, - "loc": { - "start": { - "line": 58, - "column": 27 - }, - "end": { - "line": 58, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 4803, - "end": 4804, - "loc": { - "start": { - "line": 58, - "column": 29 - }, - "end": { - "line": 58, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4804, - "end": 4805, - "loc": { - "start": { - "line": 58, - "column": 30 - }, - "end": { - "line": 58, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4805, - "end": 4806, - "loc": { - "start": { - "line": 58, - "column": 31 - }, - "end": { - "line": 58, - "column": 32 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4813, - "end": 4814, - "loc": { - "start": { - "line": 59, - "column": 6 - }, - "end": { - "line": 59, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 4814, - "end": 4815, - "loc": { - "start": { - "line": 59, - "column": 7 - }, - "end": { - "line": 59, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4815, - "end": 4816, - "loc": { - "start": { - "line": 59, - "column": 8 - }, - "end": { - "line": 59, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4816, - "end": 4817, - "loc": { - "start": { - "line": 59, - "column": 9 - }, - "end": { - "line": 59, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4818, - "end": 4819, - "loc": { - "start": { - "line": 59, - "column": 11 - }, - "end": { - "line": 59, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4820, - "end": 4821, - "loc": { - "start": { - "line": 59, - "column": 13 - }, - "end": { - "line": 59, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4821, - "end": 4822, - "loc": { - "start": { - "line": 59, - "column": 14 - }, - "end": { - "line": 59, - "column": 15 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4827, - "end": 4828, - "loc": { - "start": { - "line": 60, - "column": 4 - }, - "end": { - "line": 60, - "column": 5 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4828, - "end": 4831, - "loc": { - "start": { - "line": 60, - "column": 5 - }, - "end": { - "line": 60, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 4832, - "end": 4833, - "loc": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4834, - "end": 4835, - "loc": { - "start": { - "line": 60, - "column": 11 - }, - "end": { - "line": 60, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4836, - "end": 4837, - "loc": { - "start": { - "line": 60, - "column": 13 - }, - "end": { - "line": 60, - "column": 14 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4837, - "end": 4838, - "loc": { - "start": { - "line": 60, - "column": 14 - }, - "end": { - "line": 60, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4838, - "end": 4839, - "loc": { - "start": { - "line": 60, - "column": 15 - }, - "end": { - "line": 60, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 4848, - "end": 4849, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 9 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4849, - "end": 4850, - "loc": { - "start": { - "line": 61, - "column": 9 - }, - "end": { - "line": 61, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4850, - "end": 4851, - "loc": { - "start": { - "line": 61, - "column": 10 - }, - "end": { - "line": 61, - "column": 11 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 4851, - "end": 4859, - "loc": { - "start": { - "line": 61, - "column": 11 - }, - "end": { - "line": 61, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4860, - "end": 4861, - "loc": { - "start": { - "line": 61, - "column": 20 - }, - "end": { - "line": 61, - "column": 21 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4861, - "end": 4862, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 22 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4863, - "end": 4864, - "loc": { - "start": { - "line": 61, - "column": 23 - }, - "end": { - "line": 61, - "column": 24 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 4871, - "end": 4874, - "loc": { - "start": { - "line": 62, - "column": 6 - }, - "end": { - "line": 62, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4875, - "end": 4876, - "loc": { - "start": { - "line": 62, - "column": 10 - }, - "end": { - "line": 62, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4876, - "end": 4879, - "loc": { - "start": { - "line": 62, - "column": 11 - }, - "end": { - "line": 62, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4880, - "end": 4881, - "loc": { - "start": { - "line": 62, - "column": 15 - }, - "end": { - "line": 62, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4882, - "end": 4883, - "loc": { - "start": { - "line": 62, - "column": 17 - }, - "end": { - "line": 62, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 4884, - "end": 4885, - "loc": { - "start": { - "line": 62, - "column": 19 - }, - "end": { - "line": 62, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4885, - "end": 4886, - "loc": { - "start": { - "line": 62, - "column": 20 - }, - "end": { - "line": 62, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "concat", - "start": 4886, - "end": 4892, - "loc": { - "start": { - "line": 62, - "column": 21 - }, - "end": { - "line": 62, - "column": 27 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4892, - "end": 4893, - "loc": { - "start": { - "line": 62, - "column": 27 - }, - "end": { - "line": 62, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 4893, - "end": 4894, - "loc": { - "start": { - "line": 62, - "column": 28 - }, - "end": { - "line": 62, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4894, - "end": 4895, - "loc": { - "start": { - "line": 62, - "column": 29 - }, - "end": { - "line": 62, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4895, - "end": 4896, - "loc": { - "start": { - "line": 62, - "column": 30 - }, - "end": { - "line": 62, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 4897, - "end": 4898, - "loc": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 33 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4899, - "end": 4900, - "loc": { - "start": { - "line": 62, - "column": 34 - }, - "end": { - "line": 62, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4901, - "end": 4902, - "loc": { - "start": { - "line": 62, - "column": 36 - }, - "end": { - "line": 62, - "column": 37 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4902, - "end": 4903, - "loc": { - "start": { - "line": 62, - "column": 37 - }, - "end": { - "line": 62, - "column": 38 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4903, - "end": 4904, - "loc": { - "start": { - "line": 62, - "column": 38 - }, - "end": { - "line": 62, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 4905, - "end": 4906, - "loc": { - "start": { - "line": 62, - "column": 40 - }, - "end": { - "line": 62, - "column": 41 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4907, - "end": 4908, - "loc": { - "start": { - "line": 62, - "column": 42 - }, - "end": { - "line": 62, - "column": 43 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4909, - "end": 4910, - "loc": { - "start": { - "line": 62, - "column": 44 - }, - "end": { - "line": 62, - "column": 45 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4910, - "end": 4911, - "loc": { - "start": { - "line": 62, - "column": 45 - }, - "end": { - "line": 62, - "column": 46 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4911, - "end": 4912, - "loc": { - "start": { - "line": 62, - "column": 46 - }, - "end": { - "line": 62, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4913, - "end": 4914, - "loc": { - "start": { - "line": 62, - "column": 48 - }, - "end": { - "line": 62, - "column": 49 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4915, - "end": 4916, - "loc": { - "start": { - "line": 62, - "column": 50 - }, - "end": { - "line": 62, - "column": 51 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 4917, - "end": 4918, - "loc": { - "start": { - "line": 62, - "column": 52 - }, - "end": { - "line": 62, - "column": 53 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4918, - "end": 4919, - "loc": { - "start": { - "line": 62, - "column": 53 - }, - "end": { - "line": 62, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 4920, - "end": 4921, - "loc": { - "start": { - "line": 62, - "column": 55 - }, - "end": { - "line": 62, - "column": 56 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4922, - "end": 4923, - "loc": { - "start": { - "line": 62, - "column": 57 - }, - "end": { - "line": 62, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4924, - "end": 4925, - "loc": { - "start": { - "line": 62, - "column": 59 - }, - "end": { - "line": 62, - "column": 60 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4925, - "end": 4926, - "loc": { - "start": { - "line": 62, - "column": 60 - }, - "end": { - "line": 62, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 4926, - "end": 4932, - "loc": { - "start": { - "line": 62, - "column": 61 - }, - "end": { - "line": 62, - "column": 67 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4932, - "end": 4933, - "loc": { - "start": { - "line": 62, - "column": 67 - }, - "end": { - "line": 62, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4934, - "end": 4935, - "loc": { - "start": { - "line": 62, - "column": 69 - }, - "end": { - "line": 62, - "column": 70 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 4936, - "end": 4937, - "loc": { - "start": { - "line": 62, - "column": 71 - }, - "end": { - "line": 62, - "column": 72 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 4938, - "end": 4939, - "loc": { - "start": { - "line": 62, - "column": 73 - }, - "end": { - "line": 62, - "column": 74 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4939, - "end": 4940, - "loc": { - "start": { - "line": 62, - "column": 74 - }, - "end": { - "line": 62, - "column": 75 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 4941, - "end": 4943, - "loc": { - "start": { - "line": 62, - "column": 76 - }, - "end": { - "line": 62, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4943, - "end": 4944, - "loc": { - "start": { - "line": 62, - "column": 78 - }, - "end": { - "line": 62, - "column": 79 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4944, - "end": 4945, - "loc": { - "start": { - "line": 62, - "column": 79 - }, - "end": { - "line": 62, - "column": 80 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4946, - "end": 4947, - "loc": { - "start": { - "line": 62, - "column": 81 - }, - "end": { - "line": 62, - "column": 82 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 4956, - "end": 4959, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 4960, - "end": 4961, - "loc": { - "start": { - "line": 63, - "column": 12 - }, - "end": { - "line": 63, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4962, - "end": 4963, - "loc": { - "start": { - "line": 63, - "column": 14 - }, - "end": { - "line": 63, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 4964, - "end": 4965, - "loc": { - "start": { - "line": 63, - "column": 16 - }, - "end": { - "line": 63, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4965, - "end": 4966, - "loc": { - "start": { - "line": 63, - "column": 17 - }, - "end": { - "line": 63, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 4966, - "end": 4967, - "loc": { - "start": { - "line": 63, - "column": 18 - }, - "end": { - "line": 63, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4967, - "end": 4968, - "loc": { - "start": { - "line": 63, - "column": 19 - }, - "end": { - "line": 63, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4968, - "end": 4969, - "loc": { - "start": { - "line": 63, - "column": 20 - }, - "end": { - "line": 63, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 4982, - "end": 4983, - "loc": { - "start": { - "line": 64, - "column": 12 - }, - "end": { - "line": 64, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 4984, - "end": 4985, - "loc": { - "start": { - "line": 64, - "column": 14 - }, - "end": { - "line": 64, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 4986, - "end": 4987, - "loc": { - "start": { - "line": 64, - "column": 16 - }, - "end": { - "line": 64, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4987, - "end": 4988, - "loc": { - "start": { - "line": 64, - "column": 17 - }, - "end": { - "line": 64, - "column": 18 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 4988, - "end": 4989, - "loc": { - "start": { - "line": 64, - "column": 18 - }, - "end": { - "line": 64, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4989, - "end": 4990, - "loc": { - "start": { - "line": 64, - "column": 19 - }, - "end": { - "line": 64, - "column": 20 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4990, - "end": 4991, - "loc": { - "start": { - "line": 64, - "column": 20 - }, - "end": { - "line": 64, - "column": 21 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 4991, - "end": 4993, - "loc": { - "start": { - "line": 64, - "column": 21 - }, - "end": { - "line": 64, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4994, - "end": 4995, - "loc": { - "start": { - "line": 64, - "column": 24 - }, - "end": { - "line": 64, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 4995, - "end": 4996, - "loc": { - "start": { - "line": 64, - "column": 25 - }, - "end": { - "line": 64, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4996, - "end": 4997, - "loc": { - "start": { - "line": 64, - "column": 26 - }, - "end": { - "line": 64, - "column": 27 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 4998, - "end": 5001, - "loc": { - "start": { - "line": 64, - "column": 28 - }, - "end": { - "line": 64, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5002, - "end": 5003, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 33 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 5003, - "end": 5006, - "loc": { - "start": { - "line": 64, - "column": 33 - }, - "end": { - "line": 64, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 5007, - "end": 5008, - "loc": { - "start": { - "line": 64, - "column": 37 - }, - "end": { - "line": 64, - "column": 38 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5009, - "end": 5010, - "loc": { - "start": { - "line": 64, - "column": 39 - }, - "end": { - "line": 64, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 5011, - "end": 5012, - "loc": { - "start": { - "line": 64, - "column": 41 - }, - "end": { - "line": 64, - "column": 42 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5012, - "end": 5013, - "loc": { - "start": { - "line": 64, - "column": 42 - }, - "end": { - "line": 64, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 5013, - "end": 5019, - "loc": { - "start": { - "line": 64, - "column": 43 - }, - "end": { - "line": 64, - "column": 49 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5019, - "end": 5020, - "loc": { - "start": { - "line": 64, - "column": 49 - }, - "end": { - "line": 64, - "column": 50 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "--", - "start": 5021, - "end": 5023, - "loc": { - "start": { - "line": 64, - "column": 51 - }, - "end": { - "line": 64, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 5023, - "end": 5024, - "loc": { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 5025, - "end": 5027, - "loc": { - "start": { - "line": 64, - "column": 55 - }, - "end": { - "line": 64, - "column": 57 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 5028, - "end": 5029, - "loc": { - "start": { - "line": 64, - "column": 58 - }, - "end": { - "line": 64, - "column": 59 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5029, - "end": 5030, - "loc": { - "start": { - "line": 64, - "column": 59 - }, - "end": { - "line": 64, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5030, - "end": 5031, - "loc": { - "start": { - "line": 64, - "column": 60 - }, - "end": { - "line": 64, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 5032, - "end": 5033, - "loc": { - "start": { - "line": 64, - "column": 62 - }, - "end": { - "line": 64, - "column": 63 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5033, - "end": 5034, - "loc": { - "start": { - "line": 64, - "column": 63 - }, - "end": { - "line": 64, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 5034, - "end": 5035, - "loc": { - "start": { - "line": 64, - "column": 64 - }, - "end": { - "line": 64, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5035, - "end": 5036, - "loc": { - "start": { - "line": 64, - "column": 65 - }, - "end": { - "line": 64, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "charAt", - "start": 5036, - "end": 5042, - "loc": { - "start": { - "line": 64, - "column": 66 - }, - "end": { - "line": 64, - "column": 72 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5042, - "end": 5043, - "loc": { - "start": { - "line": 64, - "column": 72 - }, - "end": { - "line": 64, - "column": 73 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 5043, - "end": 5044, - "loc": { - "start": { - "line": 64, - "column": 73 - }, - "end": { - "line": 64, - "column": 74 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5044, - "end": 5045, - "loc": { - "start": { - "line": 64, - "column": 74 - }, - "end": { - "line": 64, - "column": 75 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5045, - "end": 5046, - "loc": { - "start": { - "line": 64, - "column": 75 - }, - "end": { - "line": 64, - "column": 76 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5047, - "end": 5048, - "loc": { - "start": { - "line": 64, - "column": 77 - }, - "end": { - "line": 64, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 5049, - "end": 5050, - "loc": { - "start": { - "line": 64, - "column": 79 - }, - "end": { - "line": 64, - "column": 80 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5050, - "end": 5051, - "loc": { - "start": { - "line": 64, - "column": 80 - }, - "end": { - "line": 64, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 5051, - "end": 5052, - "loc": { - "start": { - "line": 64, - "column": 81 - }, - "end": { - "line": 64, - "column": 82 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5053, - "end": 5054, - "loc": { - "start": { - "line": 64, - "column": 83 - }, - "end": { - "line": 64, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 5055, - "end": 5056, - "loc": { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 64, - "column": 86 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5056, - "end": 5057, - "loc": { - "start": { - "line": 64, - "column": 86 - }, - "end": { - "line": 64, - "column": 87 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 5057, - "end": 5058, - "loc": { - "start": { - "line": 64, - "column": 87 - }, - "end": { - "line": 64, - "column": 88 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5058, - "end": 5059, - "loc": { - "start": { - "line": 64, - "column": 88 - }, - "end": { - "line": 64, - "column": 89 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5059, - "end": 5060, - "loc": { - "start": { - "line": 64, - "column": 89 - }, - "end": { - "line": 64, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 5060, - "end": 5061, - "loc": { - "start": { - "line": 64, - "column": 90 - }, - "end": { - "line": 64, - "column": 91 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5062, - "end": 5063, - "loc": { - "start": { - "line": 64, - "column": 92 - }, - "end": { - "line": 64, - "column": 93 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 5064, - "end": 5066, - "loc": { - "start": { - "line": 64, - "column": 94 - }, - "end": { - "line": 64, - "column": 96 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 5067, - "end": 5068, - "loc": { - "start": { - "line": 64, - "column": 97 - }, - "end": { - "line": 64, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 5069, - "end": 5070, - "loc": { - "start": { - "line": 64, - "column": 99 - }, - "end": { - "line": 64, - "column": 100 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5070, - "end": 5071, - "loc": { - "start": { - "line": 64, - "column": 100 - }, - "end": { - "line": 64, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 5071, - "end": 5072, - "loc": { - "start": { - "line": 64, - "column": 101 - }, - "end": { - "line": 64, - "column": 102 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5072, - "end": 5073, - "loc": { - "start": { - "line": 64, - "column": 102 - }, - "end": { - "line": 64, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hasOwnProperty", - "start": 5073, - "end": 5087, - "loc": { - "start": { - "line": 64, - "column": 103 - }, - "end": { - "line": 64, - "column": 117 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5087, - "end": 5088, - "loc": { - "start": { - "line": 64, - "column": 117 - }, - "end": { - "line": 64, - "column": 118 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 5088, - "end": 5089, - "loc": { - "start": { - "line": 64, - "column": 118 - }, - "end": { - "line": 64, - "column": 119 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5089, - "end": 5090, - "loc": { - "start": { - "line": 64, - "column": 119 - }, - "end": { - "line": 64, - "column": 120 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 5091, - "end": 5093, - "loc": { - "start": { - "line": 64, - "column": 121 - }, - "end": { - "line": 64, - "column": 123 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5094, - "end": 5095, - "loc": { - "start": { - "line": 64, - "column": 124 - }, - "end": { - "line": 64, - "column": 125 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 5095, - "end": 5096, - "loc": { - "start": { - "line": 64, - "column": 125 - }, - "end": { - "line": 64, - "column": 126 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5096, - "end": 5097, - "loc": { - "start": { - "line": 64, - "column": 126 - }, - "end": { - "line": 64, - "column": 127 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5097, - "end": 5101, - "loc": { - "start": { - "line": 64, - "column": 127 - }, - "end": { - "line": 64, - "column": 131 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5101, - "end": 5102, - "loc": { - "start": { - "line": 64, - "column": 131 - }, - "end": { - "line": 64, - "column": 132 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 5102, - "end": 5103, - "loc": { - "start": { - "line": 64, - "column": 132 - }, - "end": { - "line": 64, - "column": 133 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5103, - "end": 5104, - "loc": { - "start": { - "line": 64, - "column": 133 - }, - "end": { - "line": 64, - "column": 134 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5104, - "end": 5105, - "loc": { - "start": { - "line": 64, - "column": 134 - }, - "end": { - "line": 64, - "column": 135 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 5106, - "end": 5107, - "loc": { - "start": { - "line": 64, - "column": 136 - }, - "end": { - "line": 64, - "column": 137 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5107, - "end": 5108, - "loc": { - "start": { - "line": 64, - "column": 137 - }, - "end": { - "line": 64, - "column": 138 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 5108, - "end": 5109, - "loc": { - "start": { - "line": 64, - "column": 138 - }, - "end": { - "line": 64, - "column": 139 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5109, - "end": 5110, - "loc": { - "start": { - "line": 64, - "column": 139 - }, - "end": { - "line": 64, - "column": 140 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5111, - "end": 5112, - "loc": { - "start": { - "line": 64, - "column": 141 - }, - "end": { - "line": 64, - "column": 142 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5113, - "end": 5114, - "loc": { - "start": { - "line": 64, - "column": 143 - }, - "end": { - "line": 64, - "column": 144 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5114, - "end": 5115, - "loc": { - "start": { - "line": 64, - "column": 144 - }, - "end": { - "line": 64, - "column": 145 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5115, - "end": 5116, - "loc": { - "start": { - "line": 64, - "column": 145 - }, - "end": { - "line": 64, - "column": 146 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5123, - "end": 5124, - "loc": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 65, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 5124, - "end": 5125, - "loc": { - "start": { - "line": 65, - "column": 7 - }, - "end": { - "line": 65, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5125, - "end": 5126, - "loc": { - "start": { - "line": 65, - "column": 8 - }, - "end": { - "line": 65, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5126, - "end": 5130, - "loc": { - "start": { - "line": 65, - "column": 9 - }, - "end": { - "line": 65, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5130, - "end": 5131, - "loc": { - "start": { - "line": 65, - "column": 13 - }, - "end": { - "line": 65, - "column": 14 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "[\\S\\s]", - "flags": "" - }, - "start": 5131, - "end": 5139, - "loc": { - "start": { - "line": 65, - "column": 14 - }, - "end": { - "line": 65, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5139, - "end": 5140, - "loc": { - "start": { - "line": 65, - "column": 22 - }, - "end": { - "line": 65, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5140, - "end": 5141, - "loc": { - "start": { - "line": 65, - "column": 23 - }, - "end": { - "line": 65, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "y", - "start": 5141, - "end": 5142, - "loc": { - "start": { - "line": 65, - "column": 24 - }, - "end": { - "line": 65, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5143, - "end": 5144, - "loc": { - "start": { - "line": 65, - "column": 26 - }, - "end": { - "line": 65, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "L", - "start": 5145, - "end": 5146, - "loc": { - "start": { - "line": 65, - "column": 28 - }, - "end": { - "line": 65, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5146, - "end": 5147, - "loc": { - "start": { - "line": 65, - "column": 29 - }, - "end": { - "line": 65, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 5147, - "end": 5148, - "loc": { - "start": { - "line": 65, - "column": 30 - }, - "end": { - "line": 65, - "column": 31 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5148, - "end": 5149, - "loc": { - "start": { - "line": 65, - "column": 31 - }, - "end": { - "line": 65, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5149, - "end": 5150, - "loc": { - "start": { - "line": 65, - "column": 32 - }, - "end": { - "line": 65, - "column": 33 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5155, - "end": 5156, - "loc": { - "start": { - "line": 66, - "column": 4 - }, - "end": { - "line": 66, - "column": 5 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5156, - "end": 5157, - "loc": { - "start": { - "line": 66, - "column": 5 - }, - "end": { - "line": 66, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5157, - "end": 5158, - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 66, - "column": 7 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5158, - "end": 5159, - "loc": { - "start": { - "line": 66, - "column": 7 - }, - "end": { - "line": 66, - "column": 8 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5159, - "end": 5160, - "loc": { - "start": { - "line": 66, - "column": 8 - }, - "end": { - "line": 66, - "column": 9 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 5160, - "end": 5163, - "loc": { - "start": { - "line": 66, - "column": 9 - }, - "end": { - "line": 66, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 5164, - "end": 5165, - "loc": { - "start": { - "line": 66, - "column": 13 - }, - "end": { - "line": 66, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5166, - "end": 5167, - "loc": { - "start": { - "line": 66, - "column": 15 - }, - "end": { - "line": 66, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5168, - "end": 5169, - "loc": { - "start": { - "line": 66, - "column": 17 - }, - "end": { - "line": 66, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5169, - "end": 5170, - "loc": { - "start": { - "line": 66, - "column": 18 - }, - "end": { - "line": 66, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 5170, - "end": 5176, - "loc": { - "start": { - "line": 66, - "column": 19 - }, - "end": { - "line": 66, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5176, - "end": 5177, - "loc": { - "start": { - "line": 66, - "column": 25 - }, - "end": { - "line": 66, - "column": 26 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 5177, - "end": 5183, - "loc": { - "start": { - "line": 66, - "column": 26 - }, - "end": { - "line": 66, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 5184, - "end": 5185, - "loc": { - "start": { - "line": 66, - "column": 33 - }, - "end": { - "line": 66, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5185, - "end": 5186, - "loc": { - "start": { - "line": 66, - "column": 34 - }, - "end": { - "line": 66, - "column": 35 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5189, - "end": 5190, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 67, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 5190, - "end": 5198, - "loc": { - "start": { - "line": 67, - "column": 3 - }, - "end": { - "line": 67, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 5199, - "end": 5200, - "loc": { - "start": { - "line": 67, - "column": 12 - }, - "end": { - "line": 67, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5200, - "end": 5201, - "loc": { - "start": { - "line": 67, - "column": 13 - }, - "end": { - "line": 67, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5201, - "end": 5202, - "loc": { - "start": { - "line": 67, - "column": 14 - }, - "end": { - "line": 67, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5202, - "end": 5203, - "loc": { - "start": { - "line": 67, - "column": 15 - }, - "end": { - "line": 67, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5204, - "end": 5205, - "loc": { - "start": { - "line": 67, - "column": 17 - }, - "end": { - "line": 67, - "column": 18 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 5210, - "end": 5213, - "loc": { - "start": { - "line": 68, - "column": 4 - }, - "end": { - "line": 68, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5214, - "end": 5215, - "loc": { - "start": { - "line": 68, - "column": 8 - }, - "end": { - "line": 68, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5216, - "end": 5217, - "loc": { - "start": { - "line": 68, - "column": 10 - }, - "end": { - "line": 68, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5218, - "end": 5219, - "loc": { - "start": { - "line": 68, - "column": 12 - }, - "end": { - "line": 68, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5219, - "end": 5220, - "loc": { - "start": { - "line": 68, - "column": 13 - }, - "end": { - "line": 68, - "column": 14 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5220, - "end": 5221, - "loc": { - "start": { - "line": 68, - "column": 14 - }, - "end": { - "line": 68, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 5230, - "end": 5231, - "loc": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5232, - "end": 5233, - "loc": { - "start": { - "line": 69, - "column": 10 - }, - "end": { - "line": 69, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5234, - "end": 5235, - "loc": { - "start": { - "line": 69, - "column": 12 - }, - "end": { - "line": 69, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5235, - "end": 5236, - "loc": { - "start": { - "line": 69, - "column": 13 - }, - "end": { - "line": 69, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5236, - "end": 5237, - "loc": { - "start": { - "line": 69, - "column": 14 - }, - "end": { - "line": 69, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5237, - "end": 5238, - "loc": { - "start": { - "line": 69, - "column": 15 - }, - "end": { - "line": 69, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5238, - "end": 5239, - "loc": { - "start": { - "line": 69, - "column": 16 - }, - "end": { - "line": 69, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tripleQuotedStrings", - "start": 5239, - "end": 5258, - "loc": { - "start": { - "line": 69, - "column": 17 - }, - "end": { - "line": 69, - "column": 36 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5259, - "end": 5260, - "loc": { - "start": { - "line": 69, - "column": 37 - }, - "end": { - "line": 69, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5261, - "end": 5262, - "loc": { - "start": { - "line": 69, - "column": 39 - }, - "end": { - "line": 69, - "column": 40 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5262, - "end": 5263, - "loc": { - "start": { - "line": 69, - "column": 40 - }, - "end": { - "line": 69, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5263, - "end": 5267, - "loc": { - "start": { - "line": 69, - "column": 41 - }, - "end": { - "line": 69, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5267, - "end": 5268, - "loc": { - "start": { - "line": 69, - "column": 45 - }, - "end": { - "line": 69, - "column": 46 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5268, - "end": 5269, - "loc": { - "start": { - "line": 69, - "column": 46 - }, - "end": { - "line": 69, - "column": 47 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 5269, - "end": 5274, - "loc": { - "start": { - "line": 69, - "column": 47 - }, - "end": { - "line": 69, - "column": 52 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5274, - "end": 5275, - "loc": { - "start": { - "line": 69, - "column": 52 - }, - "end": { - "line": 69, - "column": 53 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:'''(?:[^'\\\\]|\\\\[\\S\\s]|''?(?=[^']))*(?:'''|$)|\"\"\"(?:[^\"\\\\]|\\\\[\\S\\s]|\"\"?(?=[^\"]))*(?:\"\"\"|$)|'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$))", - "flags": "" - }, - "start": 5276, - "end": 5430, - "loc": { - "start": { - "line": 69, - "column": 54 - }, - "end": { - "line": 69, - "column": 208 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5430, - "end": 5431, - "loc": { - "start": { - "line": 69, - "column": 208 - }, - "end": { - "line": 69, - "column": 209 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5432, - "end": 5433, - "loc": { - "start": { - "line": 69, - "column": 210 - }, - "end": { - "line": 69, - "column": 211 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5433, - "end": 5434, - "loc": { - "start": { - "line": 69, - "column": 211 - }, - "end": { - "line": 69, - "column": 212 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "'\"", - "start": 5435, - "end": 5440, - "loc": { - "start": { - "line": 69, - "column": 213 - }, - "end": { - "line": 69, - "column": 218 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5440, - "end": 5441, - "loc": { - "start": { - "line": 69, - "column": 218 - }, - "end": { - "line": 69, - "column": 219 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5441, - "end": 5442, - "loc": { - "start": { - "line": 69, - "column": 219 - }, - "end": { - "line": 69, - "column": 220 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5443, - "end": 5444, - "loc": { - "start": { - "line": 69, - "column": 221 - }, - "end": { - "line": 69, - "column": 222 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5445, - "end": 5446, - "loc": { - "start": { - "line": 69, - "column": 223 - }, - "end": { - "line": 69, - "column": 224 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5446, - "end": 5447, - "loc": { - "start": { - "line": 69, - "column": 224 - }, - "end": { - "line": 69, - "column": 225 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 5447, - "end": 5463, - "loc": { - "start": { - "line": 69, - "column": 225 - }, - "end": { - "line": 69, - "column": 241 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5464, - "end": 5465, - "loc": { - "start": { - "line": 69, - "column": 242 - }, - "end": { - "line": 69, - "column": 243 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5466, - "end": 5467, - "loc": { - "start": { - "line": 69, - "column": 244 - }, - "end": { - "line": 69, - "column": 245 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5467, - "end": 5468, - "loc": { - "start": { - "line": 69, - "column": 245 - }, - "end": { - "line": 69, - "column": 246 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5468, - "end": 5472, - "loc": { - "start": { - "line": 69, - "column": 246 - }, - "end": { - "line": 69, - "column": 250 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5472, - "end": 5473, - "loc": { - "start": { - "line": 69, - "column": 250 - }, - "end": { - "line": 69, - "column": 251 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5473, - "end": 5474, - "loc": { - "start": { - "line": 69, - "column": 251 - }, - "end": { - "line": 69, - "column": 252 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 5474, - "end": 5479, - "loc": { - "start": { - "line": 69, - "column": 252 - }, - "end": { - "line": 69, - "column": 257 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5479, - "end": 5480, - "loc": { - "start": { - "line": 69, - "column": 257 - }, - "end": { - "line": 69, - "column": 258 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$)|`(?:[^\\\\`]|\\\\[\\S\\s])*(?:`|$))", - "flags": "" - }, - "start": 5481, - "end": 5574, - "loc": { - "start": { - "line": 69, - "column": 259 - }, - "end": { - "line": 69, - "column": 352 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5574, - "end": 5575, - "loc": { - "start": { - "line": 69, - "column": 352 - }, - "end": { - "line": 69, - "column": 353 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5576, - "end": 5577, - "loc": { - "start": { - "line": 69, - "column": 354 - }, - "end": { - "line": 69, - "column": 355 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5577, - "end": 5578, - "loc": { - "start": { - "line": 69, - "column": 355 - }, - "end": { - "line": 69, - "column": 356 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "'\"`", - "start": 5579, - "end": 5585, - "loc": { - "start": { - "line": 69, - "column": 357 - }, - "end": { - "line": 69, - "column": 363 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5585, - "end": 5586, - "loc": { - "start": { - "line": 69, - "column": 363 - }, - "end": { - "line": 69, - "column": 364 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5586, - "end": 5587, - "loc": { - "start": { - "line": 69, - "column": 364 - }, - "end": { - "line": 69, - "column": 365 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5588, - "end": 5589, - "loc": { - "start": { - "line": 69, - "column": 366 - }, - "end": { - "line": 69, - "column": 367 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5590, - "end": 5591, - "loc": { - "start": { - "line": 69, - "column": 368 - }, - "end": { - "line": 69, - "column": 369 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5591, - "end": 5592, - "loc": { - "start": { - "line": 69, - "column": 369 - }, - "end": { - "line": 69, - "column": 370 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5592, - "end": 5596, - "loc": { - "start": { - "line": 69, - "column": 370 - }, - "end": { - "line": 69, - "column": 374 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5596, - "end": 5597, - "loc": { - "start": { - "line": 69, - "column": 374 - }, - "end": { - "line": 69, - "column": 375 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5597, - "end": 5598, - "loc": { - "start": { - "line": 69, - "column": 375 - }, - "end": { - "line": 69, - "column": 376 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 5598, - "end": 5603, - "loc": { - "start": { - "line": 69, - "column": 376 - }, - "end": { - "line": 69, - "column": 381 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5603, - "end": 5604, - "loc": { - "start": { - "line": 69, - "column": 381 - }, - "end": { - "line": 69, - "column": 382 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:'(?:[^\\n\\r'\\\\]|\\\\.)*(?:'|$)|\"(?:[^\\n\\r\"\\\\]|\\\\.)*(?:\"|$))", - "flags": "" - }, - "start": 5605, - "end": 5667, - "loc": { - "start": { - "line": 69, - "column": 383 - }, - "end": { - "line": 69, - "column": 445 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5667, - "end": 5668, - "loc": { - "start": { - "line": 69, - "column": 445 - }, - "end": { - "line": 69, - "column": 446 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5669, - "end": 5670, - "loc": { - "start": { - "line": 69, - "column": 447 - }, - "end": { - "line": 69, - "column": 448 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5670, - "end": 5671, - "loc": { - "start": { - "line": 69, - "column": 448 - }, - "end": { - "line": 69, - "column": 449 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\"'", - "start": 5672, - "end": 5677, - "loc": { - "start": { - "line": 69, - "column": 450 - }, - "end": { - "line": 69, - "column": 455 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5677, - "end": 5678, - "loc": { - "start": { - "line": 69, - "column": 455 - }, - "end": { - "line": 69, - "column": 456 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5678, - "end": 5679, - "loc": { - "start": { - "line": 69, - "column": 456 - }, - "end": { - "line": 69, - "column": 457 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5679, - "end": 5680, - "loc": { - "start": { - "line": 69, - "column": 457 - }, - "end": { - "line": 69, - "column": 458 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5680, - "end": 5681, - "loc": { - "start": { - "line": 69, - "column": 458 - }, - "end": { - "line": 69, - "column": 459 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5681, - "end": 5682, - "loc": { - "start": { - "line": 69, - "column": 459 - }, - "end": { - "line": 69, - "column": 460 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "verbatimStrings", - "start": 5682, - "end": 5697, - "loc": { - "start": { - "line": 69, - "column": 460 - }, - "end": { - "line": 69, - "column": 475 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 5698, - "end": 5700, - "loc": { - "start": { - "line": 69, - "column": 476 - }, - "end": { - "line": 69, - "column": 478 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 5701, - "end": 5702, - "loc": { - "start": { - "line": 69, - "column": 479 - }, - "end": { - "line": 69, - "column": 480 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5702, - "end": 5703, - "loc": { - "start": { - "line": 69, - "column": 480 - }, - "end": { - "line": 69, - "column": 481 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5703, - "end": 5707, - "loc": { - "start": { - "line": 69, - "column": 481 - }, - "end": { - "line": 69, - "column": 485 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5707, - "end": 5708, - "loc": { - "start": { - "line": 69, - "column": 485 - }, - "end": { - "line": 69, - "column": 486 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5708, - "end": 5709, - "loc": { - "start": { - "line": 69, - "column": 486 - }, - "end": { - "line": 69, - "column": 487 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 5709, - "end": 5714, - "loc": { - "start": { - "line": 69, - "column": 487 - }, - "end": { - "line": 69, - "column": 492 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5714, - "end": 5715, - "loc": { - "start": { - "line": 69, - "column": 492 - }, - "end": { - "line": 69, - "column": 493 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^@\"(?:[^\"]|\"\")*(?:\"|$)", - "flags": "" - }, - "start": 5716, - "end": 5740, - "loc": { - "start": { - "line": 69, - "column": 494 - }, - "end": { - "line": 69, - "column": 518 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5740, - "end": 5741, - "loc": { - "start": { - "line": 69, - "column": 518 - }, - "end": { - "line": 69, - "column": 519 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5742, - "end": 5743, - "loc": { - "start": { - "line": 69, - "column": 520 - }, - "end": { - "line": 69, - "column": 521 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5743, - "end": 5744, - "loc": { - "start": { - "line": 69, - "column": 521 - }, - "end": { - "line": 69, - "column": 522 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5744, - "end": 5745, - "loc": { - "start": { - "line": 69, - "column": 522 - }, - "end": { - "line": 69, - "column": 523 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5745, - "end": 5746, - "loc": { - "start": { - "line": 69, - "column": 523 - }, - "end": { - "line": 69, - "column": 524 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 5746, - "end": 5749, - "loc": { - "start": { - "line": 69, - "column": 524 - }, - "end": { - "line": 69, - "column": 527 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 5750, - "end": 5751, - "loc": { - "start": { - "line": 69, - "column": 528 - }, - "end": { - "line": 69, - "column": 529 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5752, - "end": 5753, - "loc": { - "start": { - "line": 69, - "column": 530 - }, - "end": { - "line": 69, - "column": 531 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5754, - "end": 5755, - "loc": { - "start": { - "line": 69, - "column": 532 - }, - "end": { - "line": 69, - "column": 533 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5755, - "end": 5756, - "loc": { - "start": { - "line": 69, - "column": 533 - }, - "end": { - "line": 69, - "column": 534 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 5756, - "end": 5768, - "loc": { - "start": { - "line": 69, - "column": 534 - }, - "end": { - "line": 69, - "column": 546 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5768, - "end": 5769, - "loc": { - "start": { - "line": 69, - "column": 546 - }, - "end": { - "line": 69, - "column": 547 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 5769, - "end": 5770, - "loc": { - "start": { - "line": 69, - "column": 547 - }, - "end": { - "line": 69, - "column": 548 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 5771, - "end": 5773, - "loc": { - "start": { - "line": 69, - "column": 549 - }, - "end": { - "line": 69, - "column": 551 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5774, - "end": 5775, - "loc": { - "start": { - "line": 69, - "column": 552 - }, - "end": { - "line": 69, - "column": 553 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 5775, - "end": 5776, - "loc": { - "start": { - "line": 69, - "column": 553 - }, - "end": { - "line": 69, - "column": 554 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5776, - "end": 5777, - "loc": { - "start": { - "line": 69, - "column": 554 - }, - "end": { - "line": 69, - "column": 555 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 5777, - "end": 5791, - "loc": { - "start": { - "line": 69, - "column": 555 - }, - "end": { - "line": 69, - "column": 569 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5792, - "end": 5793, - "loc": { - "start": { - "line": 69, - "column": 570 - }, - "end": { - "line": 69, - "column": 571 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5794, - "end": 5795, - "loc": { - "start": { - "line": 69, - "column": 572 - }, - "end": { - "line": 69, - "column": 573 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 5795, - "end": 5796, - "loc": { - "start": { - "line": 69, - "column": 573 - }, - "end": { - "line": 69, - "column": 574 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">", - "start": 5797, - "end": 5798, - "loc": { - "start": { - "line": 69, - "column": 575 - }, - "end": { - "line": 69, - "column": 576 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 5799, - "end": 5800, - "loc": { - "start": { - "line": 69, - "column": 577 - }, - "end": { - "line": 69, - "column": 578 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5801, - "end": 5802, - "loc": { - "start": { - "line": 69, - "column": 579 - }, - "end": { - "line": 69, - "column": 580 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5803, - "end": 5804, - "loc": { - "start": { - "line": 69, - "column": 581 - }, - "end": { - "line": 69, - "column": 582 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5804, - "end": 5805, - "loc": { - "start": { - "line": 69, - "column": 582 - }, - "end": { - "line": 69, - "column": 583 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5805, - "end": 5809, - "loc": { - "start": { - "line": 69, - "column": 583 - }, - "end": { - "line": 69, - "column": 587 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5809, - "end": 5810, - "loc": { - "start": { - "line": 69, - "column": 587 - }, - "end": { - "line": 69, - "column": 588 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5810, - "end": 5811, - "loc": { - "start": { - "line": 69, - "column": 588 - }, - "end": { - "line": 69, - "column": 589 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 5811, - "end": 5816, - "loc": { - "start": { - "line": 69, - "column": 589 - }, - "end": { - "line": 69, - "column": 594 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5816, - "end": 5817, - "loc": { - "start": { - "line": 69, - "column": 594 - }, - "end": { - "line": 69, - "column": 595 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)", - "flags": "" - }, - "start": 5818, - "end": 5857, - "loc": { - "start": { - "line": 69, - "column": 596 - }, - "end": { - "line": 69, - "column": 635 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5857, - "end": 5858, - "loc": { - "start": { - "line": 69, - "column": 635 - }, - "end": { - "line": 69, - "column": 636 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5859, - "end": 5860, - "loc": { - "start": { - "line": 69, - "column": 637 - }, - "end": { - "line": 69, - "column": 638 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5860, - "end": 5861, - "loc": { - "start": { - "line": 69, - "column": 638 - }, - "end": { - "line": 69, - "column": 639 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "#", - "start": 5862, - "end": 5865, - "loc": { - "start": { - "line": 69, - "column": 640 - }, - "end": { - "line": 69, - "column": 643 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5865, - "end": 5866, - "loc": { - "start": { - "line": 69, - "column": 643 - }, - "end": { - "line": 69, - "column": 644 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5866, - "end": 5867, - "loc": { - "start": { - "line": 69, - "column": 644 - }, - "end": { - "line": 69, - "column": 645 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5868, - "end": 5869, - "loc": { - "start": { - "line": 69, - "column": 646 - }, - "end": { - "line": 69, - "column": 647 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 5870, - "end": 5871, - "loc": { - "start": { - "line": 69, - "column": 648 - }, - "end": { - "line": 69, - "column": 649 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5871, - "end": 5872, - "loc": { - "start": { - "line": 69, - "column": 649 - }, - "end": { - "line": 69, - "column": 650 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5872, - "end": 5876, - "loc": { - "start": { - "line": 69, - "column": 650 - }, - "end": { - "line": 69, - "column": 654 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5876, - "end": 5877, - "loc": { - "start": { - "line": 69, - "column": 654 - }, - "end": { - "line": 69, - "column": 655 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5877, - "end": 5878, - "loc": { - "start": { - "line": 69, - "column": 655 - }, - "end": { - "line": 69, - "column": 656 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 5878, - "end": 5883, - "loc": { - "start": { - "line": 69, - "column": 656 - }, - "end": { - "line": 69, - "column": 661 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5883, - "end": 5884, - "loc": { - "start": { - "line": 69, - "column": 661 - }, - "end": { - "line": 69, - "column": 662 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\\b|[^\\n\\r]*)", - "flags": "" - }, - "start": 5885, - "end": 5983, - "loc": { - "start": { - "line": 69, - "column": 663 - }, - "end": { - "line": 69, - "column": 761 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5983, - "end": 5984, - "loc": { - "start": { - "line": 69, - "column": 761 - }, - "end": { - "line": 69, - "column": 762 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 5985, - "end": 5986, - "loc": { - "start": { - "line": 69, - "column": 763 - }, - "end": { - "line": 69, - "column": 764 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5986, - "end": 5987, - "loc": { - "start": { - "line": 69, - "column": 764 - }, - "end": { - "line": 69, - "column": 765 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "#", - "start": 5988, - "end": 5991, - "loc": { - "start": { - "line": 69, - "column": 766 - }, - "end": { - "line": 69, - "column": 769 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5991, - "end": 5992, - "loc": { - "start": { - "line": 69, - "column": 769 - }, - "end": { - "line": 69, - "column": 770 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5992, - "end": 5993, - "loc": { - "start": { - "line": 69, - "column": 770 - }, - "end": { - "line": 69, - "column": 771 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5993, - "end": 5994, - "loc": { - "start": { - "line": 69, - "column": 771 - }, - "end": { - "line": 69, - "column": 772 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 5995, - "end": 5996, - "loc": { - "start": { - "line": 69, - "column": 773 - }, - "end": { - "line": 69, - "column": 774 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5996, - "end": 5997, - "loc": { - "start": { - "line": 69, - "column": 774 - }, - "end": { - "line": 69, - "column": 775 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 5997, - "end": 6001, - "loc": { - "start": { - "line": 69, - "column": 775 - }, - "end": { - "line": 69, - "column": 779 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6001, - "end": 6002, - "loc": { - "start": { - "line": 69, - "column": 779 - }, - "end": { - "line": 69, - "column": 780 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6002, - "end": 6003, - "loc": { - "start": { - "line": 69, - "column": 780 - }, - "end": { - "line": 69, - "column": 781 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 6003, - "end": 6008, - "loc": { - "start": { - "line": 69, - "column": 781 - }, - "end": { - "line": 69, - "column": 786 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6008, - "end": 6009, - "loc": { - "start": { - "line": 69, - "column": 786 - }, - "end": { - "line": 69, - "column": 787 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^<(?:(?:(?:\\.\\.\\/)*|\\/?)(?:[\\w-]+(?:\\/[\\w-]+)+)?[\\w-]+\\.h|[a-z]\\w*)>", - "flags": "" - }, - "start": 6010, - "end": 6080, - "loc": { - "start": { - "line": 69, - "column": 788 - }, - "end": { - "line": 69, - "column": 858 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6080, - "end": 6081, - "loc": { - "start": { - "line": 69, - "column": 858 - }, - "end": { - "line": 69, - "column": 859 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6082, - "end": 6083, - "loc": { - "start": { - "line": 69, - "column": 860 - }, - "end": { - "line": 69, - "column": 861 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6083, - "end": 6084, - "loc": { - "start": { - "line": 69, - "column": 861 - }, - "end": { - "line": 69, - "column": 862 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6084, - "end": 6085, - "loc": { - "start": { - "line": 69, - "column": 862 - }, - "end": { - "line": 69, - "column": 863 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6085, - "end": 6086, - "loc": { - "start": { - "line": 69, - "column": 863 - }, - "end": { - "line": 69, - "column": 864 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6087, - "end": 6088, - "loc": { - "start": { - "line": 69, - "column": 865 - }, - "end": { - "line": 69, - "column": 866 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 6089, - "end": 6090, - "loc": { - "start": { - "line": 69, - "column": 867 - }, - "end": { - "line": 69, - "column": 868 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6090, - "end": 6091, - "loc": { - "start": { - "line": 69, - "column": 868 - }, - "end": { - "line": 69, - "column": 869 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6091, - "end": 6095, - "loc": { - "start": { - "line": 69, - "column": 869 - }, - "end": { - "line": 69, - "column": 873 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6095, - "end": 6096, - "loc": { - "start": { - "line": 69, - "column": 873 - }, - "end": { - "line": 69, - "column": 874 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6096, - "end": 6097, - "loc": { - "start": { - "line": 69, - "column": 874 - }, - "end": { - "line": 69, - "column": 875 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 6097, - "end": 6102, - "loc": { - "start": { - "line": 69, - "column": 875 - }, - "end": { - "line": 69, - "column": 880 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6102, - "end": 6103, - "loc": { - "start": { - "line": 69, - "column": 880 - }, - "end": { - "line": 69, - "column": 881 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^#[^\\n\\r]*", - "flags": "" - }, - "start": 6104, - "end": 6116, - "loc": { - "start": { - "line": 69, - "column": 882 - }, - "end": { - "line": 69, - "column": 894 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6116, - "end": 6117, - "loc": { - "start": { - "line": 69, - "column": 894 - }, - "end": { - "line": 69, - "column": 895 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6118, - "end": 6119, - "loc": { - "start": { - "line": 69, - "column": 896 - }, - "end": { - "line": 69, - "column": 897 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6119, - "end": 6120, - "loc": { - "start": { - "line": 69, - "column": 897 - }, - "end": { - "line": 69, - "column": 898 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "#", - "start": 6121, - "end": 6124, - "loc": { - "start": { - "line": 69, - "column": 899 - }, - "end": { - "line": 69, - "column": 902 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6124, - "end": 6125, - "loc": { - "start": { - "line": 69, - "column": 902 - }, - "end": { - "line": 69, - "column": 903 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6125, - "end": 6126, - "loc": { - "start": { - "line": 69, - "column": 903 - }, - "end": { - "line": 69, - "column": 904 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6126, - "end": 6127, - "loc": { - "start": { - "line": 69, - "column": 904 - }, - "end": { - "line": 69, - "column": 905 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6127, - "end": 6128, - "loc": { - "start": { - "line": 69, - "column": 905 - }, - "end": { - "line": 69, - "column": 906 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6128, - "end": 6129, - "loc": { - "start": { - "line": 69, - "column": 906 - }, - "end": { - "line": 69, - "column": 907 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6129, - "end": 6130, - "loc": { - "start": { - "line": 69, - "column": 907 - }, - "end": { - "line": 69, - "column": 908 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 6130, - "end": 6144, - "loc": { - "start": { - "line": 69, - "column": 908 - }, - "end": { - "line": 69, - "column": 922 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 6145, - "end": 6147, - "loc": { - "start": { - "line": 69, - "column": 923 - }, - "end": { - "line": 69, - "column": 925 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6148, - "end": 6149, - "loc": { - "start": { - "line": 69, - "column": 926 - }, - "end": { - "line": 69, - "column": 927 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6149, - "end": 6150, - "loc": { - "start": { - "line": 69, - "column": 927 - }, - "end": { - "line": 69, - "column": 928 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6150, - "end": 6151, - "loc": { - "start": { - "line": 69, - "column": 928 - }, - "end": { - "line": 69, - "column": 929 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6151, - "end": 6155, - "loc": { - "start": { - "line": 69, - "column": 929 - }, - "end": { - "line": 69, - "column": 933 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6155, - "end": 6156, - "loc": { - "start": { - "line": 69, - "column": 933 - }, - "end": { - "line": 69, - "column": 934 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6156, - "end": 6157, - "loc": { - "start": { - "line": 69, - "column": 934 - }, - "end": { - "line": 69, - "column": 935 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 6157, - "end": 6162, - "loc": { - "start": { - "line": 69, - "column": 935 - }, - "end": { - "line": 69, - "column": 940 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6162, - "end": 6163, - "loc": { - "start": { - "line": 69, - "column": 940 - }, - "end": { - "line": 69, - "column": 941 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\/\\/[^\\n\\r]*", - "flags": "" - }, - "start": 6164, - "end": 6179, - "loc": { - "start": { - "line": 69, - "column": 942 - }, - "end": { - "line": 69, - "column": 957 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6179, - "end": 6180, - "loc": { - "start": { - "line": 69, - "column": 957 - }, - "end": { - "line": 69, - "column": 958 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6181, - "end": 6182, - "loc": { - "start": { - "line": 69, - "column": 959 - }, - "end": { - "line": 69, - "column": 960 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6182, - "end": 6183, - "loc": { - "start": { - "line": 69, - "column": 960 - }, - "end": { - "line": 69, - "column": 961 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6183, - "end": 6184, - "loc": { - "start": { - "line": 69, - "column": 961 - }, - "end": { - "line": 69, - "column": 962 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6184, - "end": 6185, - "loc": { - "start": { - "line": 69, - "column": 962 - }, - "end": { - "line": 69, - "column": 963 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6186, - "end": 6187, - "loc": { - "start": { - "line": 69, - "column": 964 - }, - "end": { - "line": 69, - "column": 965 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6187, - "end": 6188, - "loc": { - "start": { - "line": 69, - "column": 965 - }, - "end": { - "line": 69, - "column": 966 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6188, - "end": 6192, - "loc": { - "start": { - "line": 69, - "column": 966 - }, - "end": { - "line": 69, - "column": 970 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6192, - "end": 6193, - "loc": { - "start": { - "line": 69, - "column": 970 - }, - "end": { - "line": 69, - "column": 971 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6193, - "end": 6194, - "loc": { - "start": { - "line": 69, - "column": 971 - }, - "end": { - "line": 69, - "column": 972 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 6194, - "end": 6199, - "loc": { - "start": { - "line": 69, - "column": 972 - }, - "end": { - "line": 69, - "column": 977 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6199, - "end": 6200, - "loc": { - "start": { - "line": 69, - "column": 977 - }, - "end": { - "line": 69, - "column": 978 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\/\\*[\\S\\s]*?(?:\\*\\/|$)", - "flags": "" - }, - "start": 6201, - "end": 6226, - "loc": { - "start": { - "line": 69, - "column": 979 - }, - "end": { - "line": 69, - "column": 1004 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6226, - "end": 6227, - "loc": { - "start": { - "line": 69, - "column": 1004 - }, - "end": { - "line": 69, - "column": 1005 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6228, - "end": 6229, - "loc": { - "start": { - "line": 69, - "column": 1006 - }, - "end": { - "line": 69, - "column": 1007 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6229, - "end": 6230, - "loc": { - "start": { - "line": 69, - "column": 1007 - }, - "end": { - "line": 69, - "column": 1008 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6230, - "end": 6231, - "loc": { - "start": { - "line": 69, - "column": 1008 - }, - "end": { - "line": 69, - "column": 1009 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6231, - "end": 6232, - "loc": { - "start": { - "line": 69, - "column": 1009 - }, - "end": { - "line": 69, - "column": 1010 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6232, - "end": 6233, - "loc": { - "start": { - "line": 69, - "column": 1010 - }, - "end": { - "line": 69, - "column": 1011 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6233, - "end": 6234, - "loc": { - "start": { - "line": 69, - "column": 1011 - }, - "end": { - "line": 69, - "column": 1012 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6234, - "end": 6235, - "loc": { - "start": { - "line": 69, - "column": 1012 - }, - "end": { - "line": 69, - "column": 1013 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 6235, - "end": 6248, - "loc": { - "start": { - "line": 69, - "column": 1013 - }, - "end": { - "line": 69, - "column": 1026 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 6249, - "end": 6251, - "loc": { - "start": { - "line": 69, - "column": 1027 - }, - "end": { - "line": 69, - "column": 1029 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6252, - "end": 6253, - "loc": { - "start": { - "line": 69, - "column": 1030 - }, - "end": { - "line": 69, - "column": 1031 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6253, - "end": 6254, - "loc": { - "start": { - "line": 69, - "column": 1031 - }, - "end": { - "line": 69, - "column": 1032 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6254, - "end": 6258, - "loc": { - "start": { - "line": 69, - "column": 1032 - }, - "end": { - "line": 69, - "column": 1036 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6258, - "end": 6259, - "loc": { - "start": { - "line": 69, - "column": 1036 - }, - "end": { - "line": 69, - "column": 1037 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6259, - "end": 6260, - "loc": { - "start": { - "line": 69, - "column": 1037 - }, - "end": { - "line": 69, - "column": 1038 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-regex", - "start": 6260, - "end": 6272, - "loc": { - "start": { - "line": 69, - "column": 1038 - }, - "end": { - "line": 69, - "column": 1050 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6272, - "end": 6273, - "loc": { - "start": { - "line": 69, - "column": 1050 - }, - "end": { - "line": 69, - "column": 1051 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:^^\\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|,|-=|->|\\/|\\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\\^=|\\^\\^|\\^\\^=|{|\\||\\|=|\\|\\||\\|\\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*(\\/(?=[^*/])(?:[^/[\\\\]|\\\\[\\S\\s]|\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*(?:]|$))+\\/)", - "flags": "" - }, - "start": 6274, - "end": 6588, - "loc": { - "start": { - "line": 69, - "column": 1052 - }, - "end": { - "line": 69, - "column": 1366 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6588, - "end": 6589, - "loc": { - "start": { - "line": 69, - "column": 1366 - }, - "end": { - "line": 69, - "column": 1367 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6589, - "end": 6590, - "loc": { - "start": { - "line": 69, - "column": 1367 - }, - "end": { - "line": 69, - "column": 1368 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6590, - "end": 6591, - "loc": { - "start": { - "line": 69, - "column": 1368 - }, - "end": { - "line": 69, - "column": 1369 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6591, - "end": 6592, - "loc": { - "start": { - "line": 69, - "column": 1369 - }, - "end": { - "line": 69, - "column": 1370 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 6592, - "end": 6593, - "loc": { - "start": { - "line": 69, - "column": 1370 - }, - "end": { - "line": 69, - "column": 1371 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 6594, - "end": 6595, - "loc": { - "start": { - "line": 69, - "column": 1372 - }, - "end": { - "line": 69, - "column": 1373 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6596, - "end": 6597, - "loc": { - "start": { - "line": 69, - "column": 1374 - }, - "end": { - "line": 69, - "column": 1375 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6597, - "end": 6598, - "loc": { - "start": { - "line": 69, - "column": 1375 - }, - "end": { - "line": 69, - "column": 1376 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "types", - "start": 6598, - "end": 6603, - "loc": { - "start": { - "line": 69, - "column": 1376 - }, - "end": { - "line": 69, - "column": 1381 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6603, - "end": 6604, - "loc": { - "start": { - "line": 69, - "column": 1381 - }, - "end": { - "line": 69, - "column": 1382 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 6605, - "end": 6607, - "loc": { - "start": { - "line": 69, - "column": 1383 - }, - "end": { - "line": 69, - "column": 1385 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6608, - "end": 6609, - "loc": { - "start": { - "line": 69, - "column": 1386 - }, - "end": { - "line": 69, - "column": 1387 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6609, - "end": 6610, - "loc": { - "start": { - "line": 69, - "column": 1387 - }, - "end": { - "line": 69, - "column": 1388 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6610, - "end": 6614, - "loc": { - "start": { - "line": 69, - "column": 1388 - }, - "end": { - "line": 69, - "column": 1392 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6614, - "end": 6615, - "loc": { - "start": { - "line": 69, - "column": 1392 - }, - "end": { - "line": 69, - "column": 1393 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6615, - "end": 6616, - "loc": { - "start": { - "line": 69, - "column": 1393 - }, - "end": { - "line": 69, - "column": 1394 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "typ", - "start": 6616, - "end": 6621, - "loc": { - "start": { - "line": 69, - "column": 1394 - }, - "end": { - "line": 69, - "column": 1399 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6621, - "end": 6622, - "loc": { - "start": { - "line": 69, - "column": 1399 - }, - "end": { - "line": 69, - "column": 1400 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 6623, - "end": 6624, - "loc": { - "start": { - "line": 69, - "column": 1401 - }, - "end": { - "line": 69, - "column": 1402 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6624, - "end": 6625, - "loc": { - "start": { - "line": 69, - "column": 1402 - }, - "end": { - "line": 69, - "column": 1403 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6625, - "end": 6626, - "loc": { - "start": { - "line": 69, - "column": 1403 - }, - "end": { - "line": 69, - "column": 1404 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6626, - "end": 6627, - "loc": { - "start": { - "line": 69, - "column": 1404 - }, - "end": { - "line": 69, - "column": 1405 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6627, - "end": 6628, - "loc": { - "start": { - "line": 69, - "column": 1405 - }, - "end": { - "line": 69, - "column": 1406 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 6629, - "end": 6630, - "loc": { - "start": { - "line": 69, - "column": 1407 - }, - "end": { - "line": 69, - "column": 1408 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6631, - "end": 6632, - "loc": { - "start": { - "line": 69, - "column": 1409 - }, - "end": { - "line": 69, - "column": 1410 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 6632, - "end": 6634, - "loc": { - "start": { - "line": 69, - "column": 1410 - }, - "end": { - "line": 69, - "column": 1412 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 6635, - "end": 6636, - "loc": { - "start": { - "line": 69, - "column": 1413 - }, - "end": { - "line": 69, - "column": 1414 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6637, - "end": 6638, - "loc": { - "start": { - "line": 69, - "column": 1415 - }, - "end": { - "line": 69, - "column": 1416 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6638, - "end": 6639, - "loc": { - "start": { - "line": 69, - "column": 1416 - }, - "end": { - "line": 69, - "column": 1417 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 6639, - "end": 6647, - "loc": { - "start": { - "line": 69, - "column": 1417 - }, - "end": { - "line": 69, - "column": 1425 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6647, - "end": 6648, - "loc": { - "start": { - "line": 69, - "column": 1425 - }, - "end": { - "line": 69, - "column": 1426 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6648, - "end": 6649, - "loc": { - "start": { - "line": 69, - "column": 1426 - }, - "end": { - "line": 69, - "column": 1427 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 6649, - "end": 6656, - "loc": { - "start": { - "line": 69, - "column": 1427 - }, - "end": { - "line": 69, - "column": 1434 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6656, - "end": 6657, - "loc": { - "start": { - "line": 69, - "column": 1434 - }, - "end": { - "line": 69, - "column": 1435 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^ | $", - "flags": "g" - }, - "start": 6657, - "end": 6665, - "loc": { - "start": { - "line": 69, - "column": 1435 - }, - "end": { - "line": 69, - "column": 1443 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6665, - "end": 6666, - "loc": { - "start": { - "line": 69, - "column": 1443 - }, - "end": { - "line": 69, - "column": 1444 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 6667, - "end": 6669, - "loc": { - "start": { - "line": 69, - "column": 1445 - }, - "end": { - "line": 69, - "column": 1447 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6669, - "end": 6670, - "loc": { - "start": { - "line": 69, - "column": 1447 - }, - "end": { - "line": 69, - "column": 1448 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6670, - "end": 6671, - "loc": { - "start": { - "line": 69, - "column": 1448 - }, - "end": { - "line": 69, - "column": 1449 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6671, - "end": 6672, - "loc": { - "start": { - "line": 69, - "column": 1449 - }, - "end": { - "line": 69, - "column": 1450 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6672, - "end": 6673, - "loc": { - "start": { - "line": 69, - "column": 1450 - }, - "end": { - "line": 69, - "column": 1451 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 6673, - "end": 6679, - "loc": { - "start": { - "line": 69, - "column": 1451 - }, - "end": { - "line": 69, - "column": 1457 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 6680, - "end": 6682, - "loc": { - "start": { - "line": 69, - "column": 1458 - }, - "end": { - "line": 69, - "column": 1460 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6683, - "end": 6684, - "loc": { - "start": { - "line": 69, - "column": 1461 - }, - "end": { - "line": 69, - "column": 1462 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6684, - "end": 6685, - "loc": { - "start": { - "line": 69, - "column": 1462 - }, - "end": { - "line": 69, - "column": 1463 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6685, - "end": 6689, - "loc": { - "start": { - "line": 69, - "column": 1463 - }, - "end": { - "line": 69, - "column": 1467 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6689, - "end": 6690, - "loc": { - "start": { - "line": 69, - "column": 1467 - }, - "end": { - "line": 69, - "column": 1468 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6690, - "end": 6691, - "loc": { - "start": { - "line": 69, - "column": 1468 - }, - "end": { - "line": 69, - "column": 1469 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "kwd", - "start": 6691, - "end": 6696, - "loc": { - "start": { - "line": 69, - "column": 1469 - }, - "end": { - "line": 69, - "column": 1474 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6696, - "end": 6697, - "loc": { - "start": { - "line": 69, - "column": 1474 - }, - "end": { - "line": 69, - "column": 1475 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "RegExp", - "start": 6698, - "end": 6704, - "loc": { - "start": { - "line": 69, - "column": 1476 - }, - "end": { - "line": 69, - "column": 1482 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6704, - "end": 6705, - "loc": { - "start": { - "line": 69, - "column": 1482 - }, - "end": { - "line": 69, - "column": 1483 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "^(?:", - "start": 6705, - "end": 6711, - "loc": { - "start": { - "line": 69, - "column": 1483 - }, - "end": { - "line": 69, - "column": 1489 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 6712, - "end": 6713, - "loc": { - "start": { - "line": 69, - "column": 1490 - }, - "end": { - "line": 69, - "column": 1491 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 6714, - "end": 6715, - "loc": { - "start": { - "line": 69, - "column": 1492 - }, - "end": { - "line": 69, - "column": 1493 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6715, - "end": 6716, - "loc": { - "start": { - "line": 69, - "column": 1493 - }, - "end": { - "line": 69, - "column": 1494 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 6716, - "end": 6723, - "loc": { - "start": { - "line": 69, - "column": 1494 - }, - "end": { - "line": 69, - "column": 1501 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6723, - "end": 6724, - "loc": { - "start": { - "line": 69, - "column": 1501 - }, - "end": { - "line": 69, - "column": 1502 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "[\\s,]+", - "flags": "g" - }, - "start": 6724, - "end": 6733, - "loc": { - "start": { - "line": 69, - "column": 1502 - }, - "end": { - "line": 69, - "column": 1511 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6733, - "end": 6734, - "loc": { - "start": { - "line": 69, - "column": 1511 - }, - "end": { - "line": 69, - "column": 1512 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "|", - "start": 6735, - "end": 6738, - "loc": { - "start": { - "line": 69, - "column": 1513 - }, - "end": { - "line": 69, - "column": 1516 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6738, - "end": 6739, - "loc": { - "start": { - "line": 69, - "column": 1516 - }, - "end": { - "line": 69, - "column": 1517 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 6740, - "end": 6741, - "loc": { - "start": { - "line": 69, - "column": 1518 - }, - "end": { - "line": 69, - "column": 1519 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ")\\b", - "start": 6742, - "end": 6748, - "loc": { - "start": { - "line": 69, - "column": 1520 - }, - "end": { - "line": 69, - "column": 1526 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6748, - "end": 6749, - "loc": { - "start": { - "line": 69, - "column": 1526 - }, - "end": { - "line": 69, - "column": 1527 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6749, - "end": 6750, - "loc": { - "start": { - "line": 69, - "column": 1527 - }, - "end": { - "line": 69, - "column": 1528 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6751, - "end": 6752, - "loc": { - "start": { - "line": 69, - "column": 1529 - }, - "end": { - "line": 69, - "column": 1530 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6752, - "end": 6753, - "loc": { - "start": { - "line": 69, - "column": 1530 - }, - "end": { - "line": 69, - "column": 1531 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6753, - "end": 6754, - "loc": { - "start": { - "line": 69, - "column": 1531 - }, - "end": { - "line": 69, - "column": 1532 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6754, - "end": 6755, - "loc": { - "start": { - "line": 69, - "column": 1532 - }, - "end": { - "line": 69, - "column": 1533 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 6755, - "end": 6756, - "loc": { - "start": { - "line": 69, - "column": 1533 - }, - "end": { - "line": 69, - "column": 1534 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6756, - "end": 6757, - "loc": { - "start": { - "line": 69, - "column": 1534 - }, - "end": { - "line": 69, - "column": 1535 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6757, - "end": 6761, - "loc": { - "start": { - "line": 69, - "column": 1535 - }, - "end": { - "line": 69, - "column": 1539 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6761, - "end": 6762, - "loc": { - "start": { - "line": 69, - "column": 1539 - }, - "end": { - "line": 69, - "column": 1540 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6762, - "end": 6763, - "loc": { - "start": { - "line": 69, - "column": 1540 - }, - "end": { - "line": 69, - "column": 1541 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 6763, - "end": 6768, - "loc": { - "start": { - "line": 69, - "column": 1541 - }, - "end": { - "line": 69, - "column": 1546 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6768, - "end": 6769, - "loc": { - "start": { - "line": 69, - "column": 1546 - }, - "end": { - "line": 69, - "column": 1547 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\s+", - "flags": "" - }, - "start": 6770, - "end": 6776, - "loc": { - "start": { - "line": 69, - "column": 1548 - }, - "end": { - "line": 69, - "column": 1554 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6776, - "end": 6777, - "loc": { - "start": { - "line": 69, - "column": 1554 - }, - "end": { - "line": 69, - "column": 1555 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6778, - "end": 6779, - "loc": { - "start": { - "line": 69, - "column": 1556 - }, - "end": { - "line": 69, - "column": 1557 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6779, - "end": 6780, - "loc": { - "start": { - "line": 69, - "column": 1557 - }, - "end": { - "line": 69, - "column": 1558 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": " \r\n\t ", - "start": 6781, - "end": 6794, - "loc": { - "start": { - "line": 69, - "column": 1559 - }, - "end": { - "line": 69, - "column": 1572 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6794, - "end": 6795, - "loc": { - "start": { - "line": 69, - "column": 1572 - }, - "end": { - "line": 69, - "column": 1573 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6795, - "end": 6796, - "loc": { - "start": { - "line": 69, - "column": 1573 - }, - "end": { - "line": 69, - "column": 1574 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6796, - "end": 6797, - "loc": { - "start": { - "line": 69, - "column": 1574 - }, - "end": { - "line": 69, - "column": 1575 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 6797, - "end": 6798, - "loc": { - "start": { - "line": 69, - "column": 1575 - }, - "end": { - "line": 69, - "column": 1576 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6798, - "end": 6799, - "loc": { - "start": { - "line": 69, - "column": 1576 - }, - "end": { - "line": 69, - "column": 1577 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 6799, - "end": 6803, - "loc": { - "start": { - "line": 69, - "column": 1577 - }, - "end": { - "line": 69, - "column": 1581 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6803, - "end": 6804, - "loc": { - "start": { - "line": 69, - "column": 1581 - }, - "end": { - "line": 69, - "column": 1582 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6804, - "end": 6805, - "loc": { - "start": { - "line": 69, - "column": 1582 - }, - "end": { - "line": 69, - "column": 1583 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lit", - "start": 6805, - "end": 6810, - "loc": { - "start": { - "line": 69, - "column": 1583 - }, - "end": { - "line": 69, - "column": 1588 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6810, - "end": 6811, - "loc": { - "start": { - "line": 69, - "column": 1588 - }, - "end": { - "line": 69, - "column": 1589 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^@[$_a-z][\\w$@]*", - "flags": "i" - }, - "start": 6812, - "end": 6831, - "loc": { - "start": { - "line": 69, - "column": 1590 - }, - "end": { - "line": 69, - "column": 1609 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6831, - "end": 6832, - "loc": { - "start": { - "line": 69, - "column": 1609 - }, - "end": { - "line": 69, - "column": 1610 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6833, - "end": 6834, - "loc": { - "start": { - "line": 69, - "column": 1611 - }, - "end": { - "line": 69, - "column": 1612 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6834, - "end": 6835, - "loc": { - "start": { - "line": 69, - "column": 1612 - }, - "end": { - "line": 69, - "column": 1613 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6835, - "end": 6836, - "loc": { - "start": { - "line": 69, - "column": 1613 - }, - "end": { - "line": 69, - "column": 1614 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6837, - "end": 6838, - "loc": { - "start": { - "line": 69, - "column": 1615 - }, - "end": { - "line": 69, - "column": 1616 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "typ", - "start": 6838, - "end": 6843, - "loc": { - "start": { - "line": 69, - "column": 1616 - }, - "end": { - "line": 69, - "column": 1621 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6843, - "end": 6844, - "loc": { - "start": { - "line": 69, - "column": 1621 - }, - "end": { - "line": 69, - "column": 1622 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:[@_]?[A-Z]+[a-z][\\w$@]*|\\w+_t\\b)", - "flags": "" - }, - "start": 6845, - "end": 6883, - "loc": { - "start": { - "line": 69, - "column": 1623 - }, - "end": { - "line": 69, - "column": 1661 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6883, - "end": 6884, - "loc": { - "start": { - "line": 69, - "column": 1661 - }, - "end": { - "line": 69, - "column": 1662 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6885, - "end": 6886, - "loc": { - "start": { - "line": 69, - "column": 1663 - }, - "end": { - "line": 69, - "column": 1664 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6886, - "end": 6887, - "loc": { - "start": { - "line": 69, - "column": 1664 - }, - "end": { - "line": 69, - "column": 1665 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6887, - "end": 6888, - "loc": { - "start": { - "line": 69, - "column": 1665 - }, - "end": { - "line": 69, - "column": 1666 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6889, - "end": 6890, - "loc": { - "start": { - "line": 69, - "column": 1667 - }, - "end": { - "line": 69, - "column": 1668 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 6890, - "end": 6895, - "loc": { - "start": { - "line": 69, - "column": 1668 - }, - "end": { - "line": 69, - "column": 1673 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6895, - "end": 6896, - "loc": { - "start": { - "line": 69, - "column": 1673 - }, - "end": { - "line": 69, - "column": 1674 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^[$_a-z][\\w$@]*", - "flags": "i" - }, - "start": 6897, - "end": 6915, - "loc": { - "start": { - "line": 69, - "column": 1675 - }, - "end": { - "line": 69, - "column": 1693 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6915, - "end": 6916, - "loc": { - "start": { - "line": 69, - "column": 1693 - }, - "end": { - "line": 69, - "column": 1694 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 6917, - "end": 6918, - "loc": { - "start": { - "line": 69, - "column": 1695 - }, - "end": { - "line": 69, - "column": 1696 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6918, - "end": 6919, - "loc": { - "start": { - "line": 69, - "column": 1696 - }, - "end": { - "line": 69, - "column": 1697 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6919, - "end": 6920, - "loc": { - "start": { - "line": 69, - "column": 1697 - }, - "end": { - "line": 69, - "column": 1698 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6921, - "end": 6922, - "loc": { - "start": { - "line": 69, - "column": 1699 - }, - "end": { - "line": 69, - "column": 1700 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lit", - "start": 6922, - "end": 6927, - "loc": { - "start": { - "line": 69, - "column": 1700 - }, - "end": { - "line": 69, - "column": 1705 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6927, - "end": 6928, - "loc": { - "start": { - "line": 69, - "column": 1705 - }, - "end": { - "line": 69, - "column": 1706 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:0x[\\da-f]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+-]?\\d+)?)[a-z]*", - "flags": "i" - }, - "start": 6929, - "end": 7003, - "loc": { - "start": { - "line": 69, - "column": 1707 - }, - "end": { - "line": 69, - "column": 1781 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7003, - "end": 7004, - "loc": { - "start": { - "line": 69, - "column": 1781 - }, - "end": { - "line": 69, - "column": 1782 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 7005, - "end": 7006, - "loc": { - "start": { - "line": 69, - "column": 1783 - }, - "end": { - "line": 69, - "column": 1784 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7006, - "end": 7007, - "loc": { - "start": { - "line": 69, - "column": 1784 - }, - "end": { - "line": 69, - "column": 1785 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "0123456789", - "start": 7008, - "end": 7020, - "loc": { - "start": { - "line": 69, - "column": 1786 - }, - "end": { - "line": 69, - "column": 1798 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7020, - "end": 7021, - "loc": { - "start": { - "line": 69, - "column": 1798 - }, - "end": { - "line": 69, - "column": 1799 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7021, - "end": 7022, - "loc": { - "start": { - "line": 69, - "column": 1799 - }, - "end": { - "line": 69, - "column": 1800 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7023, - "end": 7024, - "loc": { - "start": { - "line": 69, - "column": 1801 - }, - "end": { - "line": 69, - "column": 1802 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 7024, - "end": 7029, - "loc": { - "start": { - "line": 69, - "column": 1802 - }, - "end": { - "line": 69, - "column": 1807 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7029, - "end": 7030, - "loc": { - "start": { - "line": 69, - "column": 1807 - }, - "end": { - "line": 69, - "column": 1808 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\\\[\\S\\s]?", - "flags": "" - }, - "start": 7031, - "end": 7043, - "loc": { - "start": { - "line": 69, - "column": 1809 - }, - "end": { - "line": 69, - "column": 1821 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7043, - "end": 7044, - "loc": { - "start": { - "line": 69, - "column": 1821 - }, - "end": { - "line": 69, - "column": 1822 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 7045, - "end": 7046, - "loc": { - "start": { - "line": 69, - "column": 1823 - }, - "end": { - "line": 69, - "column": 1824 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7046, - "end": 7047, - "loc": { - "start": { - "line": 69, - "column": 1824 - }, - "end": { - "line": 69, - "column": 1825 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7047, - "end": 7048, - "loc": { - "start": { - "line": 69, - "column": 1825 - }, - "end": { - "line": 69, - "column": 1826 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7049, - "end": 7050, - "loc": { - "start": { - "line": 69, - "column": 1827 - }, - "end": { - "line": 69, - "column": 1828 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pun", - "start": 7050, - "end": 7055, - "loc": { - "start": { - "line": 69, - "column": 1828 - }, - "end": { - "line": 69, - "column": 1833 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7055, - "end": 7056, - "loc": { - "start": { - "line": 69, - "column": 1833 - }, - "end": { - "line": 69, - "column": 1834 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^.[^\\s\\w\"-$'./@\\\\`]*", - "flags": "" - }, - "start": 7057, - "end": 7079, - "loc": { - "start": { - "line": 69, - "column": 1835 - }, - "end": { - "line": 69, - "column": 1857 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7079, - "end": 7080, - "loc": { - "start": { - "line": 69, - "column": 1857 - }, - "end": { - "line": 69, - "column": 1858 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 7081, - "end": 7082, - "loc": { - "start": { - "line": 69, - "column": 1859 - }, - "end": { - "line": 69, - "column": 1860 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7082, - "end": 7083, - "loc": { - "start": { - "line": 69, - "column": 1860 - }, - "end": { - "line": 69, - "column": 1861 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7083, - "end": 7084, - "loc": { - "start": { - "line": 69, - "column": 1861 - }, - "end": { - "line": 69, - "column": 1862 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7084, - "end": 7085, - "loc": { - "start": { - "line": 69, - "column": 1862 - }, - "end": { - "line": 69, - "column": 1863 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7085, - "end": 7091, - "loc": { - "start": { - "line": 69, - "column": 1863 - }, - "end": { - "line": 69, - "column": 1869 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 7092, - "end": 7093, - "loc": { - "start": { - "line": 69, - "column": 1870 - }, - "end": { - "line": 69, - "column": 1871 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7093, - "end": 7094, - "loc": { - "start": { - "line": 69, - "column": 1871 - }, - "end": { - "line": 69, - "column": 1872 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 7094, - "end": 7095, - "loc": { - "start": { - "line": 69, - "column": 1872 - }, - "end": { - "line": 69, - "column": 1873 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7095, - "end": 7096, - "loc": { - "start": { - "line": 69, - "column": 1873 - }, - "end": { - "line": 69, - "column": 1874 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7097, - "end": 7098, - "loc": { - "start": { - "line": 69, - "column": 1875 - }, - "end": { - "line": 69, - "column": 1876 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7098, - "end": 7099, - "loc": { - "start": { - "line": 69, - "column": 1876 - }, - "end": { - "line": 69, - "column": 1877 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7099, - "end": 7100, - "loc": { - "start": { - "line": 69, - "column": 1877 - }, - "end": { - "line": 69, - "column": 1878 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7103, - "end": 7104, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 7104, - "end": 7112, - "loc": { - "start": { - "line": 70, - "column": 3 - }, - "end": { - "line": 70, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "D", - "start": 7113, - "end": 7114, - "loc": { - "start": { - "line": 70, - "column": 12 - }, - "end": { - "line": 70, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7114, - "end": 7115, - "loc": { - "start": { - "line": 70, - "column": 13 - }, - "end": { - "line": 70, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7115, - "end": 7116, - "loc": { - "start": { - "line": 70, - "column": 14 - }, - "end": { - "line": 70, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7116, - "end": 7117, - "loc": { - "start": { - "line": 70, - "column": 15 - }, - "end": { - "line": 70, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 7118, - "end": 7119, - "loc": { - "start": { - "line": 70, - "column": 17 - }, - "end": { - "line": 70, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7119, - "end": 7120, - "loc": { - "start": { - "line": 70, - "column": 18 - }, - "end": { - "line": 70, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7121, - "end": 7122, - "loc": { - "start": { - "line": 70, - "column": 20 - }, - "end": { - "line": 70, - "column": 21 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 7127, - "end": 7135, - "loc": { - "start": { - "line": 71, - "column": 4 - }, - "end": { - "line": 71, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7136, - "end": 7137, - "loc": { - "start": { - "line": 71, - "column": 13 - }, - "end": { - "line": 71, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7137, - "end": 7138, - "loc": { - "start": { - "line": 71, - "column": 14 - }, - "end": { - "line": 71, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7138, - "end": 7139, - "loc": { - "start": { - "line": 71, - "column": 15 - }, - "end": { - "line": 71, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7139, - "end": 7140, - "loc": { - "start": { - "line": 71, - "column": 16 - }, - "end": { - "line": 71, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7141, - "end": 7142, - "loc": { - "start": { - "line": 71, - "column": 18 - }, - "end": { - "line": 71, - "column": 19 - } - } - }, - { - "type": { - "label": "switch", - "keyword": "switch", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "switch", - "start": 7149, - "end": 7155, - "loc": { - "start": { - "line": 72, - "column": 6 - }, - "end": { - "line": 72, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7156, - "end": 7157, - "loc": { - "start": { - "line": 72, - "column": 13 - }, - "end": { - "line": 72, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7157, - "end": 7158, - "loc": { - "start": { - "line": 72, - "column": 14 - }, - "end": { - "line": 72, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7158, - "end": 7159, - "loc": { - "start": { - "line": 72, - "column": 15 - }, - "end": { - "line": 72, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeType", - "start": 7159, - "end": 7167, - "loc": { - "start": { - "line": 72, - "column": 16 - }, - "end": { - "line": 72, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7167, - "end": 7168, - "loc": { - "start": { - "line": 72, - "column": 24 - }, - "end": { - "line": 72, - "column": 25 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7169, - "end": 7170, - "loc": { - "start": { - "line": 72, - "column": 26 - }, - "end": { - "line": 72, - "column": 27 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 7170, - "end": 7174, - "loc": { - "start": { - "line": 72, - "column": 27 - }, - "end": { - "line": 72, - "column": 31 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 7175, - "end": 7176, - "loc": { - "start": { - "line": 72, - "column": 32 - }, - "end": { - "line": 72, - "column": 33 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7176, - "end": 7177, - "loc": { - "start": { - "line": 72, - "column": 33 - }, - "end": { - "line": 72, - "column": 34 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7188, - "end": 7190, - "loc": { - "start": { - "line": 73, - "column": 10 - }, - "end": { - "line": 73, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7191, - "end": 7192, - "loc": { - "start": { - "line": 73, - "column": 13 - }, - "end": { - "line": 73, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 7192, - "end": 7193, - "loc": { - "start": { - "line": 73, - "column": 14 - }, - "end": { - "line": 73, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7193, - "end": 7194, - "loc": { - "start": { - "line": 73, - "column": 15 - }, - "end": { - "line": 73, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 7194, - "end": 7198, - "loc": { - "start": { - "line": 73, - "column": 16 - }, - "end": { - "line": 73, - "column": 20 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7198, - "end": 7199, - "loc": { - "start": { - "line": 73, - "column": 20 - }, - "end": { - "line": 73, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7199, - "end": 7200, - "loc": { - "start": { - "line": 73, - "column": 21 - }, - "end": { - "line": 73, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7200, - "end": 7201, - "loc": { - "start": { - "line": 73, - "column": 22 - }, - "end": { - "line": 73, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 7201, - "end": 7210, - "loc": { - "start": { - "line": 73, - "column": 23 - }, - "end": { - "line": 73, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7210, - "end": 7211, - "loc": { - "start": { - "line": 73, - "column": 32 - }, - "end": { - "line": 73, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7211, - "end": 7212, - "loc": { - "start": { - "line": 73, - "column": 33 - }, - "end": { - "line": 73, - "column": 34 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 7213, - "end": 7218, - "loc": { - "start": { - "line": 73, - "column": 35 - }, - "end": { - "line": 73, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7218, - "end": 7219, - "loc": { - "start": { - "line": 73, - "column": 40 - }, - "end": { - "line": 73, - "column": 41 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7219, - "end": 7221, - "loc": { - "start": { - "line": 73, - "column": 41 - }, - "end": { - "line": 73, - "column": 43 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7222, - "end": 7223, - "loc": { - "start": { - "line": 73, - "column": 44 - }, - "end": { - "line": 73, - "column": 45 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BR", - "start": 7223, - "end": 7227, - "loc": { - "start": { - "line": 73, - "column": 45 - }, - "end": { - "line": 73, - "column": 49 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 7228, - "end": 7231, - "loc": { - "start": { - "line": 73, - "column": 50 - }, - "end": { - "line": 73, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7232, - "end": 7233, - "loc": { - "start": { - "line": 73, - "column": 54 - }, - "end": { - "line": 73, - "column": 55 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7233, - "end": 7234, - "loc": { - "start": { - "line": 73, - "column": 55 - }, - "end": { - "line": 73, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeName", - "start": 7234, - "end": 7242, - "loc": { - "start": { - "line": 73, - "column": 56 - }, - "end": { - "line": 73, - "column": 64 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7242, - "end": 7243, - "loc": { - "start": { - "line": 73, - "column": 64 - }, - "end": { - "line": 73, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7244, - "end": 7245, - "loc": { - "start": { - "line": 73, - "column": 66 - }, - "end": { - "line": 73, - "column": 67 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7245, - "end": 7246, - "loc": { - "start": { - "line": 73, - "column": 67 - }, - "end": { - "line": 73, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7246, - "end": 7247, - "loc": { - "start": { - "line": 73, - "column": 68 - }, - "end": { - "line": 73, - "column": 69 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7247, - "end": 7248, - "loc": { - "start": { - "line": 73, - "column": 69 - }, - "end": { - "line": 73, - "column": 70 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7248, - "end": 7249, - "loc": { - "start": { - "line": 73, - "column": 70 - }, - "end": { - "line": 73, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7250, - "end": 7251, - "loc": { - "start": { - "line": 73, - "column": 72 - }, - "end": { - "line": 73, - "column": 73 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7251, - "end": 7252, - "loc": { - "start": { - "line": 73, - "column": 73 - }, - "end": { - "line": 73, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 7252, - "end": 7262, - "loc": { - "start": { - "line": 73, - "column": 74 - }, - "end": { - "line": 73, - "column": 84 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 7263, - "end": 7265, - "loc": { - "start": { - "line": 73, - "column": 85 - }, - "end": { - "line": 73, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7266, - "end": 7267, - "loc": { - "start": { - "line": 73, - "column": 88 - }, - "end": { - "line": 73, - "column": 89 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7267, - "end": 7268, - "loc": { - "start": { - "line": 73, - "column": 89 - }, - "end": { - "line": 73, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 7268, - "end": 7278, - "loc": { - "start": { - "line": 73, - "column": 90 - }, - "end": { - "line": 73, - "column": 100 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7278, - "end": 7279, - "loc": { - "start": { - "line": 73, - "column": 100 - }, - "end": { - "line": 73, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "removeChild", - "start": 7279, - "end": 7290, - "loc": { - "start": { - "line": 73, - "column": 101 - }, - "end": { - "line": 73, - "column": 112 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7290, - "end": 7291, - "loc": { - "start": { - "line": 73, - "column": 112 - }, - "end": { - "line": 73, - "column": 113 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7291, - "end": 7292, - "loc": { - "start": { - "line": 73, - "column": 113 - }, - "end": { - "line": 73, - "column": 114 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7292, - "end": 7293, - "loc": { - "start": { - "line": 73, - "column": 114 - }, - "end": { - "line": 73, - "column": 115 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7293, - "end": 7294, - "loc": { - "start": { - "line": 73, - "column": 115 - }, - "end": { - "line": 73, - "column": 116 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 7294, - "end": 7298, - "loc": { - "start": { - "line": 73, - "column": 116 - }, - "end": { - "line": 73, - "column": 120 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 7299, - "end": 7302, - "loc": { - "start": { - "line": 73, - "column": 121 - }, - "end": { - "line": 73, - "column": 124 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7303, - "end": 7304, - "loc": { - "start": { - "line": 73, - "column": 125 - }, - "end": { - "line": 73, - "column": 126 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7304, - "end": 7305, - "loc": { - "start": { - "line": 73, - "column": 126 - }, - "end": { - "line": 73, - "column": 127 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7306, - "end": 7307, - "loc": { - "start": { - "line": 73, - "column": 128 - }, - "end": { - "line": 73, - "column": 129 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7308, - "end": 7309, - "loc": { - "start": { - "line": 73, - "column": 130 - }, - "end": { - "line": 73, - "column": 131 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7309, - "end": 7310, - "loc": { - "start": { - "line": 73, - "column": 131 - }, - "end": { - "line": 73, - "column": 132 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 7310, - "end": 7320, - "loc": { - "start": { - "line": 73, - "column": 132 - }, - "end": { - "line": 73, - "column": 142 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7320, - "end": 7321, - "loc": { - "start": { - "line": 73, - "column": 142 - }, - "end": { - "line": 73, - "column": 143 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7322, - "end": 7323, - "loc": { - "start": { - "line": 73, - "column": 144 - }, - "end": { - "line": 73, - "column": 145 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7323, - "end": 7324, - "loc": { - "start": { - "line": 73, - "column": 145 - }, - "end": { - "line": 73, - "column": 146 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7325, - "end": 7326, - "loc": { - "start": { - "line": 73, - "column": 147 - }, - "end": { - "line": 73, - "column": 148 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7327, - "end": 7328, - "loc": { - "start": { - "line": 73, - "column": 149 - }, - "end": { - "line": 73, - "column": 150 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7329, - "end": 7330, - "loc": { - "start": { - "line": 73, - "column": 151 - }, - "end": { - "line": 73, - "column": 152 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7330, - "end": 7331, - "loc": { - "start": { - "line": 73, - "column": 152 - }, - "end": { - "line": 73, - "column": 153 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 7331, - "end": 7342, - "loc": { - "start": { - "line": 73, - "column": 153 - }, - "end": { - "line": 73, - "column": 164 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7342, - "end": 7343, - "loc": { - "start": { - "line": 73, - "column": 164 - }, - "end": { - "line": 73, - "column": 165 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7344, - "end": 7345, - "loc": { - "start": { - "line": 73, - "column": 166 - }, - "end": { - "line": 73, - "column": 167 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7345, - "end": 7346, - "loc": { - "start": { - "line": 73, - "column": 167 - }, - "end": { - "line": 73, - "column": 168 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7346, - "end": 7347, - "loc": { - "start": { - "line": 73, - "column": 168 - }, - "end": { - "line": 73, - "column": 169 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7347, - "end": 7348, - "loc": { - "start": { - "line": 73, - "column": 169 - }, - "end": { - "line": 73, - "column": 170 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7348, - "end": 7349, - "loc": { - "start": { - "line": 73, - "column": 170 - }, - "end": { - "line": 73, - "column": 171 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 7349, - "end": 7354, - "loc": { - "start": { - "line": 73, - "column": 171 - }, - "end": { - "line": 73, - "column": 176 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7354, - "end": 7355, - "loc": { - "start": { - "line": 73, - "column": 176 - }, - "end": { - "line": 73, - "column": 177 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 7355, - "end": 7359, - "loc": { - "start": { - "line": 73, - "column": 177 - }, - "end": { - "line": 73, - "column": 181 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 7360, - "end": 7361, - "loc": { - "start": { - "line": 73, - "column": 182 - }, - "end": { - "line": 73, - "column": 183 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7361, - "end": 7362, - "loc": { - "start": { - "line": 73, - "column": 183 - }, - "end": { - "line": 73, - "column": 184 - } - } - }, - { - "type": { - "label": "case", - "keyword": "case", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case", - "start": 7362, - "end": 7366, - "loc": { - "start": { - "line": 73, - "column": 184 - }, - "end": { - "line": 73, - "column": 188 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 4, - "start": 7367, - "end": 7368, - "loc": { - "start": { - "line": 73, - "column": 189 - }, - "end": { - "line": 73, - "column": 190 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7368, - "end": 7369, - "loc": { - "start": { - "line": 73, - "column": 190 - }, - "end": { - "line": 73, - "column": 191 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7380, - "end": 7382, - "loc": { - "start": { - "line": 74, - "column": 10 - }, - "end": { - "line": 74, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7383, - "end": 7384, - "loc": { - "start": { - "line": 74, - "column": 13 - }, - "end": { - "line": 74, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 7384, - "end": 7385, - "loc": { - "start": { - "line": 74, - "column": 14 - }, - "end": { - "line": 74, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7385, - "end": 7386, - "loc": { - "start": { - "line": 74, - "column": 15 - }, - "end": { - "line": 74, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7387, - "end": 7388, - "loc": { - "start": { - "line": 74, - "column": 17 - }, - "end": { - "line": 74, - "column": 18 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 7401, - "end": 7404, - "loc": { - "start": { - "line": 75, - "column": 12 - }, - "end": { - "line": 75, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7405, - "end": 7406, - "loc": { - "start": { - "line": 75, - "column": 16 - }, - "end": { - "line": 75, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7407, - "end": 7408, - "loc": { - "start": { - "line": 75, - "column": 18 - }, - "end": { - "line": 75, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7409, - "end": 7410, - "loc": { - "start": { - "line": 75, - "column": 20 - }, - "end": { - "line": 75, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7410, - "end": 7411, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeValue", - "start": 7411, - "end": 7420, - "loc": { - "start": { - "line": 75, - "column": 22 - }, - "end": { - "line": 75, - "column": 31 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7420, - "end": 7421, - "loc": { - "start": { - "line": 75, - "column": 31 - }, - "end": { - "line": 75, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7438, - "end": 7439, - "loc": { - "start": { - "line": 76, - "column": 16 - }, - "end": { - "line": 76, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7440, - "end": 7441, - "loc": { - "start": { - "line": 76, - "column": 18 - }, - "end": { - "line": 76, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7442, - "end": 7443, - "loc": { - "start": { - "line": 76, - "column": 20 - }, - "end": { - "line": 76, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7443, - "end": 7444, - "loc": { - "start": { - "line": 76, - "column": 21 - }, - "end": { - "line": 76, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 7444, - "end": 7449, - "loc": { - "start": { - "line": 76, - "column": 22 - }, - "end": { - "line": 76, - "column": 27 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7449, - "end": 7450, - "loc": { - "start": { - "line": 76, - "column": 27 - }, - "end": { - "line": 76, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 7450, - "end": 7451, - "loc": { - "start": { - "line": 76, - "column": 28 - }, - "end": { - "line": 76, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7451, - "end": 7452, - "loc": { - "start": { - "line": 76, - "column": 29 - }, - "end": { - "line": 76, - "column": 30 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7452, - "end": 7453, - "loc": { - "start": { - "line": 76, - "column": 30 - }, - "end": { - "line": 76, - "column": 31 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7453, - "end": 7455, - "loc": { - "start": { - "line": 76, - "column": 31 - }, - "end": { - "line": 76, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7456, - "end": 7457, - "loc": { - "start": { - "line": 76, - "column": 34 - }, - "end": { - "line": 76, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7457, - "end": 7458, - "loc": { - "start": { - "line": 76, - "column": 35 - }, - "end": { - "line": 76, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7458, - "end": 7459, - "loc": { - "start": { - "line": 76, - "column": 36 - }, - "end": { - "line": 76, - "column": 37 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7460, - "end": 7461, - "loc": { - "start": { - "line": 76, - "column": 38 - }, - "end": { - "line": 76, - "column": 39 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 7476, - "end": 7479, - "loc": { - "start": { - "line": 77, - "column": 14 - }, - "end": { - "line": 77, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 7480, - "end": 7481, - "loc": { - "start": { - "line": 77, - "column": 18 - }, - "end": { - "line": 77, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7482, - "end": 7483, - "loc": { - "start": { - "line": 77, - "column": 20 - }, - "end": { - "line": 77, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7484, - "end": 7485, - "loc": { - "start": { - "line": 77, - "column": 22 - }, - "end": { - "line": 77, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7485, - "end": 7486, - "loc": { - "start": { - "line": 77, - "column": 23 - }, - "end": { - "line": 77, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 7486, - "end": 7495, - "loc": { - "start": { - "line": 77, - "column": 24 - }, - "end": { - "line": 77, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7495, - "end": 7496, - "loc": { - "start": { - "line": 77, - "column": 33 - }, - "end": { - "line": 77, - "column": 34 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 7496, - "end": 7497, - "loc": { - "start": { - "line": 77, - "column": 34 - }, - "end": { - "line": 77, - "column": 35 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7497, - "end": 7498, - "loc": { - "start": { - "line": 77, - "column": 35 - }, - "end": { - "line": 77, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7499, - "end": 7500, - "loc": { - "start": { - "line": 77, - "column": 37 - }, - "end": { - "line": 77, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7500, - "end": 7501, - "loc": { - "start": { - "line": 77, - "column": 38 - }, - "end": { - "line": 77, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "index", - "start": 7501, - "end": 7506, - "loc": { - "start": { - "line": 77, - "column": 39 - }, - "end": { - "line": 77, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7506, - "end": 7507, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 77, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7507, - "end": 7508, - "loc": { - "start": { - "line": 77, - "column": 45 - }, - "end": { - "line": 77, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7508, - "end": 7509, - "loc": { - "start": { - "line": 77, - "column": 46 - }, - "end": { - "line": 77, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7509, - "end": 7510, - "loc": { - "start": { - "line": 77, - "column": 47 - }, - "end": { - "line": 77, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeValue", - "start": 7510, - "end": 7519, - "loc": { - "start": { - "line": 77, - "column": 48 - }, - "end": { - "line": 77, - "column": 57 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7520, - "end": 7521, - "loc": { - "start": { - "line": 77, - "column": 58 - }, - "end": { - "line": 77, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 7522, - "end": 7523, - "loc": { - "start": { - "line": 77, - "column": 60 - }, - "end": { - "line": 77, - "column": 61 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7523, - "end": 7524, - "loc": { - "start": { - "line": 77, - "column": 61 - }, - "end": { - "line": 77, - "column": 62 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7524, - "end": 7525, - "loc": { - "start": { - "line": 77, - "column": 62 - }, - "end": { - "line": 77, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7525, - "end": 7526, - "loc": { - "start": { - "line": 77, - "column": 63 - }, - "end": { - "line": 77, - "column": 64 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7527, - "end": 7528, - "loc": { - "start": { - "line": 77, - "column": 65 - }, - "end": { - "line": 77, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7529, - "end": 7530, - "loc": { - "start": { - "line": 77, - "column": 67 - }, - "end": { - "line": 77, - "column": 68 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7530, - "end": 7531, - "loc": { - "start": { - "line": 77, - "column": 68 - }, - "end": { - "line": 77, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 7531, - "end": 7540, - "loc": { - "start": { - "line": 77, - "column": 69 - }, - "end": { - "line": 77, - "column": 78 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7540, - "end": 7541, - "loc": { - "start": { - "line": 77, - "column": 78 - }, - "end": { - "line": 77, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7541, - "end": 7542, - "loc": { - "start": { - "line": 77, - "column": 79 - }, - "end": { - "line": 77, - "column": 80 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7542, - "end": 7543, - "loc": { - "start": { - "line": 77, - "column": 80 - }, - "end": { - "line": 77, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "index", - "start": 7543, - "end": 7548, - "loc": { - "start": { - "line": 77, - "column": 81 - }, - "end": { - "line": 77, - "column": 86 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 7549, - "end": 7550, - "loc": { - "start": { - "line": 77, - "column": 87 - }, - "end": { - "line": 77, - "column": 88 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7551, - "end": 7552, - "loc": { - "start": { - "line": 77, - "column": 89 - }, - "end": { - "line": 77, - "column": 90 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7552, - "end": 7553, - "loc": { - "start": { - "line": 77, - "column": 90 - }, - "end": { - "line": 77, - "column": 91 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 7553, - "end": 7554, - "loc": { - "start": { - "line": 77, - "column": 91 - }, - "end": { - "line": 77, - "column": 92 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7554, - "end": 7555, - "loc": { - "start": { - "line": 77, - "column": 92 - }, - "end": { - "line": 77, - "column": 93 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7555, - "end": 7556, - "loc": { - "start": { - "line": 77, - "column": 93 - }, - "end": { - "line": 77, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 7556, - "end": 7562, - "loc": { - "start": { - "line": 77, - "column": 94 - }, - "end": { - "line": 77, - "column": 100 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7562, - "end": 7563, - "loc": { - "start": { - "line": 77, - "column": 100 - }, - "end": { - "line": 77, - "column": 101 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7563, - "end": 7564, - "loc": { - "start": { - "line": 77, - "column": 101 - }, - "end": { - "line": 77, - "column": 102 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 7565, - "end": 7567, - "loc": { - "start": { - "line": 77, - "column": 103 - }, - "end": { - "line": 77, - "column": 105 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7568, - "end": 7569, - "loc": { - "start": { - "line": 77, - "column": 106 - }, - "end": { - "line": 77, - "column": 107 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7569, - "end": 7570, - "loc": { - "start": { - "line": 77, - "column": 107 - }, - "end": { - "line": 77, - "column": 108 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 7570, - "end": 7580, - "loc": { - "start": { - "line": 77, - "column": 108 - }, - "end": { - "line": 77, - "column": 118 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7580, - "end": 7581, - "loc": { - "start": { - "line": 77, - "column": 118 - }, - "end": { - "line": 77, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "insertBefore", - "start": 7581, - "end": 7593, - "loc": { - "start": { - "line": 77, - "column": 119 - }, - "end": { - "line": 77, - "column": 131 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7593, - "end": 7594, - "loc": { - "start": { - "line": 77, - "column": 131 - }, - "end": { - "line": 77, - "column": 132 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 7594, - "end": 7595, - "loc": { - "start": { - "line": 77, - "column": 132 - }, - "end": { - "line": 77, - "column": 133 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7595, - "end": 7596, - "loc": { - "start": { - "line": 77, - "column": 133 - }, - "end": { - "line": 77, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createTextNode", - "start": 7596, - "end": 7610, - "loc": { - "start": { - "line": 77, - "column": 134 - }, - "end": { - "line": 77, - "column": 148 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7610, - "end": 7611, - "loc": { - "start": { - "line": 77, - "column": 148 - }, - "end": { - "line": 77, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7611, - "end": 7612, - "loc": { - "start": { - "line": 77, - "column": 149 - }, - "end": { - "line": 77, - "column": 150 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7612, - "end": 7613, - "loc": { - "start": { - "line": 77, - "column": 150 - }, - "end": { - "line": 77, - "column": 151 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7613, - "end": 7614, - "loc": { - "start": { - "line": 77, - "column": 151 - }, - "end": { - "line": 77, - "column": 152 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7615, - "end": 7616, - "loc": { - "start": { - "line": 77, - "column": 153 - }, - "end": { - "line": 77, - "column": 154 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7616, - "end": 7617, - "loc": { - "start": { - "line": 77, - "column": 154 - }, - "end": { - "line": 77, - "column": 155 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 7617, - "end": 7628, - "loc": { - "start": { - "line": 77, - "column": 155 - }, - "end": { - "line": 77, - "column": 166 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7628, - "end": 7629, - "loc": { - "start": { - "line": 77, - "column": 166 - }, - "end": { - "line": 77, - "column": 167 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7629, - "end": 7630, - "loc": { - "start": { - "line": 77, - "column": 167 - }, - "end": { - "line": 77, - "column": 168 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7630, - "end": 7631, - "loc": { - "start": { - "line": 77, - "column": 168 - }, - "end": { - "line": 77, - "column": 169 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7631, - "end": 7632, - "loc": { - "start": { - "line": 77, - "column": 169 - }, - "end": { - "line": 77, - "column": 170 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7632, - "end": 7633, - "loc": { - "start": { - "line": 77, - "column": 170 - }, - "end": { - "line": 77, - "column": 171 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7633, - "end": 7634, - "loc": { - "start": { - "line": 77, - "column": 171 - }, - "end": { - "line": 77, - "column": 172 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7634, - "end": 7635, - "loc": { - "start": { - "line": 77, - "column": 172 - }, - "end": { - "line": 77, - "column": 173 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 7635, - "end": 7636, - "loc": { - "start": { - "line": 77, - "column": 173 - }, - "end": { - "line": 77, - "column": 174 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 7637, - "end": 7639, - "loc": { - "start": { - "line": 77, - "column": 175 - }, - "end": { - "line": 77, - "column": 177 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7640, - "end": 7641, - "loc": { - "start": { - "line": 77, - "column": 178 - }, - "end": { - "line": 77, - "column": 179 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7641, - "end": 7642, - "loc": { - "start": { - "line": 77, - "column": 179 - }, - "end": { - "line": 77, - "column": 180 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 7642, - "end": 7652, - "loc": { - "start": { - "line": 77, - "column": 180 - }, - "end": { - "line": 77, - "column": 190 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7652, - "end": 7653, - "loc": { - "start": { - "line": 77, - "column": 190 - }, - "end": { - "line": 77, - "column": 191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "removeChild", - "start": 7653, - "end": 7664, - "loc": { - "start": { - "line": 77, - "column": 191 - }, - "end": { - "line": 77, - "column": 202 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7664, - "end": 7665, - "loc": { - "start": { - "line": 77, - "column": 202 - }, - "end": { - "line": 77, - "column": 203 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7665, - "end": 7666, - "loc": { - "start": { - "line": 77, - "column": 203 - }, - "end": { - "line": 77, - "column": 204 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7666, - "end": 7667, - "loc": { - "start": { - "line": 77, - "column": 204 - }, - "end": { - "line": 77, - "column": 205 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7667, - "end": 7668, - "loc": { - "start": { - "line": 77, - "column": 205 - }, - "end": { - "line": 77, - "column": 206 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7681, - "end": 7682, - "loc": { - "start": { - "line": 78, - "column": 12 - }, - "end": { - "line": 78, - "column": 13 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7693, - "end": 7694, - "loc": { - "start": { - "line": 79, - "column": 10 - }, - "end": { - "line": 79, - "column": 11 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7694, - "end": 7695, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 12 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7700, - "end": 7701, - "loc": { - "start": { - "line": 80, - "column": 4 - }, - "end": { - "line": 80, - "column": 5 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 7701, - "end": 7709, - "loc": { - "start": { - "line": 80, - "column": 5 - }, - "end": { - "line": 80, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7710, - "end": 7711, - "loc": { - "start": { - "line": 80, - "column": 14 - }, - "end": { - "line": 80, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7711, - "end": 7712, - "loc": { - "start": { - "line": 80, - "column": 15 - }, - "end": { - "line": 80, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7712, - "end": 7713, - "loc": { - "start": { - "line": 80, - "column": 16 - }, - "end": { - "line": 80, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7713, - "end": 7714, - "loc": { - "start": { - "line": 80, - "column": 17 - }, - "end": { - "line": 80, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7715, - "end": 7716, - "loc": { - "start": { - "line": 80, - "column": 19 - }, - "end": { - "line": 80, - "column": 20 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 7723, - "end": 7731, - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 81, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7732, - "end": 7733, - "loc": { - "start": { - "line": 81, - "column": 15 - }, - "end": { - "line": 81, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7733, - "end": 7734, - "loc": { - "start": { - "line": 81, - "column": 16 - }, - "end": { - "line": 81, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7734, - "end": 7735, - "loc": { - "start": { - "line": 81, - "column": 17 - }, - "end": { - "line": 81, - "column": 18 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7735, - "end": 7736, - "loc": { - "start": { - "line": 81, - "column": 18 - }, - "end": { - "line": 81, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7737, - "end": 7738, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 21 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7738, - "end": 7739, - "loc": { - "start": { - "line": 81, - "column": 21 - }, - "end": { - "line": 81, - "column": 22 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7740, - "end": 7741, - "loc": { - "start": { - "line": 81, - "column": 23 - }, - "end": { - "line": 81, - "column": 24 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 7750, - "end": 7753, - "loc": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7754, - "end": 7755, - "loc": { - "start": { - "line": 82, - "column": 12 - }, - "end": { - "line": 82, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7756, - "end": 7757, - "loc": { - "start": { - "line": 82, - "column": 14 - }, - "end": { - "line": 82, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 7758, - "end": 7759, - "loc": { - "start": { - "line": 82, - "column": 16 - }, - "end": { - "line": 82, - "column": 17 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7760, - "end": 7761, - "loc": { - "start": { - "line": 82, - "column": 18 - }, - "end": { - "line": 82, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7762, - "end": 7763, - "loc": { - "start": { - "line": 82, - "column": 20 - }, - "end": { - "line": 82, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7763, - "end": 7764, - "loc": { - "start": { - "line": 82, - "column": 21 - }, - "end": { - "line": 82, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cloneNode", - "start": 7764, - "end": 7773, - "loc": { - "start": { - "line": 82, - "column": 22 - }, - "end": { - "line": 82, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7773, - "end": 7774, - "loc": { - "start": { - "line": 82, - "column": 31 - }, - "end": { - "line": 82, - "column": 32 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 7774, - "end": 7775, - "loc": { - "start": { - "line": 82, - "column": 32 - }, - "end": { - "line": 82, - "column": 33 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 7775, - "end": 7776, - "loc": { - "start": { - "line": 82, - "column": 33 - }, - "end": { - "line": 82, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7776, - "end": 7777, - "loc": { - "start": { - "line": 82, - "column": 34 - }, - "end": { - "line": 82, - "column": 35 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7778, - "end": 7779, - "loc": { - "start": { - "line": 82, - "column": 36 - }, - "end": { - "line": 82, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7780, - "end": 7781, - "loc": { - "start": { - "line": 82, - "column": 38 - }, - "end": { - "line": 82, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7781, - "end": 7782, - "loc": { - "start": { - "line": 82, - "column": 39 - }, - "end": { - "line": 82, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7795, - "end": 7796, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7797, - "end": 7798, - "loc": { - "start": { - "line": 83, - "column": 14 - }, - "end": { - "line": 83, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7799, - "end": 7800, - "loc": { - "start": { - "line": 83, - "column": 16 - }, - "end": { - "line": 83, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7800, - "end": 7801, - "loc": { - "start": { - "line": 83, - "column": 17 - }, - "end": { - "line": 83, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 7801, - "end": 7811, - "loc": { - "start": { - "line": 83, - "column": 18 - }, - "end": { - "line": 83, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7811, - "end": 7812, - "loc": { - "start": { - "line": 83, - "column": 28 - }, - "end": { - "line": 83, - "column": 29 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7812, - "end": 7814, - "loc": { - "start": { - "line": 83, - "column": 29 - }, - "end": { - "line": 83, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7815, - "end": 7816, - "loc": { - "start": { - "line": 83, - "column": 32 - }, - "end": { - "line": 83, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7816, - "end": 7817, - "loc": { - "start": { - "line": 83, - "column": 33 - }, - "end": { - "line": 83, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7817, - "end": 7818, - "loc": { - "start": { - "line": 83, - "column": 34 - }, - "end": { - "line": 83, - "column": 35 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7819, - "end": 7820, - "loc": { - "start": { - "line": 83, - "column": 36 - }, - "end": { - "line": 83, - "column": 37 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 7831, - "end": 7834, - "loc": { - "start": { - "line": 84, - "column": 10 - }, - "end": { - "line": 84, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7835, - "end": 7836, - "loc": { - "start": { - "line": 84, - "column": 14 - }, - "end": { - "line": 84, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7837, - "end": 7838, - "loc": { - "start": { - "line": 84, - "column": 16 - }, - "end": { - "line": 84, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 7839, - "end": 7840, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7840, - "end": 7841, - "loc": { - "start": { - "line": 84, - "column": 19 - }, - "end": { - "line": 84, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7841, - "end": 7842, - "loc": { - "start": { - "line": 84, - "column": 20 - }, - "end": { - "line": 84, - "column": 21 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7842, - "end": 7843, - "loc": { - "start": { - "line": 84, - "column": 21 - }, - "end": { - "line": 84, - "column": 22 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 7844, - "end": 7845, - "loc": { - "start": { - "line": 84, - "column": 23 - }, - "end": { - "line": 84, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7845, - "end": 7846, - "loc": { - "start": { - "line": 84, - "column": 24 - }, - "end": { - "line": 84, - "column": 25 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7846, - "end": 7847, - "loc": { - "start": { - "line": 84, - "column": 25 - }, - "end": { - "line": 84, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 7862, - "end": 7863, - "loc": { - "start": { - "line": 85, - "column": 14 - }, - "end": { - "line": 85, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7864, - "end": 7865, - "loc": { - "start": { - "line": 85, - "column": 16 - }, - "end": { - "line": 85, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 7866, - "end": 7867, - "loc": { - "start": { - "line": 85, - "column": 18 - }, - "end": { - "line": 85, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7867, - "end": 7868, - "loc": { - "start": { - "line": 85, - "column": 19 - }, - "end": { - "line": 85, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 7868, - "end": 7879, - "loc": { - "start": { - "line": 85, - "column": 20 - }, - "end": { - "line": 85, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7879, - "end": 7880, - "loc": { - "start": { - "line": 85, - "column": 31 - }, - "end": { - "line": 85, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7880, - "end": 7881, - "loc": { - "start": { - "line": 85, - "column": 32 - }, - "end": { - "line": 85, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7881, - "end": 7882, - "loc": { - "start": { - "line": 85, - "column": 33 - }, - "end": { - "line": 85, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 7882, - "end": 7893, - "loc": { - "start": { - "line": 85, - "column": 34 - }, - "end": { - "line": 85, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7893, - "end": 7894, - "loc": { - "start": { - "line": 85, - "column": 45 - }, - "end": { - "line": 85, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7894, - "end": 7895, - "loc": { - "start": { - "line": 85, - "column": 46 - }, - "end": { - "line": 85, - "column": 47 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7895, - "end": 7896, - "loc": { - "start": { - "line": 85, - "column": 47 - }, - "end": { - "line": 85, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7896, - "end": 7897, - "loc": { - "start": { - "line": 85, - "column": 48 - }, - "end": { - "line": 85, - "column": 49 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 7897, - "end": 7900, - "loc": { - "start": { - "line": 85, - "column": 49 - }, - "end": { - "line": 85, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7901, - "end": 7902, - "loc": { - "start": { - "line": 85, - "column": 53 - }, - "end": { - "line": 85, - "column": 54 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 7902, - "end": 7905, - "loc": { - "start": { - "line": 85, - "column": 54 - }, - "end": { - "line": 85, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7906, - "end": 7907, - "loc": { - "start": { - "line": 85, - "column": 58 - }, - "end": { - "line": 85, - "column": 59 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7908, - "end": 7909, - "loc": { - "start": { - "line": 85, - "column": 60 - }, - "end": { - "line": 85, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 7910, - "end": 7911, - "loc": { - "start": { - "line": 85, - "column": 62 - }, - "end": { - "line": 85, - "column": 63 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7911, - "end": 7912, - "loc": { - "start": { - "line": 85, - "column": 63 - }, - "end": { - "line": 85, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7913, - "end": 7914, - "loc": { - "start": { - "line": 85, - "column": 65 - }, - "end": { - "line": 85, - "column": 66 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7914, - "end": 7915, - "loc": { - "start": { - "line": 85, - "column": 66 - }, - "end": { - "line": 85, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7916, - "end": 7917, - "loc": { - "start": { - "line": 85, - "column": 68 - }, - "end": { - "line": 85, - "column": 69 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7918, - "end": 7919, - "loc": { - "start": { - "line": 85, - "column": 70 - }, - "end": { - "line": 85, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 7920, - "end": 7921, - "loc": { - "start": { - "line": 85, - "column": 72 - }, - "end": { - "line": 85, - "column": 73 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7921, - "end": 7922, - "loc": { - "start": { - "line": 85, - "column": 73 - }, - "end": { - "line": 85, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 7923, - "end": 7924, - "loc": { - "start": { - "line": 85, - "column": 75 - }, - "end": { - "line": 85, - "column": 76 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7925, - "end": 7926, - "loc": { - "start": { - "line": 85, - "column": 77 - }, - "end": { - "line": 85, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7927, - "end": 7928, - "loc": { - "start": { - "line": 85, - "column": 79 - }, - "end": { - "line": 85, - "column": 80 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7928, - "end": 7929, - "loc": { - "start": { - "line": 85, - "column": 80 - }, - "end": { - "line": 85, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 7929, - "end": 7940, - "loc": { - "start": { - "line": 85, - "column": 81 - }, - "end": { - "line": 85, - "column": 92 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7940, - "end": 7941, - "loc": { - "start": { - "line": 85, - "column": 92 - }, - "end": { - "line": 85, - "column": 93 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 7942, - "end": 7943, - "loc": { - "start": { - "line": 85, - "column": 94 - }, - "end": { - "line": 85, - "column": 95 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7943, - "end": 7944, - "loc": { - "start": { - "line": 85, - "column": 95 - }, - "end": { - "line": 85, - "column": 96 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 7944, - "end": 7955, - "loc": { - "start": { - "line": 85, - "column": 96 - }, - "end": { - "line": 85, - "column": 107 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7955, - "end": 7956, - "loc": { - "start": { - "line": 85, - "column": 107 - }, - "end": { - "line": 85, - "column": 108 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 7956, - "end": 7957, - "loc": { - "start": { - "line": 85, - "column": 108 - }, - "end": { - "line": 85, - "column": 109 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7957, - "end": 7958, - "loc": { - "start": { - "line": 85, - "column": 109 - }, - "end": { - "line": 85, - "column": 110 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7958, - "end": 7959, - "loc": { - "start": { - "line": 85, - "column": 110 - }, - "end": { - "line": 85, - "column": 111 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7968, - "end": 7969, - "loc": { - "start": { - "line": 86, - "column": 8 - }, - "end": { - "line": 86, - "column": 9 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7969, - "end": 7975, - "loc": { - "start": { - "line": 86, - "column": 9 - }, - "end": { - "line": 86, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 7976, - "end": 7977, - "loc": { - "start": { - "line": 86, - "column": 16 - }, - "end": { - "line": 86, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7977, - "end": 7978, - "loc": { - "start": { - "line": 86, - "column": 17 - }, - "end": { - "line": 86, - "column": 18 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7985, - "end": 7986, - "loc": { - "start": { - "line": 87, - "column": 6 - }, - "end": { - "line": 87, - "column": 7 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 7993, - "end": 7996, - "loc": { - "start": { - "line": 88, - "column": 6 - }, - "end": { - "line": 88, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7997, - "end": 7998, - "loc": { - "start": { - "line": 88, - "column": 10 - }, - "end": { - "line": 88, - "column": 11 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7998, - "end": 7999, - "loc": { - "start": { - "line": 88, - "column": 11 - }, - "end": { - "line": 88, - "column": 12 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 8000, - "end": 8001, - "loc": { - "start": { - "line": 88, - "column": 13 - }, - "end": { - "line": 88, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8001, - "end": 8002, - "loc": { - "start": { - "line": 88, - "column": 14 - }, - "end": { - "line": 88, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8002, - "end": 8003, - "loc": { - "start": { - "line": 88, - "column": 15 - }, - "end": { - "line": 88, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 8003, - "end": 8014, - "loc": { - "start": { - "line": 88, - "column": 16 - }, - "end": { - "line": 88, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8014, - "end": 8015, - "loc": { - "start": { - "line": 88, - "column": 27 - }, - "end": { - "line": 88, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8015, - "end": 8016, - "loc": { - "start": { - "line": 88, - "column": 28 - }, - "end": { - "line": 88, - "column": 29 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 8017, - "end": 8019, - "loc": { - "start": { - "line": 88, - "column": 30 - }, - "end": { - "line": 88, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8020, - "end": 8021, - "loc": { - "start": { - "line": 88, - "column": 33 - }, - "end": { - "line": 88, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8021, - "end": 8022, - "loc": { - "start": { - "line": 88, - "column": 34 - }, - "end": { - "line": 88, - "column": 35 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8023, - "end": 8024, - "loc": { - "start": { - "line": 88, - "column": 36 - }, - "end": { - "line": 88, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8025, - "end": 8026, - "loc": { - "start": { - "line": 88, - "column": 38 - }, - "end": { - "line": 88, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8026, - "end": 8027, - "loc": { - "start": { - "line": 88, - "column": 39 - }, - "end": { - "line": 88, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 8027, - "end": 8037, - "loc": { - "start": { - "line": 88, - "column": 40 - }, - "end": { - "line": 88, - "column": 50 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8037, - "end": 8038, - "loc": { - "start": { - "line": 88, - "column": 50 - }, - "end": { - "line": 88, - "column": 51 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 8039, - "end": 8040, - "loc": { - "start": { - "line": 88, - "column": 52 - }, - "end": { - "line": 88, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8040, - "end": 8041, - "loc": { - "start": { - "line": 88, - "column": 53 - }, - "end": { - "line": 88, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8041, - "end": 8042, - "loc": { - "start": { - "line": 88, - "column": 54 - }, - "end": { - "line": 88, - "column": 55 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 8043, - "end": 8049, - "loc": { - "start": { - "line": 88, - "column": 56 - }, - "end": { - "line": 88, - "column": 62 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8049, - "end": 8050, - "loc": { - "start": { - "line": 88, - "column": 62 - }, - "end": { - "line": 88, - "column": 63 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 8050, - "end": 8053, - "loc": { - "start": { - "line": 88, - "column": 63 - }, - "end": { - "line": 88, - "column": 66 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8054, - "end": 8055, - "loc": { - "start": { - "line": 88, - "column": 67 - }, - "end": { - "line": 88, - "column": 68 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8055, - "end": 8058, - "loc": { - "start": { - "line": 88, - "column": 68 - }, - "end": { - "line": 88, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8059, - "end": 8060, - "loc": { - "start": { - "line": 88, - "column": 72 - }, - "end": { - "line": 88, - "column": 73 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8061, - "end": 8062, - "loc": { - "start": { - "line": 88, - "column": 74 - }, - "end": { - "line": 88, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 8063, - "end": 8064, - "loc": { - "start": { - "line": 88, - "column": 76 - }, - "end": { - "line": 88, - "column": 77 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8064, - "end": 8065, - "loc": { - "start": { - "line": 88, - "column": 77 - }, - "end": { - "line": 88, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8065, - "end": 8066, - "loc": { - "start": { - "line": 88, - "column": 78 - }, - "end": { - "line": 88, - "column": 79 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8066, - "end": 8067, - "loc": { - "start": { - "line": 88, - "column": 79 - }, - "end": { - "line": 88, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 8067, - "end": 8078, - "loc": { - "start": { - "line": 88, - "column": 80 - }, - "end": { - "line": 88, - "column": 91 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8078, - "end": 8079, - "loc": { - "start": { - "line": 88, - "column": 91 - }, - "end": { - "line": 88, - "column": 92 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8080, - "end": 8081, - "loc": { - "start": { - "line": 88, - "column": 93 - }, - "end": { - "line": 88, - "column": 94 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8081, - "end": 8082, - "loc": { - "start": { - "line": 88, - "column": 94 - }, - "end": { - "line": 88, - "column": 95 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8082, - "end": 8083, - "loc": { - "start": { - "line": 88, - "column": 95 - }, - "end": { - "line": 88, - "column": 96 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8084, - "end": 8085, - "loc": { - "start": { - "line": 88, - "column": 97 - }, - "end": { - "line": 88, - "column": 98 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8085, - "end": 8086, - "loc": { - "start": { - "line": 88, - "column": 98 - }, - "end": { - "line": 88, - "column": 99 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8087, - "end": 8088, - "loc": { - "start": { - "line": 88, - "column": 100 - }, - "end": { - "line": 88, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8088, - "end": 8089, - "loc": { - "start": { - "line": 88, - "column": 101 - }, - "end": { - "line": 88, - "column": 102 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8090, - "end": 8091, - "loc": { - "start": { - "line": 88, - "column": 103 - }, - "end": { - "line": 88, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8092, - "end": 8093, - "loc": { - "start": { - "line": 88, - "column": 105 - }, - "end": { - "line": 88, - "column": 106 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8093, - "end": 8094, - "loc": { - "start": { - "line": 88, - "column": 106 - }, - "end": { - "line": 88, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 8094, - "end": 8104, - "loc": { - "start": { - "line": 88, - "column": 107 - }, - "end": { - "line": 88, - "column": 117 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8104, - "end": 8105, - "loc": { - "start": { - "line": 88, - "column": 117 - }, - "end": { - "line": 88, - "column": 118 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 8106, - "end": 8108, - "loc": { - "start": { - "line": 88, - "column": 119 - }, - "end": { - "line": 88, - "column": 121 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8109, - "end": 8110, - "loc": { - "start": { - "line": 88, - "column": 122 - }, - "end": { - "line": 88, - "column": 123 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8110, - "end": 8111, - "loc": { - "start": { - "line": 88, - "column": 123 - }, - "end": { - "line": 88, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeType", - "start": 8111, - "end": 8119, - "loc": { - "start": { - "line": 88, - "column": 124 - }, - "end": { - "line": 88, - "column": 132 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 8120, - "end": 8123, - "loc": { - "start": { - "line": 88, - "column": 133 - }, - "end": { - "line": 88, - "column": 136 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 8124, - "end": 8125, - "loc": { - "start": { - "line": 88, - "column": 137 - }, - "end": { - "line": 88, - "column": 138 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8125, - "end": 8126, - "loc": { - "start": { - "line": 88, - "column": 138 - }, - "end": { - "line": 88, - "column": 139 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8126, - "end": 8127, - "loc": { - "start": { - "line": 88, - "column": 139 - }, - "end": { - "line": 88, - "column": 140 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8128, - "end": 8129, - "loc": { - "start": { - "line": 88, - "column": 141 - }, - "end": { - "line": 88, - "column": 142 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8130, - "end": 8131, - "loc": { - "start": { - "line": 88, - "column": 143 - }, - "end": { - "line": 88, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8132, - "end": 8133, - "loc": { - "start": { - "line": 88, - "column": 145 - }, - "end": { - "line": 88, - "column": 146 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8133, - "end": 8134, - "loc": { - "start": { - "line": 88, - "column": 146 - }, - "end": { - "line": 88, - "column": 147 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8134, - "end": 8135, - "loc": { - "start": { - "line": 88, - "column": 147 - }, - "end": { - "line": 88, - "column": 148 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8135, - "end": 8136, - "loc": { - "start": { - "line": 88, - "column": 148 - }, - "end": { - "line": 88, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 8136, - "end": 8140, - "loc": { - "start": { - "line": 88, - "column": 149 - }, - "end": { - "line": 88, - "column": 153 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8140, - "end": 8141, - "loc": { - "start": { - "line": 88, - "column": 153 - }, - "end": { - "line": 88, - "column": 154 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8141, - "end": 8142, - "loc": { - "start": { - "line": 88, - "column": 154 - }, - "end": { - "line": 88, - "column": 155 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8142, - "end": 8143, - "loc": { - "start": { - "line": 88, - "column": 155 - }, - "end": { - "line": 88, - "column": 156 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8143, - "end": 8144, - "loc": { - "start": { - "line": 88, - "column": 156 - }, - "end": { - "line": 88, - "column": 157 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8149, - "end": 8150, - "loc": { - "start": { - "line": 89, - "column": 4 - }, - "end": { - "line": 89, - "column": 5 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8150, - "end": 8153, - "loc": { - "start": { - "line": 89, - "column": 5 - }, - "end": { - "line": 89, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 8154, - "end": 8155, - "loc": { - "start": { - "line": 89, - "column": 9 - }, - "end": { - "line": 89, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8156, - "end": 8157, - "loc": { - "start": { - "line": 89, - "column": 11 - }, - "end": { - "line": 89, - "column": 12 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "(?:^|\\s)nocode(?:\\s|$)", - "flags": "" - }, - "start": 8158, - "end": 8182, - "loc": { - "start": { - "line": 89, - "column": 13 - }, - "end": { - "line": 89, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8182, - "end": 8183, - "loc": { - "start": { - "line": 89, - "column": 37 - }, - "end": { - "line": 89, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 8192, - "end": 8193, - "loc": { - "start": { - "line": 90, - "column": 8 - }, - "end": { - "line": 90, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8194, - "end": 8195, - "loc": { - "start": { - "line": 90, - "column": 10 - }, - "end": { - "line": 90, - "column": 11 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\r\\n?|\\n", - "flags": "" - }, - "start": 8196, - "end": 8206, - "loc": { - "start": { - "line": 90, - "column": 12 - }, - "end": { - "line": 90, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8206, - "end": 8207, - "loc": { - "start": { - "line": 90, - "column": 22 - }, - "end": { - "line": 90, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 8216, - "end": 8217, - "loc": { - "start": { - "line": 91, - "column": 8 - }, - "end": { - "line": 91, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8218, - "end": 8219, - "loc": { - "start": { - "line": 91, - "column": 10 - }, - "end": { - "line": 91, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8220, - "end": 8221, - "loc": { - "start": { - "line": 91, - "column": 12 - }, - "end": { - "line": 91, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8221, - "end": 8222, - "loc": { - "start": { - "line": 91, - "column": 13 - }, - "end": { - "line": 91, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ownerDocument", - "start": 8222, - "end": 8235, - "loc": { - "start": { - "line": 91, - "column": 14 - }, - "end": { - "line": 91, - "column": 27 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8235, - "end": 8236, - "loc": { - "start": { - "line": 91, - "column": 27 - }, - "end": { - "line": 91, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8245, - "end": 8246, - "loc": { - "start": { - "line": 92, - "column": 8 - }, - "end": { - "line": 92, - "column": 9 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8246, - "end": 8247, - "loc": { - "start": { - "line": 92, - "column": 9 - }, - "end": { - "line": 92, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8247, - "end": 8248, - "loc": { - "start": { - "line": 92, - "column": 10 - }, - "end": { - "line": 92, - "column": 11 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8248, - "end": 8249, - "loc": { - "start": { - "line": 92, - "column": 11 - }, - "end": { - "line": 92, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentStyle", - "start": 8249, - "end": 8261, - "loc": { - "start": { - "line": 92, - "column": 12 - }, - "end": { - "line": 92, - "column": 24 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8262, - "end": 8263, - "loc": { - "start": { - "line": 92, - "column": 25 - }, - "end": { - "line": 92, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8264, - "end": 8265, - "loc": { - "start": { - "line": 92, - "column": 27 - }, - "end": { - "line": 92, - "column": 28 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8266, - "end": 8267, - "loc": { - "start": { - "line": 92, - "column": 29 - }, - "end": { - "line": 92, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8268, - "end": 8269, - "loc": { - "start": { - "line": 92, - "column": 31 - }, - "end": { - "line": 92, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8269, - "end": 8270, - "loc": { - "start": { - "line": 92, - "column": 32 - }, - "end": { - "line": 92, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentStyle", - "start": 8270, - "end": 8282, - "loc": { - "start": { - "line": 92, - "column": 33 - }, - "end": { - "line": 92, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8282, - "end": 8283, - "loc": { - "start": { - "line": 92, - "column": 45 - }, - "end": { - "line": 92, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "whiteSpace", - "start": 8283, - "end": 8293, - "loc": { - "start": { - "line": 92, - "column": 46 - }, - "end": { - "line": 92, - "column": 56 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8294, - "end": 8295, - "loc": { - "start": { - "line": 92, - "column": 57 - }, - "end": { - "line": 92, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 8296, - "end": 8302, - "loc": { - "start": { - "line": 92, - "column": 59 - }, - "end": { - "line": 92, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8302, - "end": 8303, - "loc": { - "start": { - "line": 92, - "column": 65 - }, - "end": { - "line": 92, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getComputedStyle", - "start": 8303, - "end": 8319, - "loc": { - "start": { - "line": 92, - "column": 66 - }, - "end": { - "line": 92, - "column": 82 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 8320, - "end": 8322, - "loc": { - "start": { - "line": 92, - "column": 83 - }, - "end": { - "line": 92, - "column": 85 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8323, - "end": 8324, - "loc": { - "start": { - "line": 92, - "column": 86 - }, - "end": { - "line": 92, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8324, - "end": 8325, - "loc": { - "start": { - "line": 92, - "column": 87 - }, - "end": { - "line": 92, - "column": 88 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8326, - "end": 8327, - "loc": { - "start": { - "line": 92, - "column": 89 - }, - "end": { - "line": 92, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 8328, - "end": 8329, - "loc": { - "start": { - "line": 92, - "column": 91 - }, - "end": { - "line": 92, - "column": 92 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8329, - "end": 8330, - "loc": { - "start": { - "line": 92, - "column": 92 - }, - "end": { - "line": 92, - "column": 93 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "defaultView", - "start": 8330, - "end": 8341, - "loc": { - "start": { - "line": 92, - "column": 93 - }, - "end": { - "line": 92, - "column": 104 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8341, - "end": 8342, - "loc": { - "start": { - "line": 92, - "column": 104 - }, - "end": { - "line": 92, - "column": 105 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getComputedStyle", - "start": 8342, - "end": 8358, - "loc": { - "start": { - "line": 92, - "column": 105 - }, - "end": { - "line": 92, - "column": 121 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8358, - "end": 8359, - "loc": { - "start": { - "line": 92, - "column": 121 - }, - "end": { - "line": 92, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8359, - "end": 8360, - "loc": { - "start": { - "line": 92, - "column": 122 - }, - "end": { - "line": 92, - "column": 123 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8360, - "end": 8361, - "loc": { - "start": { - "line": 92, - "column": 123 - }, - "end": { - "line": 92, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 8362, - "end": 8363, - "loc": { - "start": { - "line": 92, - "column": 125 - }, - "end": { - "line": 92, - "column": 126 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8363, - "end": 8364, - "loc": { - "start": { - "line": 92, - "column": 126 - }, - "end": { - "line": 92, - "column": 127 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8364, - "end": 8365, - "loc": { - "start": { - "line": 92, - "column": 127 - }, - "end": { - "line": 92, - "column": 128 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getPropertyValue", - "start": 8365, - "end": 8381, - "loc": { - "start": { - "line": 92, - "column": 128 - }, - "end": { - "line": 92, - "column": 144 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8381, - "end": 8382, - "loc": { - "start": { - "line": 92, - "column": 144 - }, - "end": { - "line": 92, - "column": 145 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "white-space", - "start": 8382, - "end": 8395, - "loc": { - "start": { - "line": 92, - "column": 145 - }, - "end": { - "line": 92, - "column": 158 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8395, - "end": 8396, - "loc": { - "start": { - "line": 92, - "column": 158 - }, - "end": { - "line": 92, - "column": 159 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8396, - "end": 8397, - "loc": { - "start": { - "line": 92, - "column": 159 - }, - "end": { - "line": 92, - "column": 160 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8397, - "end": 8398, - "loc": { - "start": { - "line": 92, - "column": 160 - }, - "end": { - "line": 92, - "column": 161 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8398, - "end": 8401, - "loc": { - "start": { - "line": 92, - "column": 161 - }, - "end": { - "line": 92, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 8402, - "end": 8403, - "loc": { - "start": { - "line": 92, - "column": 165 - }, - "end": { - "line": 92, - "column": 166 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8404, - "end": 8405, - "loc": { - "start": { - "line": 92, - "column": 167 - }, - "end": { - "line": 92, - "column": 168 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8406, - "end": 8407, - "loc": { - "start": { - "line": 92, - "column": 169 - }, - "end": { - "line": 92, - "column": 170 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 8408, - "end": 8410, - "loc": { - "start": { - "line": 92, - "column": 171 - }, - "end": { - "line": 92, - "column": 173 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pre", - "start": 8411, - "end": 8416, - "loc": { - "start": { - "line": 92, - "column": 174 - }, - "end": { - "line": 92, - "column": 179 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 8417, - "end": 8420, - "loc": { - "start": { - "line": 92, - "column": 180 - }, - "end": { - "line": 92, - "column": 183 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8421, - "end": 8422, - "loc": { - "start": { - "line": 92, - "column": 184 - }, - "end": { - "line": 92, - "column": 185 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8422, - "end": 8423, - "loc": { - "start": { - "line": 92, - "column": 185 - }, - "end": { - "line": 92, - "column": 186 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 8423, - "end": 8432, - "loc": { - "start": { - "line": 92, - "column": 186 - }, - "end": { - "line": 92, - "column": 195 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8432, - "end": 8433, - "loc": { - "start": { - "line": 92, - "column": 195 - }, - "end": { - "line": 92, - "column": 196 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8433, - "end": 8434, - "loc": { - "start": { - "line": 92, - "column": 196 - }, - "end": { - "line": 92, - "column": 197 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8434, - "end": 8435, - "loc": { - "start": { - "line": 92, - "column": 197 - }, - "end": { - "line": 92, - "column": 198 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 8436, - "end": 8437, - "loc": { - "start": { - "line": 92, - "column": 199 - }, - "end": { - "line": 92, - "column": 200 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8437, - "end": 8438, - "loc": { - "start": { - "line": 92, - "column": 200 - }, - "end": { - "line": 92, - "column": 201 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8438, - "end": 8439, - "loc": { - "start": { - "line": 92, - "column": 201 - }, - "end": { - "line": 92, - "column": 202 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 8439, - "end": 8442, - "loc": { - "start": { - "line": 92, - "column": 202 - }, - "end": { - "line": 92, - "column": 205 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8443, - "end": 8444, - "loc": { - "start": { - "line": 92, - "column": 206 - }, - "end": { - "line": 92, - "column": 207 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8444, - "end": 8445, - "loc": { - "start": { - "line": 92, - "column": 207 - }, - "end": { - "line": 92, - "column": 208 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8446, - "end": 8447, - "loc": { - "start": { - "line": 92, - "column": 209 - }, - "end": { - "line": 92, - "column": 210 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 8448, - "end": 8449, - "loc": { - "start": { - "line": 92, - "column": 211 - }, - "end": { - "line": 92, - "column": 212 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8449, - "end": 8450, - "loc": { - "start": { - "line": 92, - "column": 212 - }, - "end": { - "line": 92, - "column": 213 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createElement", - "start": 8450, - "end": 8463, - "loc": { - "start": { - "line": 92, - "column": 213 - }, - "end": { - "line": 92, - "column": 226 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8463, - "end": 8464, - "loc": { - "start": { - "line": 92, - "column": 226 - }, - "end": { - "line": 92, - "column": 227 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "LI", - "start": 8464, - "end": 8468, - "loc": { - "start": { - "line": 92, - "column": 227 - }, - "end": { - "line": 92, - "column": 231 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8468, - "end": 8469, - "loc": { - "start": { - "line": 92, - "column": 231 - }, - "end": { - "line": 92, - "column": 232 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8469, - "end": 8470, - "loc": { - "start": { - "line": 92, - "column": 232 - }, - "end": { - "line": 92, - "column": 233 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8471, - "end": 8472, - "loc": { - "start": { - "line": 92, - "column": 234 - }, - "end": { - "line": 92, - "column": 235 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8472, - "end": 8473, - "loc": { - "start": { - "line": 92, - "column": 235 - }, - "end": { - "line": 92, - "column": 236 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 8473, - "end": 8483, - "loc": { - "start": { - "line": 92, - "column": 236 - }, - "end": { - "line": 92, - "column": 246 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8483, - "end": 8484, - "loc": { - "start": { - "line": 92, - "column": 246 - }, - "end": { - "line": 92, - "column": 247 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8484, - "end": 8485, - "loc": { - "start": { - "line": 92, - "column": 247 - }, - "end": { - "line": 92, - "column": 248 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8486, - "end": 8487, - "loc": { - "start": { - "line": 92, - "column": 249 - }, - "end": { - "line": 92, - "column": 250 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8487, - "end": 8488, - "loc": { - "start": { - "line": 92, - "column": 250 - }, - "end": { - "line": 92, - "column": 251 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 8488, - "end": 8499, - "loc": { - "start": { - "line": 92, - "column": 251 - }, - "end": { - "line": 92, - "column": 262 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8499, - "end": 8500, - "loc": { - "start": { - "line": 92, - "column": 262 - }, - "end": { - "line": 92, - "column": 263 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8500, - "end": 8501, - "loc": { - "start": { - "line": 92, - "column": 263 - }, - "end": { - "line": 92, - "column": 264 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8501, - "end": 8502, - "loc": { - "start": { - "line": 92, - "column": 264 - }, - "end": { - "line": 92, - "column": 265 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 8502, - "end": 8512, - "loc": { - "start": { - "line": 92, - "column": 265 - }, - "end": { - "line": 92, - "column": 275 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8512, - "end": 8513, - "loc": { - "start": { - "line": 92, - "column": 275 - }, - "end": { - "line": 92, - "column": 276 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8513, - "end": 8514, - "loc": { - "start": { - "line": 92, - "column": 276 - }, - "end": { - "line": 92, - "column": 277 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 8514, - "end": 8517, - "loc": { - "start": { - "line": 92, - "column": 277 - }, - "end": { - "line": 92, - "column": 280 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8518, - "end": 8519, - "loc": { - "start": { - "line": 92, - "column": 281 - }, - "end": { - "line": 92, - "column": 282 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8519, - "end": 8522, - "loc": { - "start": { - "line": 92, - "column": 282 - }, - "end": { - "line": 92, - "column": 285 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8523, - "end": 8524, - "loc": { - "start": { - "line": 92, - "column": 286 - }, - "end": { - "line": 92, - "column": 287 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8525, - "end": 8526, - "loc": { - "start": { - "line": 92, - "column": 288 - }, - "end": { - "line": 92, - "column": 289 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8527, - "end": 8528, - "loc": { - "start": { - "line": 92, - "column": 290 - }, - "end": { - "line": 92, - "column": 291 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8528, - "end": 8529, - "loc": { - "start": { - "line": 92, - "column": 291 - }, - "end": { - "line": 92, - "column": 292 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8529, - "end": 8530, - "loc": { - "start": { - "line": 92, - "column": 292 - }, - "end": { - "line": 92, - "column": 293 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8530, - "end": 8531, - "loc": { - "start": { - "line": 92, - "column": 293 - }, - "end": { - "line": 92, - "column": 294 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8532, - "end": 8533, - "loc": { - "start": { - "line": 92, - "column": 295 - }, - "end": { - "line": 92, - "column": 296 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8534, - "end": 8535, - "loc": { - "start": { - "line": 92, - "column": 297 - }, - "end": { - "line": 92, - "column": 298 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8536, - "end": 8537, - "loc": { - "start": { - "line": 92, - "column": 299 - }, - "end": { - "line": 92, - "column": 300 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8537, - "end": 8538, - "loc": { - "start": { - "line": 92, - "column": 300 - }, - "end": { - "line": 92, - "column": 301 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8539, - "end": 8540, - "loc": { - "start": { - "line": 92, - "column": 302 - }, - "end": { - "line": 92, - "column": 303 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 8541, - "end": 8542, - "loc": { - "start": { - "line": 92, - "column": 304 - }, - "end": { - "line": 92, - "column": 305 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8543, - "end": 8544, - "loc": { - "start": { - "line": 92, - "column": 306 - }, - "end": { - "line": 92, - "column": 307 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8544, - "end": 8545, - "loc": { - "start": { - "line": 92, - "column": 307 - }, - "end": { - "line": 92, - "column": 308 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 8545, - "end": 8551, - "loc": { - "start": { - "line": 92, - "column": 308 - }, - "end": { - "line": 92, - "column": 314 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8551, - "end": 8552, - "loc": { - "start": { - "line": 92, - "column": 314 - }, - "end": { - "line": 92, - "column": 315 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 8553, - "end": 8555, - "loc": { - "start": { - "line": 92, - "column": 316 - }, - "end": { - "line": 92, - "column": 318 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8555, - "end": 8556, - "loc": { - "start": { - "line": 92, - "column": 318 - }, - "end": { - "line": 92, - "column": 319 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8556, - "end": 8557, - "loc": { - "start": { - "line": 92, - "column": 319 - }, - "end": { - "line": 92, - "column": 320 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8558, - "end": 8559, - "loc": { - "start": { - "line": 92, - "column": 321 - }, - "end": { - "line": 92, - "column": 322 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8559, - "end": 8560, - "loc": { - "start": { - "line": 92, - "column": 322 - }, - "end": { - "line": 92, - "column": 323 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8560, - "end": 8561, - "loc": { - "start": { - "line": 92, - "column": 323 - }, - "end": { - "line": 92, - "column": 324 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8561, - "end": 8562, - "loc": { - "start": { - "line": 92, - "column": 324 - }, - "end": { - "line": 92, - "column": 325 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8562, - "end": 8563, - "loc": { - "start": { - "line": 92, - "column": 325 - }, - "end": { - "line": 92, - "column": 326 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8563, - "end": 8564, - "loc": { - "start": { - "line": 92, - "column": 326 - }, - "end": { - "line": 92, - "column": 327 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8564, - "end": 8565, - "loc": { - "start": { - "line": 92, - "column": 327 - }, - "end": { - "line": 92, - "column": 328 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8565, - "end": 8566, - "loc": { - "start": { - "line": 92, - "column": 328 - }, - "end": { - "line": 92, - "column": 329 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8566, - "end": 8567, - "loc": { - "start": { - "line": 92, - "column": 329 - }, - "end": { - "line": 92, - "column": 330 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 8568, - "end": 8571, - "loc": { - "start": { - "line": 92, - "column": 331 - }, - "end": { - "line": 92, - "column": 334 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8572, - "end": 8573, - "loc": { - "start": { - "line": 92, - "column": 335 - }, - "end": { - "line": 92, - "column": 336 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8573, - "end": 8574, - "loc": { - "start": { - "line": 92, - "column": 336 - }, - "end": { - "line": 92, - "column": 337 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 8575, - "end": 8576, - "loc": { - "start": { - "line": 92, - "column": 338 - }, - "end": { - "line": 92, - "column": 339 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8577, - "end": 8578, - "loc": { - "start": { - "line": 92, - "column": 340 - }, - "end": { - "line": 92, - "column": 341 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8578, - "end": 8579, - "loc": { - "start": { - "line": 92, - "column": 341 - }, - "end": { - "line": 92, - "column": 342 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 8580, - "end": 8582, - "loc": { - "start": { - "line": 92, - "column": 343 - }, - "end": { - "line": 92, - "column": 345 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8583, - "end": 8584, - "loc": { - "start": { - "line": 92, - "column": 346 - }, - "end": { - "line": 92, - "column": 347 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8584, - "end": 8585, - "loc": { - "start": { - "line": 92, - "column": 347 - }, - "end": { - "line": 92, - "column": 348 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8585, - "end": 8586, - "loc": { - "start": { - "line": 92, - "column": 348 - }, - "end": { - "line": 92, - "column": 349 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8586, - "end": 8587, - "loc": { - "start": { - "line": 92, - "column": 349 - }, - "end": { - "line": 92, - "column": 350 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8587, - "end": 8588, - "loc": { - "start": { - "line": 92, - "column": 350 - }, - "end": { - "line": 92, - "column": 351 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "setAttribute", - "start": 8588, - "end": 8600, - "loc": { - "start": { - "line": 92, - "column": 351 - }, - "end": { - "line": 92, - "column": 363 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8600, - "end": 8601, - "loc": { - "start": { - "line": 92, - "column": 363 - }, - "end": { - "line": 92, - "column": 364 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "value", - "start": 8601, - "end": 8608, - "loc": { - "start": { - "line": 92, - "column": 364 - }, - "end": { - "line": 92, - "column": 371 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8608, - "end": 8609, - "loc": { - "start": { - "line": 92, - "column": 371 - }, - "end": { - "line": 92, - "column": 372 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8610, - "end": 8611, - "loc": { - "start": { - "line": 92, - "column": 373 - }, - "end": { - "line": 92, - "column": 374 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8611, - "end": 8612, - "loc": { - "start": { - "line": 92, - "column": 374 - }, - "end": { - "line": 92, - "column": 375 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8612, - "end": 8613, - "loc": { - "start": { - "line": 92, - "column": 375 - }, - "end": { - "line": 92, - "column": 376 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8613, - "end": 8616, - "loc": { - "start": { - "line": 92, - "column": 376 - }, - "end": { - "line": 92, - "column": 379 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 8617, - "end": 8618, - "loc": { - "start": { - "line": 92, - "column": 380 - }, - "end": { - "line": 92, - "column": 381 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8619, - "end": 8620, - "loc": { - "start": { - "line": 92, - "column": 382 - }, - "end": { - "line": 92, - "column": 383 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 8621, - "end": 8622, - "loc": { - "start": { - "line": 92, - "column": 384 - }, - "end": { - "line": 92, - "column": 385 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8622, - "end": 8623, - "loc": { - "start": { - "line": 92, - "column": 385 - }, - "end": { - "line": 92, - "column": 386 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createElement", - "start": 8623, - "end": 8636, - "loc": { - "start": { - "line": 92, - "column": 386 - }, - "end": { - "line": 92, - "column": 399 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8636, - "end": 8637, - "loc": { - "start": { - "line": 92, - "column": 399 - }, - "end": { - "line": 92, - "column": 400 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "OL", - "start": 8637, - "end": 8641, - "loc": { - "start": { - "line": 92, - "column": 400 - }, - "end": { - "line": 92, - "column": 404 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8641, - "end": 8642, - "loc": { - "start": { - "line": 92, - "column": 404 - }, - "end": { - "line": 92, - "column": 405 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8642, - "end": 8643, - "loc": { - "start": { - "line": 92, - "column": 405 - }, - "end": { - "line": 92, - "column": 406 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 8643, - "end": 8644, - "loc": { - "start": { - "line": 92, - "column": 406 - }, - "end": { - "line": 92, - "column": 407 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8644, - "end": 8645, - "loc": { - "start": { - "line": 92, - "column": 407 - }, - "end": { - "line": 92, - "column": 408 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 8645, - "end": 8654, - "loc": { - "start": { - "line": 92, - "column": 408 - }, - "end": { - "line": 92, - "column": 417 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8655, - "end": 8656, - "loc": { - "start": { - "line": 92, - "column": 418 - }, - "end": { - "line": 92, - "column": 419 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "linenums", - "start": 8657, - "end": 8667, - "loc": { - "start": { - "line": 92, - "column": 420 - }, - "end": { - "line": 92, - "column": 430 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8667, - "end": 8668, - "loc": { - "start": { - "line": 92, - "column": 430 - }, - "end": { - "line": 92, - "column": 431 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 8668, - "end": 8671, - "loc": { - "start": { - "line": 92, - "column": 431 - }, - "end": { - "line": 92, - "column": 434 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8672, - "end": 8673, - "loc": { - "start": { - "line": 92, - "column": 435 - }, - "end": { - "line": 92, - "column": 436 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8673, - "end": 8676, - "loc": { - "start": { - "line": 92, - "column": 436 - }, - "end": { - "line": 92, - "column": 439 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 8677, - "end": 8678, - "loc": { - "start": { - "line": 92, - "column": 440 - }, - "end": { - "line": 92, - "column": 441 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8679, - "end": 8680, - "loc": { - "start": { - "line": 92, - "column": 442 - }, - "end": { - "line": 92, - "column": 443 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 8681, - "end": 8685, - "loc": { - "start": { - "line": 92, - "column": 444 - }, - "end": { - "line": 92, - "column": 448 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8685, - "end": 8686, - "loc": { - "start": { - "line": 92, - "column": 448 - }, - "end": { - "line": 92, - "column": 449 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "max", - "start": 8686, - "end": 8689, - "loc": { - "start": { - "line": 92, - "column": 449 - }, - "end": { - "line": 92, - "column": 452 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8689, - "end": 8690, - "loc": { - "start": { - "line": 92, - "column": 452 - }, - "end": { - "line": 92, - "column": 453 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8690, - "end": 8691, - "loc": { - "start": { - "line": 92, - "column": 453 - }, - "end": { - "line": 92, - "column": 454 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8691, - "end": 8692, - "loc": { - "start": { - "line": 92, - "column": 454 - }, - "end": { - "line": 92, - "column": 455 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8693, - "end": 8694, - "loc": { - "start": { - "line": 92, - "column": 456 - }, - "end": { - "line": 92, - "column": 457 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 8695, - "end": 8696, - "loc": { - "start": { - "line": 92, - "column": 458 - }, - "end": { - "line": 92, - "column": 459 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 8697, - "end": 8698, - "loc": { - "start": { - "line": 92, - "column": 460 - }, - "end": { - "line": 92, - "column": 461 - } - } - }, - { - "type": { - "label": "|", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 3, - "updateContext": null - }, - "value": "|", - "start": 8699, - "end": 8700, - "loc": { - "start": { - "line": 92, - "column": 462 - }, - "end": { - "line": 92, - "column": 463 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8701, - "end": 8702, - "loc": { - "start": { - "line": 92, - "column": 464 - }, - "end": { - "line": 92, - "column": 465 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8702, - "end": 8703, - "loc": { - "start": { - "line": 92, - "column": 465 - }, - "end": { - "line": 92, - "column": 466 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 8704, - "end": 8706, - "loc": { - "start": { - "line": 92, - "column": 467 - }, - "end": { - "line": 92, - "column": 469 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8707, - "end": 8708, - "loc": { - "start": { - "line": 92, - "column": 470 - }, - "end": { - "line": 92, - "column": 471 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8708, - "end": 8709, - "loc": { - "start": { - "line": 92, - "column": 471 - }, - "end": { - "line": 92, - "column": 472 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8710, - "end": 8711, - "loc": { - "start": { - "line": 92, - "column": 473 - }, - "end": { - "line": 92, - "column": 474 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8712, - "end": 8713, - "loc": { - "start": { - "line": 92, - "column": 475 - }, - "end": { - "line": 92, - "column": 476 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8714, - "end": 8715, - "loc": { - "start": { - "line": 92, - "column": 477 - }, - "end": { - "line": 92, - "column": 478 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8715, - "end": 8716, - "loc": { - "start": { - "line": 92, - "column": 478 - }, - "end": { - "line": 92, - "column": 479 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 8717, - "end": 8718, - "loc": { - "start": { - "line": 92, - "column": 480 - }, - "end": { - "line": 92, - "column": 481 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8719, - "end": 8720, - "loc": { - "start": { - "line": 92, - "column": 482 - }, - "end": { - "line": 92, - "column": 483 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8721, - "end": 8722, - "loc": { - "start": { - "line": 92, - "column": 484 - }, - "end": { - "line": 92, - "column": 485 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8722, - "end": 8723, - "loc": { - "start": { - "line": 92, - "column": 485 - }, - "end": { - "line": 92, - "column": 486 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 8723, - "end": 8729, - "loc": { - "start": { - "line": 92, - "column": 486 - }, - "end": { - "line": 92, - "column": 492 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8729, - "end": 8730, - "loc": { - "start": { - "line": 92, - "column": 492 - }, - "end": { - "line": 92, - "column": 493 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8731, - "end": 8732, - "loc": { - "start": { - "line": 92, - "column": 494 - }, - "end": { - "line": 92, - "column": 495 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 8733, - "end": 8734, - "loc": { - "start": { - "line": 92, - "column": 496 - }, - "end": { - "line": 92, - "column": 497 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 8735, - "end": 8736, - "loc": { - "start": { - "line": 92, - "column": 498 - }, - "end": { - "line": 92, - "column": 499 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8736, - "end": 8737, - "loc": { - "start": { - "line": 92, - "column": 499 - }, - "end": { - "line": 92, - "column": 500 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 8738, - "end": 8740, - "loc": { - "start": { - "line": 92, - "column": 501 - }, - "end": { - "line": 92, - "column": 503 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8740, - "end": 8741, - "loc": { - "start": { - "line": 92, - "column": 503 - }, - "end": { - "line": 92, - "column": 504 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8741, - "end": 8742, - "loc": { - "start": { - "line": 92, - "column": 504 - }, - "end": { - "line": 92, - "column": 505 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8743, - "end": 8744, - "loc": { - "start": { - "line": 92, - "column": 506 - }, - "end": { - "line": 92, - "column": 507 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8745, - "end": 8746, - "loc": { - "start": { - "line": 92, - "column": 508 - }, - "end": { - "line": 92, - "column": 509 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 8747, - "end": 8748, - "loc": { - "start": { - "line": 92, - "column": 510 - }, - "end": { - "line": 92, - "column": 511 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8748, - "end": 8749, - "loc": { - "start": { - "line": 92, - "column": 511 - }, - "end": { - "line": 92, - "column": 512 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8749, - "end": 8750, - "loc": { - "start": { - "line": 92, - "column": 512 - }, - "end": { - "line": 92, - "column": 513 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8750, - "end": 8751, - "loc": { - "start": { - "line": 92, - "column": 513 - }, - "end": { - "line": 92, - "column": 514 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8751, - "end": 8752, - "loc": { - "start": { - "line": 92, - "column": 514 - }, - "end": { - "line": 92, - "column": 515 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8753, - "end": 8754, - "loc": { - "start": { - "line": 92, - "column": 516 - }, - "end": { - "line": 92, - "column": 517 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8754, - "end": 8755, - "loc": { - "start": { - "line": 92, - "column": 517 - }, - "end": { - "line": 92, - "column": 518 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 8755, - "end": 8764, - "loc": { - "start": { - "line": 92, - "column": 518 - }, - "end": { - "line": 92, - "column": 527 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8765, - "end": 8766, - "loc": { - "start": { - "line": 92, - "column": 528 - }, - "end": { - "line": 92, - "column": 529 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "L", - "start": 8767, - "end": 8770, - "loc": { - "start": { - "line": 92, - "column": 530 - }, - "end": { - "line": 92, - "column": 533 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 8771, - "end": 8772, - "loc": { - "start": { - "line": 92, - "column": 534 - }, - "end": { - "line": 92, - "column": 535 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8773, - "end": 8774, - "loc": { - "start": { - "line": 92, - "column": 536 - }, - "end": { - "line": 92, - "column": 537 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 8774, - "end": 8775, - "loc": { - "start": { - "line": 92, - "column": 537 - }, - "end": { - "line": 92, - "column": 538 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 8776, - "end": 8777, - "loc": { - "start": { - "line": 92, - "column": 539 - }, - "end": { - "line": 92, - "column": 540 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 8778, - "end": 8779, - "loc": { - "start": { - "line": 92, - "column": 541 - }, - "end": { - "line": 92, - "column": 542 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8779, - "end": 8780, - "loc": { - "start": { - "line": 92, - "column": 542 - }, - "end": { - "line": 92, - "column": 543 - } - } - }, - { - "type": { - "label": "%", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 10, - "updateContext": null - }, - "value": "%", - "start": 8781, - "end": 8782, - "loc": { - "start": { - "line": 92, - "column": 544 - }, - "end": { - "line": 92, - "column": 545 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 10, - "start": 8783, - "end": 8785, - "loc": { - "start": { - "line": 92, - "column": 546 - }, - "end": { - "line": 92, - "column": 548 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8785, - "end": 8786, - "loc": { - "start": { - "line": 92, - "column": 548 - }, - "end": { - "line": 92, - "column": 549 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8787, - "end": 8788, - "loc": { - "start": { - "line": 92, - "column": 550 - }, - "end": { - "line": 92, - "column": 551 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8788, - "end": 8789, - "loc": { - "start": { - "line": 92, - "column": 551 - }, - "end": { - "line": 92, - "column": 552 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 8789, - "end": 8799, - "loc": { - "start": { - "line": 92, - "column": 552 - }, - "end": { - "line": 92, - "column": 562 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 8800, - "end": 8802, - "loc": { - "start": { - "line": 92, - "column": 563 - }, - "end": { - "line": 92, - "column": 565 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8803, - "end": 8804, - "loc": { - "start": { - "line": 92, - "column": 566 - }, - "end": { - "line": 92, - "column": 567 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8804, - "end": 8805, - "loc": { - "start": { - "line": 92, - "column": 567 - }, - "end": { - "line": 92, - "column": 568 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 8805, - "end": 8816, - "loc": { - "start": { - "line": 92, - "column": 568 - }, - "end": { - "line": 92, - "column": 579 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8816, - "end": 8817, - "loc": { - "start": { - "line": 92, - "column": 579 - }, - "end": { - "line": 92, - "column": 580 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 8817, - "end": 8818, - "loc": { - "start": { - "line": 92, - "column": 580 - }, - "end": { - "line": 92, - "column": 581 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8818, - "end": 8819, - "loc": { - "start": { - "line": 92, - "column": 581 - }, - "end": { - "line": 92, - "column": 582 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createTextNode", - "start": 8819, - "end": 8833, - "loc": { - "start": { - "line": 92, - "column": 582 - }, - "end": { - "line": 92, - "column": 596 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8833, - "end": 8834, - "loc": { - "start": { - "line": 92, - "column": 596 - }, - "end": { - "line": 92, - "column": 597 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": " ", - "start": 8834, - "end": 8840, - "loc": { - "start": { - "line": 92, - "column": 597 - }, - "end": { - "line": 92, - "column": 603 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8840, - "end": 8841, - "loc": { - "start": { - "line": 92, - "column": 603 - }, - "end": { - "line": 92, - "column": 604 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8841, - "end": 8842, - "loc": { - "start": { - "line": 92, - "column": 604 - }, - "end": { - "line": 92, - "column": 605 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8842, - "end": 8843, - "loc": { - "start": { - "line": 92, - "column": 605 - }, - "end": { - "line": 92, - "column": 606 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 8844, - "end": 8845, - "loc": { - "start": { - "line": 92, - "column": 607 - }, - "end": { - "line": 92, - "column": 608 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8845, - "end": 8846, - "loc": { - "start": { - "line": 92, - "column": 608 - }, - "end": { - "line": 92, - "column": 609 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 8846, - "end": 8857, - "loc": { - "start": { - "line": 92, - "column": 609 - }, - "end": { - "line": 92, - "column": 620 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8857, - "end": 8858, - "loc": { - "start": { - "line": 92, - "column": 620 - }, - "end": { - "line": 92, - "column": 621 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 8858, - "end": 8859, - "loc": { - "start": { - "line": 92, - "column": 621 - }, - "end": { - "line": 92, - "column": 622 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8859, - "end": 8860, - "loc": { - "start": { - "line": 92, - "column": 622 - }, - "end": { - "line": 92, - "column": 623 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8860, - "end": 8861, - "loc": { - "start": { - "line": 92, - "column": 623 - }, - "end": { - "line": 92, - "column": 624 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8861, - "end": 8862, - "loc": { - "start": { - "line": 92, - "column": 624 - }, - "end": { - "line": 92, - "column": 625 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8862, - "end": 8863, - "loc": { - "start": { - "line": 92, - "column": 625 - }, - "end": { - "line": 92, - "column": 626 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 8863, - "end": 8874, - "loc": { - "start": { - "line": 92, - "column": 626 - }, - "end": { - "line": 92, - "column": 637 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8874, - "end": 8875, - "loc": { - "start": { - "line": 92, - "column": 637 - }, - "end": { - "line": 92, - "column": 638 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 8875, - "end": 8876, - "loc": { - "start": { - "line": 92, - "column": 638 - }, - "end": { - "line": 92, - "column": 639 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8876, - "end": 8877, - "loc": { - "start": { - "line": 92, - "column": 639 - }, - "end": { - "line": 92, - "column": 640 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8877, - "end": 8878, - "loc": { - "start": { - "line": 92, - "column": 640 - }, - "end": { - "line": 92, - "column": 641 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8881, - "end": 8882, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 93, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 8882, - "end": 8890, - "loc": { - "start": { - "line": 93, - "column": 3 - }, - "end": { - "line": 93, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 8891, - "end": 8892, - "loc": { - "start": { - "line": 93, - "column": 12 - }, - "end": { - "line": 93, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8892, - "end": 8893, - "loc": { - "start": { - "line": 93, - "column": 13 - }, - "end": { - "line": 93, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 8893, - "end": 8894, - "loc": { - "start": { - "line": 93, - "column": 14 - }, - "end": { - "line": 93, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8894, - "end": 8895, - "loc": { - "start": { - "line": 93, - "column": 15 - }, - "end": { - "line": 93, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8896, - "end": 8897, - "loc": { - "start": { - "line": 93, - "column": 17 - }, - "end": { - "line": 93, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8897, - "end": 8898, - "loc": { - "start": { - "line": 93, - "column": 18 - }, - "end": { - "line": 93, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8899, - "end": 8900, - "loc": { - "start": { - "line": 93, - "column": 20 - }, - "end": { - "line": 93, - "column": 21 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 8905, - "end": 8908, - "loc": { - "start": { - "line": 94, - "column": 4 - }, - "end": { - "line": 94, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8909, - "end": 8910, - "loc": { - "start": { - "line": 94, - "column": 8 - }, - "end": { - "line": 94, - "column": 9 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8910, - "end": 8913, - "loc": { - "start": { - "line": 94, - "column": 9 - }, - "end": { - "line": 94, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8914, - "end": 8915, - "loc": { - "start": { - "line": 94, - "column": 13 - }, - "end": { - "line": 94, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8916, - "end": 8917, - "loc": { - "start": { - "line": 94, - "column": 15 - }, - "end": { - "line": 94, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8918, - "end": 8919, - "loc": { - "start": { - "line": 94, - "column": 17 - }, - "end": { - "line": 94, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8919, - "end": 8920, - "loc": { - "start": { - "line": 94, - "column": 18 - }, - "end": { - "line": 94, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 8920, - "end": 8926, - "loc": { - "start": { - "line": 94, - "column": 19 - }, - "end": { - "line": 94, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8926, - "end": 8927, - "loc": { - "start": { - "line": 94, - "column": 25 - }, - "end": { - "line": 94, - "column": 26 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "--", - "start": 8928, - "end": 8930, - "loc": { - "start": { - "line": 94, - "column": 27 - }, - "end": { - "line": 94, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8930, - "end": 8931, - "loc": { - "start": { - "line": 94, - "column": 29 - }, - "end": { - "line": 94, - "column": 30 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 8932, - "end": 8934, - "loc": { - "start": { - "line": 94, - "column": 31 - }, - "end": { - "line": 94, - "column": 33 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 8935, - "end": 8936, - "loc": { - "start": { - "line": 94, - "column": 34 - }, - "end": { - "line": 94, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8936, - "end": 8937, - "loc": { - "start": { - "line": 94, - "column": 35 - }, - "end": { - "line": 94, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8937, - "end": 8938, - "loc": { - "start": { - "line": 94, - "column": 36 - }, - "end": { - "line": 94, - "column": 37 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8939, - "end": 8940, - "loc": { - "start": { - "line": 94, - "column": 38 - }, - "end": { - "line": 94, - "column": 39 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 8947, - "end": 8950, - "loc": { - "start": { - "line": 95, - "column": 6 - }, - "end": { - "line": 95, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 8951, - "end": 8952, - "loc": { - "start": { - "line": 95, - "column": 10 - }, - "end": { - "line": 95, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8953, - "end": 8954, - "loc": { - "start": { - "line": 95, - "column": 12 - }, - "end": { - "line": 95, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 8955, - "end": 8956, - "loc": { - "start": { - "line": 95, - "column": 14 - }, - "end": { - "line": 95, - "column": 15 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8956, - "end": 8957, - "loc": { - "start": { - "line": 95, - "column": 15 - }, - "end": { - "line": 95, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 8957, - "end": 8958, - "loc": { - "start": { - "line": 95, - "column": 16 - }, - "end": { - "line": 95, - "column": 17 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8958, - "end": 8959, - "loc": { - "start": { - "line": 95, - "column": 17 - }, - "end": { - "line": 95, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8959, - "end": 8960, - "loc": { - "start": { - "line": 95, - "column": 18 - }, - "end": { - "line": 95, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "A", - "start": 8960, - "end": 8961, - "loc": { - "start": { - "line": 95, - "column": 19 - }, - "end": { - "line": 95, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8961, - "end": 8962, - "loc": { - "start": { - "line": 95, - "column": 20 - }, - "end": { - "line": 95, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hasOwnProperty", - "start": 8962, - "end": 8976, - "loc": { - "start": { - "line": 95, - "column": 21 - }, - "end": { - "line": 95, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8976, - "end": 8977, - "loc": { - "start": { - "line": 95, - "column": 35 - }, - "end": { - "line": 95, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 8977, - "end": 8978, - "loc": { - "start": { - "line": 95, - "column": 36 - }, - "end": { - "line": 95, - "column": 37 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8978, - "end": 8979, - "loc": { - "start": { - "line": 95, - "column": 37 - }, - "end": { - "line": 95, - "column": 38 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8980, - "end": 8981, - "loc": { - "start": { - "line": 95, - "column": 39 - }, - "end": { - "line": 95, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 8982, - "end": 8988, - "loc": { - "start": { - "line": 95, - "column": 41 - }, - "end": { - "line": 95, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8988, - "end": 8989, - "loc": { - "start": { - "line": 95, - "column": 47 - }, - "end": { - "line": 95, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "console", - "start": 8989, - "end": 8996, - "loc": { - "start": { - "line": 95, - "column": 48 - }, - "end": { - "line": 95, - "column": 55 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 8997, - "end": 8999, - "loc": { - "start": { - "line": 95, - "column": 56 - }, - "end": { - "line": 95, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "console", - "start": 9000, - "end": 9007, - "loc": { - "start": { - "line": 95, - "column": 59 - }, - "end": { - "line": 95, - "column": 66 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9007, - "end": 9008, - "loc": { - "start": { - "line": 95, - "column": 66 - }, - "end": { - "line": 95, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "warn", - "start": 9008, - "end": 9012, - "loc": { - "start": { - "line": 95, - "column": 67 - }, - "end": { - "line": 95, - "column": 71 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9012, - "end": 9013, - "loc": { - "start": { - "line": 95, - "column": 71 - }, - "end": { - "line": 95, - "column": 72 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cannot override language handler %s", - "start": 9013, - "end": 9050, - "loc": { - "start": { - "line": 95, - "column": 72 - }, - "end": { - "line": 95, - "column": 109 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9050, - "end": 9051, - "loc": { - "start": { - "line": 95, - "column": 109 - }, - "end": { - "line": 95, - "column": 110 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9052, - "end": 9053, - "loc": { - "start": { - "line": 95, - "column": 111 - }, - "end": { - "line": 95, - "column": 112 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9053, - "end": 9054, - "loc": { - "start": { - "line": 95, - "column": 112 - }, - "end": { - "line": 95, - "column": 113 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9055, - "end": 9056, - "loc": { - "start": { - "line": 95, - "column": 114 - }, - "end": { - "line": 95, - "column": 115 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "A", - "start": 9057, - "end": 9058, - "loc": { - "start": { - "line": 95, - "column": 116 - }, - "end": { - "line": 95, - "column": 117 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9058, - "end": 9059, - "loc": { - "start": { - "line": 95, - "column": 117 - }, - "end": { - "line": 95, - "column": 118 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9059, - "end": 9060, - "loc": { - "start": { - "line": 95, - "column": 118 - }, - "end": { - "line": 95, - "column": 119 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9060, - "end": 9061, - "loc": { - "start": { - "line": 95, - "column": 119 - }, - "end": { - "line": 95, - "column": 120 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9062, - "end": 9063, - "loc": { - "start": { - "line": 95, - "column": 121 - }, - "end": { - "line": 95, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9064, - "end": 9065, - "loc": { - "start": { - "line": 95, - "column": 123 - }, - "end": { - "line": 95, - "column": 124 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9065, - "end": 9066, - "loc": { - "start": { - "line": 95, - "column": 124 - }, - "end": { - "line": 95, - "column": 125 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9071, - "end": 9072, - "loc": { - "start": { - "line": 96, - "column": 4 - }, - "end": { - "line": 96, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9075, - "end": 9076, - "loc": { - "start": { - "line": 97, - "column": 2 - }, - "end": { - "line": 97, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 9076, - "end": 9084, - "loc": { - "start": { - "line": 97, - "column": 3 - }, - "end": { - "line": 97, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "C", - "start": 9085, - "end": 9086, - "loc": { - "start": { - "line": 97, - "column": 12 - }, - "end": { - "line": 97, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9086, - "end": 9087, - "loc": { - "start": { - "line": 97, - "column": 13 - }, - "end": { - "line": 97, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9087, - "end": 9088, - "loc": { - "start": { - "line": 97, - "column": 14 - }, - "end": { - "line": 97, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9088, - "end": 9089, - "loc": { - "start": { - "line": 97, - "column": 15 - }, - "end": { - "line": 97, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 9090, - "end": 9091, - "loc": { - "start": { - "line": 97, - "column": 17 - }, - "end": { - "line": 97, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9091, - "end": 9092, - "loc": { - "start": { - "line": 97, - "column": 18 - }, - "end": { - "line": 97, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9093, - "end": 9094, - "loc": { - "start": { - "line": 97, - "column": 20 - }, - "end": { - "line": 97, - "column": 21 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 9099, - "end": 9101, - "loc": { - "start": { - "line": 98, - "column": 4 - }, - "end": { - "line": 98, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9102, - "end": 9103, - "loc": { - "start": { - "line": 98, - "column": 7 - }, - "end": { - "line": 98, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 9103, - "end": 9104, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9104, - "end": 9105, - "loc": { - "start": { - "line": 98, - "column": 9 - }, - "end": { - "line": 98, - "column": 10 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 9106, - "end": 9108, - "loc": { - "start": { - "line": 98, - "column": 11 - }, - "end": { - "line": 98, - "column": 13 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 9109, - "end": 9110, - "loc": { - "start": { - "line": 98, - "column": 14 - }, - "end": { - "line": 98, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "A", - "start": 9110, - "end": 9111, - "loc": { - "start": { - "line": 98, - "column": 15 - }, - "end": { - "line": 98, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9111, - "end": 9112, - "loc": { - "start": { - "line": 98, - "column": 16 - }, - "end": { - "line": 98, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hasOwnProperty", - "start": 9112, - "end": 9126, - "loc": { - "start": { - "line": 98, - "column": 17 - }, - "end": { - "line": 98, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9126, - "end": 9127, - "loc": { - "start": { - "line": 98, - "column": 31 - }, - "end": { - "line": 98, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9127, - "end": 9128, - "loc": { - "start": { - "line": 98, - "column": 32 - }, - "end": { - "line": 98, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9128, - "end": 9129, - "loc": { - "start": { - "line": 98, - "column": 33 - }, - "end": { - "line": 98, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9129, - "end": 9130, - "loc": { - "start": { - "line": 98, - "column": 34 - }, - "end": { - "line": 98, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9131, - "end": 9132, - "loc": { - "start": { - "line": 98, - "column": 36 - }, - "end": { - "line": 98, - "column": 37 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9133, - "end": 9134, - "loc": { - "start": { - "line": 98, - "column": 38 - }, - "end": { - "line": 98, - "column": 39 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\s*<", - "flags": "" - }, - "start": 9135, - "end": 9142, - "loc": { - "start": { - "line": 98, - "column": 40 - }, - "end": { - "line": 98, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9142, - "end": 9143, - "loc": { - "start": { - "line": 98, - "column": 47 - }, - "end": { - "line": 98, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 9143, - "end": 9147, - "loc": { - "start": { - "line": 98, - "column": 48 - }, - "end": { - "line": 98, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9147, - "end": 9148, - "loc": { - "start": { - "line": 98, - "column": 52 - }, - "end": { - "line": 98, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 9148, - "end": 9149, - "loc": { - "start": { - "line": 98, - "column": 53 - }, - "end": { - "line": 98, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9149, - "end": 9150, - "loc": { - "start": { - "line": 98, - "column": 54 - }, - "end": { - "line": 98, - "column": 55 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9151, - "end": 9152, - "loc": { - "start": { - "line": 98, - "column": 56 - }, - "end": { - "line": 98, - "column": 57 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default-markup", - "start": 9153, - "end": 9169, - "loc": { - "start": { - "line": 98, - "column": 58 - }, - "end": { - "line": 98, - "column": 74 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9170, - "end": 9171, - "loc": { - "start": { - "line": 98, - "column": 75 - }, - "end": { - "line": 98, - "column": 76 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default-code", - "start": 9172, - "end": 9186, - "loc": { - "start": { - "line": 98, - "column": 77 - }, - "end": { - "line": 98, - "column": 91 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9186, - "end": 9187, - "loc": { - "start": { - "line": 98, - "column": 91 - }, - "end": { - "line": 98, - "column": 92 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 9187, - "end": 9193, - "loc": { - "start": { - "line": 98, - "column": 92 - }, - "end": { - "line": 98, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "A", - "start": 9194, - "end": 9195, - "loc": { - "start": { - "line": 98, - "column": 99 - }, - "end": { - "line": 98, - "column": 100 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9195, - "end": 9196, - "loc": { - "start": { - "line": 98, - "column": 100 - }, - "end": { - "line": 98, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9196, - "end": 9197, - "loc": { - "start": { - "line": 98, - "column": 101 - }, - "end": { - "line": 98, - "column": 102 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9197, - "end": 9198, - "loc": { - "start": { - "line": 98, - "column": 102 - }, - "end": { - "line": 98, - "column": 103 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9198, - "end": 9199, - "loc": { - "start": { - "line": 98, - "column": 103 - }, - "end": { - "line": 98, - "column": 104 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9202, - "end": 9203, - "loc": { - "start": { - "line": 99, - "column": 2 - }, - "end": { - "line": 99, - "column": 3 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 9203, - "end": 9211, - "loc": { - "start": { - "line": 99, - "column": 3 - }, - "end": { - "line": 99, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "E", - "start": 9212, - "end": 9213, - "loc": { - "start": { - "line": 99, - "column": 12 - }, - "end": { - "line": 99, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9213, - "end": 9214, - "loc": { - "start": { - "line": 99, - "column": 13 - }, - "end": { - "line": 99, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9214, - "end": 9215, - "loc": { - "start": { - "line": 99, - "column": 14 - }, - "end": { - "line": 99, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9215, - "end": 9216, - "loc": { - "start": { - "line": 99, - "column": 15 - }, - "end": { - "line": 99, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9217, - "end": 9218, - "loc": { - "start": { - "line": 99, - "column": 17 - }, - "end": { - "line": 99, - "column": 18 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9223, - "end": 9226, - "loc": { - "start": { - "line": 100, - "column": 4 - }, - "end": { - "line": 100, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 9227, - "end": 9228, - "loc": { - "start": { - "line": 100, - "column": 8 - }, - "end": { - "line": 100, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9229, - "end": 9230, - "loc": { - "start": { - "line": 100, - "column": 10 - }, - "end": { - "line": 100, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9231, - "end": 9232, - "loc": { - "start": { - "line": 100, - "column": 12 - }, - "end": { - "line": 100, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9232, - "end": 9233, - "loc": { - "start": { - "line": 100, - "column": 13 - }, - "end": { - "line": 100, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9233, - "end": 9234, - "loc": { - "start": { - "line": 100, - "column": 14 - }, - "end": { - "line": 100, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9234, - "end": 9235, - "loc": { - "start": { - "line": 100, - "column": 15 - }, - "end": { - "line": 100, - "column": 16 - } - } - }, - { - "type": { - "label": "try", - "keyword": "try", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "try", - "start": 9235, - "end": 9238, - "loc": { - "start": { - "line": 100, - "column": 16 - }, - "end": { - "line": 100, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9239, - "end": 9240, - "loc": { - "start": { - "line": 100, - "column": 20 - }, - "end": { - "line": 100, - "column": 21 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9247, - "end": 9250, - "loc": { - "start": { - "line": 101, - "column": 6 - }, - "end": { - "line": 101, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 9251, - "end": 9252, - "loc": { - "start": { - "line": 101, - "column": 10 - }, - "end": { - "line": 101, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9253, - "end": 9254, - "loc": { - "start": { - "line": 101, - "column": 12 - }, - "end": { - "line": 101, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "M", - "start": 9255, - "end": 9256, - "loc": { - "start": { - "line": 101, - "column": 14 - }, - "end": { - "line": 101, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9256, - "end": 9257, - "loc": { - "start": { - "line": 101, - "column": 15 - }, - "end": { - "line": 101, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9257, - "end": 9258, - "loc": { - "start": { - "line": 101, - "column": 16 - }, - "end": { - "line": 101, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9258, - "end": 9259, - "loc": { - "start": { - "line": 101, - "column": 17 - }, - "end": { - "line": 101, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9259, - "end": 9260, - "loc": { - "start": { - "line": 101, - "column": 18 - }, - "end": { - "line": 101, - "column": 19 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9260, - "end": 9261, - "loc": { - "start": { - "line": 101, - "column": 19 - }, - "end": { - "line": 101, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9261, - "end": 9262, - "loc": { - "start": { - "line": 101, - "column": 20 - }, - "end": { - "line": 101, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9273, - "end": 9274, - "loc": { - "start": { - "line": 102, - "column": 10 - }, - "end": { - "line": 102, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9275, - "end": 9276, - "loc": { - "start": { - "line": 102, - "column": 12 - }, - "end": { - "line": 102, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 9277, - "end": 9278, - "loc": { - "start": { - "line": 102, - "column": 14 - }, - "end": { - "line": 102, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9278, - "end": 9279, - "loc": { - "start": { - "line": 102, - "column": 15 - }, - "end": { - "line": 102, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9279, - "end": 9280, - "loc": { - "start": { - "line": 102, - "column": 16 - }, - "end": { - "line": 102, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9280, - "end": 9281, - "loc": { - "start": { - "line": 102, - "column": 17 - }, - "end": { - "line": 102, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9281, - "end": 9282, - "loc": { - "start": { - "line": 102, - "column": 18 - }, - "end": { - "line": 102, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9282, - "end": 9283, - "loc": { - "start": { - "line": 102, - "column": 19 - }, - "end": { - "line": 102, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9283, - "end": 9284, - "loc": { - "start": { - "line": 102, - "column": 20 - }, - "end": { - "line": 102, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9285, - "end": 9286, - "loc": { - "start": { - "line": 102, - "column": 22 - }, - "end": { - "line": 102, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9287, - "end": 9288, - "loc": { - "start": { - "line": 102, - "column": 24 - }, - "end": { - "line": 102, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9288, - "end": 9289, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9289, - "end": 9290, - "loc": { - "start": { - "line": 102, - "column": 26 - }, - "end": { - "line": 102, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9290, - "end": 9291, - "loc": { - "start": { - "line": 102, - "column": 27 - }, - "end": { - "line": 102, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 9291, - "end": 9292, - "loc": { - "start": { - "line": 102, - "column": 28 - }, - "end": { - "line": 102, - "column": 29 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9293, - "end": 9294, - "loc": { - "start": { - "line": 102, - "column": 30 - }, - "end": { - "line": 102, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 9295, - "end": 9296, - "loc": { - "start": { - "line": 102, - "column": 32 - }, - "end": { - "line": 102, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9296, - "end": 9297, - "loc": { - "start": { - "line": 102, - "column": 33 - }, - "end": { - "line": 102, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 9297, - "end": 9298, - "loc": { - "start": { - "line": 102, - "column": 34 - }, - "end": { - "line": 102, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9298, - "end": 9299, - "loc": { - "start": { - "line": 102, - "column": 35 - }, - "end": { - "line": 102, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9299, - "end": 9300, - "loc": { - "start": { - "line": 102, - "column": 36 - }, - "end": { - "line": 102, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9300, - "end": 9301, - "loc": { - "start": { - "line": 102, - "column": 37 - }, - "end": { - "line": 102, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9301, - "end": 9302, - "loc": { - "start": { - "line": 102, - "column": 38 - }, - "end": { - "line": 102, - "column": 39 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9303, - "end": 9304, - "loc": { - "start": { - "line": 102, - "column": 40 - }, - "end": { - "line": 102, - "column": 41 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9305, - "end": 9306, - "loc": { - "start": { - "line": 102, - "column": 42 - }, - "end": { - "line": 102, - "column": 43 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9306, - "end": 9307, - "loc": { - "start": { - "line": 102, - "column": 43 - }, - "end": { - "line": 102, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "C", - "start": 9307, - "end": 9308, - "loc": { - "start": { - "line": 102, - "column": 44 - }, - "end": { - "line": 102, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9308, - "end": 9309, - "loc": { - "start": { - "line": 102, - "column": 45 - }, - "end": { - "line": 102, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 9309, - "end": 9310, - "loc": { - "start": { - "line": 102, - "column": 46 - }, - "end": { - "line": 102, - "column": 47 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9310, - "end": 9311, - "loc": { - "start": { - "line": 102, - "column": 47 - }, - "end": { - "line": 102, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9312, - "end": 9313, - "loc": { - "start": { - "line": 102, - "column": 49 - }, - "end": { - "line": 102, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9313, - "end": 9314, - "loc": { - "start": { - "line": 102, - "column": 50 - }, - "end": { - "line": 102, - "column": 51 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9314, - "end": 9315, - "loc": { - "start": { - "line": 102, - "column": 51 - }, - "end": { - "line": 102, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9315, - "end": 9316, - "loc": { - "start": { - "line": 102, - "column": 52 - }, - "end": { - "line": 102, - "column": 53 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9316, - "end": 9317, - "loc": { - "start": { - "line": 102, - "column": 53 - }, - "end": { - "line": 102, - "column": 54 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9317, - "end": 9318, - "loc": { - "start": { - "line": 102, - "column": 54 - }, - "end": { - "line": 102, - "column": 55 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9318, - "end": 9321, - "loc": { - "start": { - "line": 102, - "column": 55 - }, - "end": { - "line": 102, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 9322, - "end": 9323, - "loc": { - "start": { - "line": 102, - "column": 59 - }, - "end": { - "line": 102, - "column": 60 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9324, - "end": 9325, - "loc": { - "start": { - "line": 102, - "column": 61 - }, - "end": { - "line": 102, - "column": 62 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\bMSIE\\b", - "flags": "" - }, - "start": 9326, - "end": 9336, - "loc": { - "start": { - "line": 102, - "column": 63 - }, - "end": { - "line": 102, - "column": 73 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9336, - "end": 9337, - "loc": { - "start": { - "line": 102, - "column": 73 - }, - "end": { - "line": 102, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 9337, - "end": 9341, - "loc": { - "start": { - "line": 102, - "column": 74 - }, - "end": { - "line": 102, - "column": 78 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9341, - "end": 9342, - "loc": { - "start": { - "line": 102, - "column": 78 - }, - "end": { - "line": 102, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "navigator", - "start": 9342, - "end": 9351, - "loc": { - "start": { - "line": 102, - "column": 79 - }, - "end": { - "line": 102, - "column": 88 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9351, - "end": 9352, - "loc": { - "start": { - "line": 102, - "column": 88 - }, - "end": { - "line": 102, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "userAgent", - "start": 9352, - "end": 9361, - "loc": { - "start": { - "line": 102, - "column": 89 - }, - "end": { - "line": 102, - "column": 98 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9361, - "end": 9362, - "loc": { - "start": { - "line": 102, - "column": 98 - }, - "end": { - "line": 102, - "column": 99 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9362, - "end": 9363, - "loc": { - "start": { - "line": 102, - "column": 99 - }, - "end": { - "line": 102, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 9374, - "end": 9375, - "loc": { - "start": { - "line": 103, - "column": 10 - }, - "end": { - "line": 103, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9376, - "end": 9377, - "loc": { - "start": { - "line": 103, - "column": 12 - }, - "end": { - "line": 103, - "column": 13 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\n", - "flags": "g" - }, - "start": 9378, - "end": 9383, - "loc": { - "start": { - "line": 103, - "column": 14 - }, - "end": { - "line": 103, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9383, - "end": 9384, - "loc": { - "start": { - "line": 103, - "column": 19 - }, - "end": { - "line": 103, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 9395, - "end": 9396, - "loc": { - "start": { - "line": 104, - "column": 10 - }, - "end": { - "line": 104, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9397, - "end": 9398, - "loc": { - "start": { - "line": 104, - "column": 12 - }, - "end": { - "line": 104, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9399, - "end": 9400, - "loc": { - "start": { - "line": 104, - "column": 14 - }, - "end": { - "line": 104, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9400, - "end": 9401, - "loc": { - "start": { - "line": 104, - "column": 15 - }, - "end": { - "line": 104, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9401, - "end": 9402, - "loc": { - "start": { - "line": 104, - "column": 16 - }, - "end": { - "line": 104, - "column": 17 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9402, - "end": 9403, - "loc": { - "start": { - "line": 104, - "column": 17 - }, - "end": { - "line": 104, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 9414, - "end": 9415, - "loc": { - "start": { - "line": 105, - "column": 10 - }, - "end": { - "line": 105, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9416, - "end": 9417, - "loc": { - "start": { - "line": 105, - "column": 12 - }, - "end": { - "line": 105, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 9418, - "end": 9419, - "loc": { - "start": { - "line": 105, - "column": 14 - }, - "end": { - "line": 105, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9419, - "end": 9420, - "loc": { - "start": { - "line": 105, - "column": 15 - }, - "end": { - "line": 105, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 9420, - "end": 9426, - "loc": { - "start": { - "line": 105, - "column": 16 - }, - "end": { - "line": 105, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9426, - "end": 9427, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 9438, - "end": 9439, - "loc": { - "start": { - "line": 106, - "column": 10 - }, - "end": { - "line": 106, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9440, - "end": 9441, - "loc": { - "start": { - "line": 106, - "column": 12 - }, - "end": { - "line": 106, - "column": 13 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9442, - "end": 9443, - "loc": { - "start": { - "line": 106, - "column": 14 - }, - "end": { - "line": 106, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9443, - "end": 9444, - "loc": { - "start": { - "line": 106, - "column": 15 - }, - "end": { - "line": 106, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 9455, - "end": 9456, - "loc": { - "start": { - "line": 107, - "column": 10 - }, - "end": { - "line": 107, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9457, - "end": 9458, - "loc": { - "start": { - "line": 107, - "column": 12 - }, - "end": { - "line": 107, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9459, - "end": 9460, - "loc": { - "start": { - "line": 107, - "column": 14 - }, - "end": { - "line": 107, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9460, - "end": 9461, - "loc": { - "start": { - "line": 107, - "column": 15 - }, - "end": { - "line": 107, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 9461, - "end": 9462, - "loc": { - "start": { - "line": 107, - "column": 16 - }, - "end": { - "line": 107, - "column": 17 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9462, - "end": 9463, - "loc": { - "start": { - "line": 107, - "column": 17 - }, - "end": { - "line": 107, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 9474, - "end": 9475, - "loc": { - "start": { - "line": 108, - "column": 10 - }, - "end": { - "line": 108, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9476, - "end": 9477, - "loc": { - "start": { - "line": 108, - "column": 12 - }, - "end": { - "line": 108, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 9478, - "end": 9479, - "loc": { - "start": { - "line": 108, - "column": 14 - }, - "end": { - "line": 108, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9479, - "end": 9480, - "loc": { - "start": { - "line": 108, - "column": 15 - }, - "end": { - "line": 108, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 9480, - "end": 9486, - "loc": { - "start": { - "line": 108, - "column": 16 - }, - "end": { - "line": 108, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9486, - "end": 9487, - "loc": { - "start": { - "line": 108, - "column": 22 - }, - "end": { - "line": 108, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9498, - "end": 9499, - "loc": { - "start": { - "line": 109, - "column": 10 - }, - "end": { - "line": 109, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9500, - "end": 9501, - "loc": { - "start": { - "line": 109, - "column": 12 - }, - "end": { - "line": 109, - "column": 13 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9502, - "end": 9503, - "loc": { - "start": { - "line": 109, - "column": 14 - }, - "end": { - "line": 109, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9503, - "end": 9504, - "loc": { - "start": { - "line": 109, - "column": 15 - }, - "end": { - "line": 109, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9515, - "end": 9516, - "loc": { - "start": { - "line": 110, - "column": 10 - }, - "end": { - "line": 110, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9517, - "end": 9518, - "loc": { - "start": { - "line": 110, - "column": 12 - }, - "end": { - "line": 110, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9519, - "end": 9520, - "loc": { - "start": { - "line": 110, - "column": 14 - }, - "end": { - "line": 110, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9520, - "end": 9521, - "loc": { - "start": { - "line": 110, - "column": 15 - }, - "end": { - "line": 110, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 9521, - "end": 9522, - "loc": { - "start": { - "line": 110, - "column": 16 - }, - "end": { - "line": 110, - "column": 17 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9522, - "end": 9523, - "loc": { - "start": { - "line": 110, - "column": 17 - }, - "end": { - "line": 110, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9534, - "end": 9535, - "loc": { - "start": { - "line": 111, - "column": 10 - }, - "end": { - "line": 111, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9536, - "end": 9537, - "loc": { - "start": { - "line": 111, - "column": 12 - }, - "end": { - "line": 111, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9538, - "end": 9539, - "loc": { - "start": { - "line": 111, - "column": 14 - }, - "end": { - "line": 111, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9539, - "end": 9540, - "loc": { - "start": { - "line": 111, - "column": 15 - }, - "end": { - "line": 111, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 9540, - "end": 9546, - "loc": { - "start": { - "line": 111, - "column": 16 - }, - "end": { - "line": 111, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9546, - "end": 9547, - "loc": { - "start": { - "line": 111, - "column": 22 - }, - "end": { - "line": 111, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9558, - "end": 9559, - "loc": { - "start": { - "line": 112, - "column": 10 - }, - "end": { - "line": 112, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9560, - "end": 9561, - "loc": { - "start": { - "line": 112, - "column": 12 - }, - "end": { - "line": 112, - "column": 13 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9562, - "end": 9563, - "loc": { - "start": { - "line": 112, - "column": 14 - }, - "end": { - "line": 112, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9563, - "end": 9564, - "loc": { - "start": { - "line": 112, - "column": 15 - }, - "end": { - "line": 112, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9564, - "end": 9565, - "loc": { - "start": { - "line": 112, - "column": 16 - }, - "end": { - "line": 112, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9565, - "end": 9566, - "loc": { - "start": { - "line": 112, - "column": 17 - }, - "end": { - "line": 112, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9566, - "end": 9567, - "loc": { - "start": { - "line": 112, - "column": 18 - }, - "end": { - "line": 112, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9567, - "end": 9568, - "loc": { - "start": { - "line": 112, - "column": 19 - }, - "end": { - "line": 112, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9569, - "end": 9570, - "loc": { - "start": { - "line": 112, - "column": 21 - }, - "end": { - "line": 112, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 9571, - "end": 9572, - "loc": { - "start": { - "line": 112, - "column": 23 - }, - "end": { - "line": 112, - "column": 24 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9572, - "end": 9573, - "loc": { - "start": { - "line": 112, - "column": 24 - }, - "end": { - "line": 112, - "column": 25 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9573, - "end": 9576, - "loc": { - "start": { - "line": 112, - "column": 25 - }, - "end": { - "line": 112, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9577, - "end": 9578, - "loc": { - "start": { - "line": 112, - "column": 29 - }, - "end": { - "line": 112, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9578, - "end": 9579, - "loc": { - "start": { - "line": 112, - "column": 30 - }, - "end": { - "line": 112, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9580, - "end": 9581, - "loc": { - "start": { - "line": 112, - "column": 32 - }, - "end": { - "line": 112, - "column": 33 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9581, - "end": 9582, - "loc": { - "start": { - "line": 112, - "column": 33 - }, - "end": { - "line": 112, - "column": 34 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 9582, - "end": 9585, - "loc": { - "start": { - "line": 112, - "column": 34 - }, - "end": { - "line": 112, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9586, - "end": 9587, - "loc": { - "start": { - "line": 112, - "column": 38 - }, - "end": { - "line": 112, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9587, - "end": 9588, - "loc": { - "start": { - "line": 112, - "column": 39 - }, - "end": { - "line": 112, - "column": 40 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9589, - "end": 9590, - "loc": { - "start": { - "line": 112, - "column": 41 - }, - "end": { - "line": 112, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9591, - "end": 9592, - "loc": { - "start": { - "line": 112, - "column": 43 - }, - "end": { - "line": 112, - "column": 44 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9593, - "end": 9594, - "loc": { - "start": { - "line": 112, - "column": 45 - }, - "end": { - "line": 112, - "column": 46 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9595, - "end": 9596, - "loc": { - "start": { - "line": 112, - "column": 47 - }, - "end": { - "line": 112, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9596, - "end": 9597, - "loc": { - "start": { - "line": 112, - "column": 48 - }, - "end": { - "line": 112, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9598, - "end": 9599, - "loc": { - "start": { - "line": 112, - "column": 50 - }, - "end": { - "line": 112, - "column": 51 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 9600, - "end": 9601, - "loc": { - "start": { - "line": 112, - "column": 52 - }, - "end": { - "line": 112, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9602, - "end": 9603, - "loc": { - "start": { - "line": 112, - "column": 54 - }, - "end": { - "line": 112, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9603, - "end": 9604, - "loc": { - "start": { - "line": 112, - "column": 55 - }, - "end": { - "line": 112, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9604, - "end": 9605, - "loc": { - "start": { - "line": 112, - "column": 56 - }, - "end": { - "line": 112, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9606, - "end": 9607, - "loc": { - "start": { - "line": 112, - "column": 58 - }, - "end": { - "line": 112, - "column": 59 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9607, - "end": 9608, - "loc": { - "start": { - "line": 112, - "column": 59 - }, - "end": { - "line": 112, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9608, - "end": 9609, - "loc": { - "start": { - "line": 112, - "column": 60 - }, - "end": { - "line": 112, - "column": 61 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9609, - "end": 9610, - "loc": { - "start": { - "line": 112, - "column": 61 - }, - "end": { - "line": 112, - "column": 62 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 9611, - "end": 9614, - "loc": { - "start": { - "line": 112, - "column": 63 - }, - "end": { - "line": 112, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9615, - "end": 9616, - "loc": { - "start": { - "line": 112, - "column": 67 - }, - "end": { - "line": 112, - "column": 68 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9616, - "end": 9617, - "loc": { - "start": { - "line": 112, - "column": 68 - }, - "end": { - "line": 112, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9617, - "end": 9618, - "loc": { - "start": { - "line": 112, - "column": 69 - }, - "end": { - "line": 112, - "column": 70 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9619, - "end": 9620, - "loc": { - "start": { - "line": 112, - "column": 71 - }, - "end": { - "line": 112, - "column": 72 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9621, - "end": 9622, - "loc": { - "start": { - "line": 112, - "column": 73 - }, - "end": { - "line": 112, - "column": 74 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9622, - "end": 9623, - "loc": { - "start": { - "line": 112, - "column": 74 - }, - "end": { - "line": 112, - "column": 75 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9624, - "end": 9625, - "loc": { - "start": { - "line": 112, - "column": 76 - }, - "end": { - "line": 112, - "column": 77 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9626, - "end": 9627, - "loc": { - "start": { - "line": 112, - "column": 78 - }, - "end": { - "line": 112, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9627, - "end": 9628, - "loc": { - "start": { - "line": 112, - "column": 79 - }, - "end": { - "line": 112, - "column": 80 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9628, - "end": 9629, - "loc": { - "start": { - "line": 112, - "column": 80 - }, - "end": { - "line": 112, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9629, - "end": 9630, - "loc": { - "start": { - "line": 112, - "column": 81 - }, - "end": { - "line": 112, - "column": 82 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9630, - "end": 9632, - "loc": { - "start": { - "line": 112, - "column": 82 - }, - "end": { - "line": 112, - "column": 84 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9632, - "end": 9633, - "loc": { - "start": { - "line": 112, - "column": 84 - }, - "end": { - "line": 112, - "column": 85 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9634, - "end": 9635, - "loc": { - "start": { - "line": 112, - "column": 86 - }, - "end": { - "line": 112, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9636, - "end": 9637, - "loc": { - "start": { - "line": 112, - "column": 88 - }, - "end": { - "line": 112, - "column": 89 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9637, - "end": 9638, - "loc": { - "start": { - "line": 112, - "column": 89 - }, - "end": { - "line": 112, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9638, - "end": 9639, - "loc": { - "start": { - "line": 112, - "column": 90 - }, - "end": { - "line": 112, - "column": 91 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9639, - "end": 9641, - "loc": { - "start": { - "line": 112, - "column": 91 - }, - "end": { - "line": 112, - "column": 93 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9641, - "end": 9642, - "loc": { - "start": { - "line": 112, - "column": 93 - }, - "end": { - "line": 112, - "column": 94 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9642, - "end": 9643, - "loc": { - "start": { - "line": 112, - "column": 94 - }, - "end": { - "line": 112, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9644, - "end": 9645, - "loc": { - "start": { - "line": 112, - "column": 96 - }, - "end": { - "line": 112, - "column": 97 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9645, - "end": 9646, - "loc": { - "start": { - "line": 112, - "column": 97 - }, - "end": { - "line": 112, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9646, - "end": 9647, - "loc": { - "start": { - "line": 112, - "column": 98 - }, - "end": { - "line": 112, - "column": 99 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9647, - "end": 9649, - "loc": { - "start": { - "line": 112, - "column": 99 - }, - "end": { - "line": 112, - "column": 101 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9649, - "end": 9650, - "loc": { - "start": { - "line": 112, - "column": 101 - }, - "end": { - "line": 112, - "column": 102 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9651, - "end": 9652, - "loc": { - "start": { - "line": 112, - "column": 103 - }, - "end": { - "line": 112, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9653, - "end": 9654, - "loc": { - "start": { - "line": 112, - "column": 105 - }, - "end": { - "line": 112, - "column": 106 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9654, - "end": 9655, - "loc": { - "start": { - "line": 112, - "column": 106 - }, - "end": { - "line": 112, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9655, - "end": 9656, - "loc": { - "start": { - "line": 112, - "column": 107 - }, - "end": { - "line": 112, - "column": 108 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9656, - "end": 9658, - "loc": { - "start": { - "line": 112, - "column": 108 - }, - "end": { - "line": 112, - "column": 110 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9658, - "end": 9659, - "loc": { - "start": { - "line": 112, - "column": 110 - }, - "end": { - "line": 112, - "column": 111 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9659, - "end": 9660, - "loc": { - "start": { - "line": 112, - "column": 111 - }, - "end": { - "line": 112, - "column": 112 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9661, - "end": 9662, - "loc": { - "start": { - "line": 112, - "column": 113 - }, - "end": { - "line": 112, - "column": 114 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9663, - "end": 9664, - "loc": { - "start": { - "line": 112, - "column": 115 - }, - "end": { - "line": 112, - "column": 116 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 9665, - "end": 9667, - "loc": { - "start": { - "line": 112, - "column": 117 - }, - "end": { - "line": 112, - "column": 119 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9668, - "end": 9669, - "loc": { - "start": { - "line": 112, - "column": 120 - }, - "end": { - "line": 112, - "column": 121 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9669, - "end": 9670, - "loc": { - "start": { - "line": 112, - "column": 121 - }, - "end": { - "line": 112, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9670, - "end": 9671, - "loc": { - "start": { - "line": 112, - "column": 122 - }, - "end": { - "line": 112, - "column": 123 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9672, - "end": 9673, - "loc": { - "start": { - "line": 112, - "column": 124 - }, - "end": { - "line": 112, - "column": 125 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9674, - "end": 9675, - "loc": { - "start": { - "line": 112, - "column": 126 - }, - "end": { - "line": 112, - "column": 127 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9675, - "end": 9676, - "loc": { - "start": { - "line": 112, - "column": 127 - }, - "end": { - "line": 112, - "column": 128 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 9676, - "end": 9679, - "loc": { - "start": { - "line": 112, - "column": 128 - }, - "end": { - "line": 112, - "column": 131 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9680, - "end": 9681, - "loc": { - "start": { - "line": 112, - "column": 132 - }, - "end": { - "line": 112, - "column": 133 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9681, - "end": 9682, - "loc": { - "start": { - "line": 112, - "column": 133 - }, - "end": { - "line": 112, - "column": 134 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9683, - "end": 9684, - "loc": { - "start": { - "line": 112, - "column": 135 - }, - "end": { - "line": 112, - "column": 136 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9685, - "end": 9686, - "loc": { - "start": { - "line": 112, - "column": 137 - }, - "end": { - "line": 112, - "column": 138 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9687, - "end": 9688, - "loc": { - "start": { - "line": 112, - "column": 139 - }, - "end": { - "line": 112, - "column": 140 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 9689, - "end": 9690, - "loc": { - "start": { - "line": 112, - "column": 141 - }, - "end": { - "line": 112, - "column": 142 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9690, - "end": 9691, - "loc": { - "start": { - "line": 112, - "column": 142 - }, - "end": { - "line": 112, - "column": 143 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9692, - "end": 9693, - "loc": { - "start": { - "line": 112, - "column": 144 - }, - "end": { - "line": 112, - "column": 145 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 9694, - "end": 9695, - "loc": { - "start": { - "line": 112, - "column": 146 - }, - "end": { - "line": 112, - "column": 147 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9696, - "end": 9697, - "loc": { - "start": { - "line": 112, - "column": 148 - }, - "end": { - "line": 112, - "column": 149 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9697, - "end": 9698, - "loc": { - "start": { - "line": 112, - "column": 149 - }, - "end": { - "line": 112, - "column": 150 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9698, - "end": 9699, - "loc": { - "start": { - "line": 112, - "column": 150 - }, - "end": { - "line": 112, - "column": 151 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9700, - "end": 9701, - "loc": { - "start": { - "line": 112, - "column": 152 - }, - "end": { - "line": 112, - "column": 153 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 9710, - "end": 9713, - "loc": { - "start": { - "line": 113, - "column": 8 - }, - "end": { - "line": 113, - "column": 11 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9714, - "end": 9715, - "loc": { - "start": { - "line": 113, - "column": 12 - }, - "end": { - "line": 113, - "column": 13 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9715, - "end": 9718, - "loc": { - "start": { - "line": 113, - "column": 13 - }, - "end": { - "line": 113, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 9719, - "end": 9720, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9721, - "end": 9722, - "loc": { - "start": { - "line": 113, - "column": 19 - }, - "end": { - "line": 113, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9723, - "end": 9724, - "loc": { - "start": { - "line": 113, - "column": 21 - }, - "end": { - "line": 113, - "column": 22 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9724, - "end": 9725, - "loc": { - "start": { - "line": 113, - "column": 22 - }, - "end": { - "line": 113, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9725, - "end": 9726, - "loc": { - "start": { - "line": 113, - "column": 23 - }, - "end": { - "line": 113, - "column": 24 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9726, - "end": 9727, - "loc": { - "start": { - "line": 113, - "column": 24 - }, - "end": { - "line": 113, - "column": 25 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9727, - "end": 9728, - "loc": { - "start": { - "line": 113, - "column": 25 - }, - "end": { - "line": 113, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 9729, - "end": 9730, - "loc": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 28 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9731, - "end": 9732, - "loc": { - "start": { - "line": 113, - "column": 29 - }, - "end": { - "line": 113, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9733, - "end": 9734, - "loc": { - "start": { - "line": 113, - "column": 31 - }, - "end": { - "line": 113, - "column": 32 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9734, - "end": 9735, - "loc": { - "start": { - "line": 113, - "column": 32 - }, - "end": { - "line": 113, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9735, - "end": 9736, - "loc": { - "start": { - "line": 113, - "column": 33 - }, - "end": { - "line": 113, - "column": 34 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9737, - "end": 9738, - "loc": { - "start": { - "line": 113, - "column": 35 - }, - "end": { - "line": 113, - "column": 36 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 9739, - "end": 9740, - "loc": { - "start": { - "line": 113, - "column": 37 - }, - "end": { - "line": 113, - "column": 38 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9740, - "end": 9741, - "loc": { - "start": { - "line": 113, - "column": 38 - }, - "end": { - "line": 113, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9741, - "end": 9742, - "loc": { - "start": { - "line": 113, - "column": 39 - }, - "end": { - "line": 113, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9743, - "end": 9744, - "loc": { - "start": { - "line": 113, - "column": 41 - }, - "end": { - "line": 113, - "column": 42 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9745, - "end": 9746, - "loc": { - "start": { - "line": 113, - "column": 43 - }, - "end": { - "line": 113, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9747, - "end": 9748, - "loc": { - "start": { - "line": 113, - "column": 45 - }, - "end": { - "line": 113, - "column": 46 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9749, - "end": 9750, - "loc": { - "start": { - "line": 113, - "column": 47 - }, - "end": { - "line": 113, - "column": 48 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9751, - "end": 9752, - "loc": { - "start": { - "line": 113, - "column": 49 - }, - "end": { - "line": 113, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9752, - "end": 9753, - "loc": { - "start": { - "line": 113, - "column": 50 - }, - "end": { - "line": 113, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9754, - "end": 9755, - "loc": { - "start": { - "line": 113, - "column": 52 - }, - "end": { - "line": 113, - "column": 53 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9756, - "end": 9757, - "loc": { - "start": { - "line": 113, - "column": 54 - }, - "end": { - "line": 113, - "column": 55 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9758, - "end": 9759, - "loc": { - "start": { - "line": 113, - "column": 56 - }, - "end": { - "line": 113, - "column": 57 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<=", - "start": 9760, - "end": 9762, - "loc": { - "start": { - "line": 113, - "column": 58 - }, - "end": { - "line": 113, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 9763, - "end": 9764, - "loc": { - "start": { - "line": 113, - "column": 61 - }, - "end": { - "line": 113, - "column": 62 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 9765, - "end": 9767, - "loc": { - "start": { - "line": 113, - "column": 63 - }, - "end": { - "line": 113, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9768, - "end": 9769, - "loc": { - "start": { - "line": 113, - "column": 66 - }, - "end": { - "line": 113, - "column": 67 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9769, - "end": 9770, - "loc": { - "start": { - "line": 113, - "column": 67 - }, - "end": { - "line": 113, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9770, - "end": 9771, - "loc": { - "start": { - "line": 113, - "column": 68 - }, - "end": { - "line": 113, - "column": 69 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9772, - "end": 9773, - "loc": { - "start": { - "line": 113, - "column": 70 - }, - "end": { - "line": 113, - "column": 71 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 9774, - "end": 9775, - "loc": { - "start": { - "line": 113, - "column": 72 - }, - "end": { - "line": 113, - "column": 73 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9775, - "end": 9776, - "loc": { - "start": { - "line": 113, - "column": 73 - }, - "end": { - "line": 113, - "column": 74 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 9777, - "end": 9780, - "loc": { - "start": { - "line": 113, - "column": 75 - }, - "end": { - "line": 113, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 9781, - "end": 9782, - "loc": { - "start": { - "line": 113, - "column": 79 - }, - "end": { - "line": 113, - "column": 80 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9782, - "end": 9783, - "loc": { - "start": { - "line": 113, - "column": 80 - }, - "end": { - "line": 113, - "column": 81 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9783, - "end": 9784, - "loc": { - "start": { - "line": 113, - "column": 81 - }, - "end": { - "line": 113, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9785, - "end": 9786, - "loc": { - "start": { - "line": 113, - "column": 83 - }, - "end": { - "line": 113, - "column": 84 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 9787, - "end": 9789, - "loc": { - "start": { - "line": 113, - "column": 85 - }, - "end": { - "line": 113, - "column": 87 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9790, - "end": 9791, - "loc": { - "start": { - "line": 113, - "column": 88 - }, - "end": { - "line": 113, - "column": 89 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9791, - "end": 9792, - "loc": { - "start": { - "line": 113, - "column": 89 - }, - "end": { - "line": 113, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9792, - "end": 9793, - "loc": { - "start": { - "line": 113, - "column": 90 - }, - "end": { - "line": 113, - "column": 91 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9793, - "end": 9794, - "loc": { - "start": { - "line": 113, - "column": 91 - }, - "end": { - "line": 113, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9794, - "end": 9795, - "loc": { - "start": { - "line": 113, - "column": 92 - }, - "end": { - "line": 113, - "column": 93 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9795, - "end": 9797, - "loc": { - "start": { - "line": 113, - "column": 93 - }, - "end": { - "line": 113, - "column": 95 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9797, - "end": 9798, - "loc": { - "start": { - "line": 113, - "column": 95 - }, - "end": { - "line": 113, - "column": 96 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9799, - "end": 9800, - "loc": { - "start": { - "line": 113, - "column": 97 - }, - "end": { - "line": 113, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "z", - "start": 9801, - "end": 9802, - "loc": { - "start": { - "line": 113, - "column": 99 - }, - "end": { - "line": 113, - "column": 100 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9802, - "end": 9803, - "loc": { - "start": { - "line": 113, - "column": 100 - }, - "end": { - "line": 113, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9803, - "end": 9804, - "loc": { - "start": { - "line": 113, - "column": 101 - }, - "end": { - "line": 113, - "column": 102 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9804, - "end": 9805, - "loc": { - "start": { - "line": 113, - "column": 102 - }, - "end": { - "line": 113, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9805, - "end": 9806, - "loc": { - "start": { - "line": 113, - "column": 103 - }, - "end": { - "line": 113, - "column": 104 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 9806, - "end": 9808, - "loc": { - "start": { - "line": 113, - "column": 104 - }, - "end": { - "line": 113, - "column": 106 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9808, - "end": 9809, - "loc": { - "start": { - "line": 113, - "column": 106 - }, - "end": { - "line": 113, - "column": 107 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9810, - "end": 9811, - "loc": { - "start": { - "line": 113, - "column": 108 - }, - "end": { - "line": 113, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 9812, - "end": 9813, - "loc": { - "start": { - "line": 113, - "column": 110 - }, - "end": { - "line": 113, - "column": 111 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9813, - "end": 9814, - "loc": { - "start": { - "line": 113, - "column": 111 - }, - "end": { - "line": 113, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 9814, - "end": 9815, - "loc": { - "start": { - "line": 113, - "column": 112 - }, - "end": { - "line": 113, - "column": 113 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9816, - "end": 9817, - "loc": { - "start": { - "line": 113, - "column": 114 - }, - "end": { - "line": 113, - "column": 115 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9818, - "end": 9819, - "loc": { - "start": { - "line": 113, - "column": 116 - }, - "end": { - "line": 113, - "column": 117 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9819, - "end": 9820, - "loc": { - "start": { - "line": 113, - "column": 117 - }, - "end": { - "line": 113, - "column": 118 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9827, - "end": 9828, - "loc": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 114, - "column": 7 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 9828, - "end": 9831, - "loc": { - "start": { - "line": 114, - "column": 7 - }, - "end": { - "line": 114, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9832, - "end": 9833, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9833, - "end": 9834, - "loc": { - "start": { - "line": 114, - "column": 12 - }, - "end": { - "line": 114, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9834, - "end": 9835, - "loc": { - "start": { - "line": 114, - "column": 13 - }, - "end": { - "line": 114, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 9835, - "end": 9841, - "loc": { - "start": { - "line": 114, - "column": 14 - }, - "end": { - "line": 114, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9842, - "end": 9843, - "loc": { - "start": { - "line": 114, - "column": 21 - }, - "end": { - "line": 114, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "r", - "start": 9844, - "end": 9845, - "loc": { - "start": { - "line": 114, - "column": 23 - }, - "end": { - "line": 114, - "column": 24 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9845, - "end": 9846, - "loc": { - "start": { - "line": 114, - "column": 24 - }, - "end": { - "line": 114, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9847, - "end": 9848, - "loc": { - "start": { - "line": 114, - "column": 26 - }, - "end": { - "line": 114, - "column": 27 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 9849, - "end": 9850, - "loc": { - "start": { - "line": 114, - "column": 28 - }, - "end": { - "line": 114, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 9851, - "end": 9852, - "loc": { - "start": { - "line": 114, - "column": 30 - }, - "end": { - "line": 114, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9852, - "end": 9853, - "loc": { - "start": { - "line": 114, - "column": 31 - }, - "end": { - "line": 114, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9853, - "end": 9854, - "loc": { - "start": { - "line": 114, - "column": 32 - }, - "end": { - "line": 114, - "column": 33 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9855, - "end": 9856, - "loc": { - "start": { - "line": 114, - "column": 34 - }, - "end": { - "line": 114, - "column": 35 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 9865, - "end": 9868, - "loc": { - "start": { - "line": 115, - "column": 8 - }, - "end": { - "line": 115, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 9869, - "end": 9870, - "loc": { - "start": { - "line": 115, - "column": 12 - }, - "end": { - "line": 115, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9871, - "end": 9872, - "loc": { - "start": { - "line": 115, - "column": 14 - }, - "end": { - "line": 115, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 9873, - "end": 9874, - "loc": { - "start": { - "line": 115, - "column": 16 - }, - "end": { - "line": 115, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9874, - "end": 9875, - "loc": { - "start": { - "line": 115, - "column": 17 - }, - "end": { - "line": 115, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9875, - "end": 9876, - "loc": { - "start": { - "line": 115, - "column": 18 - }, - "end": { - "line": 115, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9877, - "end": 9878, - "loc": { - "start": { - "line": 115, - "column": 20 - }, - "end": { - "line": 115, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9879, - "end": 9880, - "loc": { - "start": { - "line": 115, - "column": 22 - }, - "end": { - "line": 115, - "column": 23 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9880, - "end": 9881, - "loc": { - "start": { - "line": 115, - "column": 23 - }, - "end": { - "line": 115, - "column": 24 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 9882, - "end": 9884, - "loc": { - "start": { - "line": 115, - "column": 25 - }, - "end": { - "line": 115, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 9885, - "end": 9886, - "loc": { - "start": { - "line": 115, - "column": 28 - }, - "end": { - "line": 115, - "column": 29 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9886, - "end": 9887, - "loc": { - "start": { - "line": 115, - "column": 29 - }, - "end": { - "line": 115, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 9900, - "end": 9901, - "loc": { - "start": { - "line": 116, - "column": 12 - }, - "end": { - "line": 116, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9902, - "end": 9903, - "loc": { - "start": { - "line": 116, - "column": 14 - }, - "end": { - "line": 116, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 9904, - "end": 9905, - "loc": { - "start": { - "line": 116, - "column": 16 - }, - "end": { - "line": 116, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9905, - "end": 9906, - "loc": { - "start": { - "line": 116, - "column": 17 - }, - "end": { - "line": 116, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 9906, - "end": 9907, - "loc": { - "start": { - "line": 116, - "column": 18 - }, - "end": { - "line": 116, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9908, - "end": 9909, - "loc": { - "start": { - "line": 116, - "column": 20 - }, - "end": { - "line": 116, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 9910, - "end": 9911, - "loc": { - "start": { - "line": 116, - "column": 22 - }, - "end": { - "line": 116, - "column": 23 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9911, - "end": 9912, - "loc": { - "start": { - "line": 116, - "column": 23 - }, - "end": { - "line": 116, - "column": 24 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 9913, - "end": 9915, - "loc": { - "start": { - "line": 116, - "column": 25 - }, - "end": { - "line": 116, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 9916, - "end": 9917, - "loc": { - "start": { - "line": 116, - "column": 28 - }, - "end": { - "line": 116, - "column": 29 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9917, - "end": 9918, - "loc": { - "start": { - "line": 116, - "column": 29 - }, - "end": { - "line": 116, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 9931, - "end": 9932, - "loc": { - "start": { - "line": 117, - "column": 12 - }, - "end": { - "line": 117, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9933, - "end": 9934, - "loc": { - "start": { - "line": 117, - "column": 14 - }, - "end": { - "line": 117, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Math", - "start": 9935, - "end": 9939, - "loc": { - "start": { - "line": 117, - "column": 16 - }, - "end": { - "line": 117, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9939, - "end": 9940, - "loc": { - "start": { - "line": 117, - "column": 20 - }, - "end": { - "line": 117, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "min", - "start": 9940, - "end": 9943, - "loc": { - "start": { - "line": 117, - "column": 21 - }, - "end": { - "line": 117, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9943, - "end": 9944, - "loc": { - "start": { - "line": 117, - "column": 24 - }, - "end": { - "line": 117, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 9944, - "end": 9945, - "loc": { - "start": { - "line": 117, - "column": 25 - }, - "end": { - "line": 117, - "column": 26 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9945, - "end": 9946, - "loc": { - "start": { - "line": 117, - "column": 26 - }, - "end": { - "line": 117, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 9947, - "end": 9948, - "loc": { - "start": { - "line": 117, - "column": 28 - }, - "end": { - "line": 117, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9948, - "end": 9949, - "loc": { - "start": { - "line": 117, - "column": 29 - }, - "end": { - "line": 117, - "column": 30 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9949, - "end": 9950, - "loc": { - "start": { - "line": 117, - "column": 30 - }, - "end": { - "line": 117, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 9963, - "end": 9964, - "loc": { - "start": { - "line": 118, - "column": 12 - }, - "end": { - "line": 118, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9965, - "end": 9966, - "loc": { - "start": { - "line": 118, - "column": 14 - }, - "end": { - "line": 118, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 9967, - "end": 9968, - "loc": { - "start": { - "line": 118, - "column": 16 - }, - "end": { - "line": 118, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9968, - "end": 9969, - "loc": { - "start": { - "line": 118, - "column": 17 - }, - "end": { - "line": 118, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 9969, - "end": 9970, - "loc": { - "start": { - "line": 118, - "column": 18 - }, - "end": { - "line": 118, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 9971, - "end": 9972, - "loc": { - "start": { - "line": 118, - "column": 20 - }, - "end": { - "line": 118, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 9973, - "end": 9974, - "loc": { - "start": { - "line": 118, - "column": 22 - }, - "end": { - "line": 118, - "column": 23 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9974, - "end": 9975, - "loc": { - "start": { - "line": 118, - "column": 23 - }, - "end": { - "line": 118, - "column": 24 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9975, - "end": 9976, - "loc": { - "start": { - "line": 118, - "column": 24 - }, - "end": { - "line": 118, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 9989, - "end": 9990, - "loc": { - "start": { - "line": 119, - "column": 12 - }, - "end": { - "line": 119, - "column": 13 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9990, - "end": 9991, - "loc": { - "start": { - "line": 119, - "column": 13 - }, - "end": { - "line": 119, - "column": 14 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 9991, - "end": 9993, - "loc": { - "start": { - "line": 119, - "column": 14 - }, - "end": { - "line": 119, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9994, - "end": 9995, - "loc": { - "start": { - "line": 119, - "column": 17 - }, - "end": { - "line": 119, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 9995, - "end": 9996, - "loc": { - "start": { - "line": 119, - "column": 18 - }, - "end": { - "line": 119, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9996, - "end": 9997, - "loc": { - "start": { - "line": 119, - "column": 19 - }, - "end": { - "line": 119, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeType", - "start": 9997, - "end": 10005, - "loc": { - "start": { - "line": 119, - "column": 20 - }, - "end": { - "line": 119, - "column": 28 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 10006, - "end": 10009, - "loc": { - "start": { - "line": 119, - "column": 29 - }, - "end": { - "line": 119, - "column": 32 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 10010, - "end": 10011, - "loc": { - "start": { - "line": 119, - "column": 33 - }, - "end": { - "line": 119, - "column": 34 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10012, - "end": 10014, - "loc": { - "start": { - "line": 119, - "column": 35 - }, - "end": { - "line": 119, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10015, - "end": 10016, - "loc": { - "start": { - "line": 119, - "column": 38 - }, - "end": { - "line": 119, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 10016, - "end": 10017, - "loc": { - "start": { - "line": 119, - "column": 39 - }, - "end": { - "line": 119, - "column": 40 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10018, - "end": 10019, - "loc": { - "start": { - "line": 119, - "column": 41 - }, - "end": { - "line": 119, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 10020, - "end": 10021, - "loc": { - "start": { - "line": 119, - "column": 43 - }, - "end": { - "line": 119, - "column": 44 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10021, - "end": 10022, - "loc": { - "start": { - "line": 119, - "column": 44 - }, - "end": { - "line": 119, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 10022, - "end": 10031, - "loc": { - "start": { - "line": 119, - "column": 45 - }, - "end": { - "line": 119, - "column": 54 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10031, - "end": 10032, - "loc": { - "start": { - "line": 119, - "column": 54 - }, - "end": { - "line": 119, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 10032, - "end": 10033, - "loc": { - "start": { - "line": 119, - "column": 55 - }, - "end": { - "line": 119, - "column": 56 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10033, - "end": 10034, - "loc": { - "start": { - "line": 119, - "column": 56 - }, - "end": { - "line": 119, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 10035, - "end": 10036, - "loc": { - "start": { - "line": 119, - "column": 58 - }, - "end": { - "line": 119, - "column": 59 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10036, - "end": 10037, - "loc": { - "start": { - "line": 119, - "column": 59 - }, - "end": { - "line": 119, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10037, - "end": 10038, - "loc": { - "start": { - "line": 119, - "column": 60 - }, - "end": { - "line": 119, - "column": 61 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10038, - "end": 10039, - "loc": { - "start": { - "line": 119, - "column": 61 - }, - "end": { - "line": 119, - "column": 62 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10040, - "end": 10041, - "loc": { - "start": { - "line": 119, - "column": 63 - }, - "end": { - "line": 119, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 10052, - "end": 10053, - "loc": { - "start": { - "line": 120, - "column": 10 - }, - "end": { - "line": 120, - "column": 11 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10054, - "end": 10056, - "loc": { - "start": { - "line": 120, - "column": 12 - }, - "end": { - "line": 120, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10057, - "end": 10058, - "loc": { - "start": { - "line": 120, - "column": 15 - }, - "end": { - "line": 120, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 10058, - "end": 10059, - "loc": { - "start": { - "line": 120, - "column": 16 - }, - "end": { - "line": 120, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10060, - "end": 10061, - "loc": { - "start": { - "line": 120, - "column": 18 - }, - "end": { - "line": 120, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 10062, - "end": 10063, - "loc": { - "start": { - "line": 120, - "column": 20 - }, - "end": { - "line": 120, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10063, - "end": 10064, - "loc": { - "start": { - "line": 120, - "column": 21 - }, - "end": { - "line": 120, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 10064, - "end": 10071, - "loc": { - "start": { - "line": 120, - "column": 22 - }, - "end": { - "line": 120, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10071, - "end": 10072, - "loc": { - "start": { - "line": 120, - "column": 29 - }, - "end": { - "line": 120, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 10072, - "end": 10073, - "loc": { - "start": { - "line": 120, - "column": 30 - }, - "end": { - "line": 120, - "column": 31 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10073, - "end": 10074, - "loc": { - "start": { - "line": 120, - "column": 31 - }, - "end": { - "line": 120, - "column": 32 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\r", - "start": 10075, - "end": 10079, - "loc": { - "start": { - "line": 120, - "column": 33 - }, - "end": { - "line": 120, - "column": 37 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10079, - "end": 10080, - "loc": { - "start": { - "line": 120, - "column": 37 - }, - "end": { - "line": 120, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10080, - "end": 10081, - "loc": { - "start": { - "line": 120, - "column": 38 - }, - "end": { - "line": 120, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10081, - "end": 10082, - "loc": { - "start": { - "line": 120, - "column": 39 - }, - "end": { - "line": 120, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10082, - "end": 10083, - "loc": { - "start": { - "line": 120, - "column": 40 - }, - "end": { - "line": 120, - "column": 41 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10083, - "end": 10084, - "loc": { - "start": { - "line": 120, - "column": 41 - }, - "end": { - "line": 120, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeValue", - "start": 10084, - "end": 10093, - "loc": { - "start": { - "line": 120, - "column": 42 - }, - "end": { - "line": 120, - "column": 51 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10094, - "end": 10095, - "loc": { - "start": { - "line": 120, - "column": 52 - }, - "end": { - "line": 120, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "j", - "start": 10096, - "end": 10097, - "loc": { - "start": { - "line": 120, - "column": 54 - }, - "end": { - "line": 120, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10097, - "end": 10098, - "loc": { - "start": { - "line": 120, - "column": 55 - }, - "end": { - "line": 120, - "column": 56 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 10098, - "end": 10101, - "loc": { - "start": { - "line": 120, - "column": 56 - }, - "end": { - "line": 120, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 10102, - "end": 10103, - "loc": { - "start": { - "line": 120, - "column": 60 - }, - "end": { - "line": 120, - "column": 61 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10104, - "end": 10105, - "loc": { - "start": { - "line": 120, - "column": 62 - }, - "end": { - "line": 120, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10106, - "end": 10107, - "loc": { - "start": { - "line": 120, - "column": 64 - }, - "end": { - "line": 120, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10107, - "end": 10108, - "loc": { - "start": { - "line": 120, - "column": 65 - }, - "end": { - "line": 120, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ownerDocument", - "start": 10108, - "end": 10121, - "loc": { - "start": { - "line": 120, - "column": 66 - }, - "end": { - "line": 120, - "column": 79 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10121, - "end": 10122, - "loc": { - "start": { - "line": 120, - "column": 79 - }, - "end": { - "line": 120, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10137, - "end": 10138, - "loc": { - "start": { - "line": 121, - "column": 14 - }, - "end": { - "line": 121, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10139, - "end": 10140, - "loc": { - "start": { - "line": 121, - "column": 16 - }, - "end": { - "line": 121, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 10141, - "end": 10142, - "loc": { - "start": { - "line": 121, - "column": 18 - }, - "end": { - "line": 121, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10142, - "end": 10143, - "loc": { - "start": { - "line": 121, - "column": 19 - }, - "end": { - "line": 121, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createElement", - "start": 10143, - "end": 10156, - "loc": { - "start": { - "line": 121, - "column": 20 - }, - "end": { - "line": 121, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10156, - "end": 10157, - "loc": { - "start": { - "line": 121, - "column": 33 - }, - "end": { - "line": 121, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "SPAN", - "start": 10157, - "end": 10163, - "loc": { - "start": { - "line": 121, - "column": 34 - }, - "end": { - "line": 121, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10163, - "end": 10164, - "loc": { - "start": { - "line": 121, - "column": 40 - }, - "end": { - "line": 121, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10164, - "end": 10165, - "loc": { - "start": { - "line": 121, - "column": 41 - }, - "end": { - "line": 121, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10165, - "end": 10166, - "loc": { - "start": { - "line": 121, - "column": 42 - }, - "end": { - "line": 121, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10166, - "end": 10167, - "loc": { - "start": { - "line": 121, - "column": 43 - }, - "end": { - "line": 121, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 10167, - "end": 10176, - "loc": { - "start": { - "line": 121, - "column": 44 - }, - "end": { - "line": 121, - "column": 53 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10177, - "end": 10178, - "loc": { - "start": { - "line": 121, - "column": 54 - }, - "end": { - "line": 121, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 10179, - "end": 10180, - "loc": { - "start": { - "line": 121, - "column": 56 - }, - "end": { - "line": 121, - "column": 57 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10180, - "end": 10181, - "loc": { - "start": { - "line": 121, - "column": 57 - }, - "end": { - "line": 121, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 10181, - "end": 10182, - "loc": { - "start": { - "line": 121, - "column": 58 - }, - "end": { - "line": 121, - "column": 59 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 10183, - "end": 10184, - "loc": { - "start": { - "line": 121, - "column": 60 - }, - "end": { - "line": 121, - "column": 61 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 10185, - "end": 10186, - "loc": { - "start": { - "line": 121, - "column": 62 - }, - "end": { - "line": 121, - "column": 63 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10186, - "end": 10187, - "loc": { - "start": { - "line": 121, - "column": 63 - }, - "end": { - "line": 121, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10187, - "end": 10188, - "loc": { - "start": { - "line": 121, - "column": 64 - }, - "end": { - "line": 121, - "column": 65 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 10188, - "end": 10191, - "loc": { - "start": { - "line": 121, - "column": 65 - }, - "end": { - "line": 121, - "column": 68 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 10192, - "end": 10193, - "loc": { - "start": { - "line": 121, - "column": 69 - }, - "end": { - "line": 121, - "column": 70 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10194, - "end": 10195, - "loc": { - "start": { - "line": 121, - "column": 71 - }, - "end": { - "line": 121, - "column": 72 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10196, - "end": 10197, - "loc": { - "start": { - "line": 121, - "column": 73 - }, - "end": { - "line": 121, - "column": 74 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10197, - "end": 10198, - "loc": { - "start": { - "line": 121, - "column": 74 - }, - "end": { - "line": 121, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 10198, - "end": 10208, - "loc": { - "start": { - "line": 121, - "column": 75 - }, - "end": { - "line": 121, - "column": 85 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10208, - "end": 10209, - "loc": { - "start": { - "line": 121, - "column": 85 - }, - "end": { - "line": 121, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 10209, - "end": 10210, - "loc": { - "start": { - "line": 121, - "column": 86 - }, - "end": { - "line": 121, - "column": 87 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10210, - "end": 10211, - "loc": { - "start": { - "line": 121, - "column": 87 - }, - "end": { - "line": 121, - "column": 88 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replaceChild", - "start": 10211, - "end": 10223, - "loc": { - "start": { - "line": 121, - "column": 88 - }, - "end": { - "line": 121, - "column": 100 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10223, - "end": 10224, - "loc": { - "start": { - "line": 121, - "column": 100 - }, - "end": { - "line": 121, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10224, - "end": 10225, - "loc": { - "start": { - "line": 121, - "column": 101 - }, - "end": { - "line": 121, - "column": 102 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10225, - "end": 10226, - "loc": { - "start": { - "line": 121, - "column": 102 - }, - "end": { - "line": 121, - "column": 103 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10227, - "end": 10228, - "loc": { - "start": { - "line": 121, - "column": 104 - }, - "end": { - "line": 121, - "column": 105 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10228, - "end": 10229, - "loc": { - "start": { - "line": 121, - "column": 105 - }, - "end": { - "line": 121, - "column": 106 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10229, - "end": 10230, - "loc": { - "start": { - "line": 121, - "column": 106 - }, - "end": { - "line": 121, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10230, - "end": 10231, - "loc": { - "start": { - "line": 121, - "column": 107 - }, - "end": { - "line": 121, - "column": 108 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10231, - "end": 10232, - "loc": { - "start": { - "line": 121, - "column": 108 - }, - "end": { - "line": 121, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "appendChild", - "start": 10232, - "end": 10243, - "loc": { - "start": { - "line": 121, - "column": 109 - }, - "end": { - "line": 121, - "column": 120 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10243, - "end": 10244, - "loc": { - "start": { - "line": 121, - "column": 120 - }, - "end": { - "line": 121, - "column": 121 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10244, - "end": 10245, - "loc": { - "start": { - "line": 121, - "column": 121 - }, - "end": { - "line": 121, - "column": 122 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10245, - "end": 10246, - "loc": { - "start": { - "line": 121, - "column": 122 - }, - "end": { - "line": 121, - "column": 123 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10246, - "end": 10247, - "loc": { - "start": { - "line": 121, - "column": 123 - }, - "end": { - "line": 121, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 10247, - "end": 10248, - "loc": { - "start": { - "line": 121, - "column": 124 - }, - "end": { - "line": 121, - "column": 125 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 10249, - "end": 10250, - "loc": { - "start": { - "line": 121, - "column": 126 - }, - "end": { - "line": 121, - "column": 127 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 10251, - "end": 10252, - "loc": { - "start": { - "line": 121, - "column": 128 - }, - "end": { - "line": 121, - "column": 129 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10253, - "end": 10255, - "loc": { - "start": { - "line": 121, - "column": 130 - }, - "end": { - "line": 121, - "column": 132 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10256, - "end": 10257, - "loc": { - "start": { - "line": 121, - "column": 133 - }, - "end": { - "line": 121, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 10257, - "end": 10258, - "loc": { - "start": { - "line": 121, - "column": 134 - }, - "end": { - "line": 121, - "column": 135 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10258, - "end": 10259, - "loc": { - "start": { - "line": 121, - "column": 135 - }, - "end": { - "line": 121, - "column": 136 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 10259, - "end": 10260, - "loc": { - "start": { - "line": 121, - "column": 136 - }, - "end": { - "line": 121, - "column": 137 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 10261, - "end": 10262, - "loc": { - "start": { - "line": 121, - "column": 138 - }, - "end": { - "line": 121, - "column": 139 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 10263, - "end": 10264, - "loc": { - "start": { - "line": 121, - "column": 140 - }, - "end": { - "line": 121, - "column": 141 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10264, - "end": 10265, - "loc": { - "start": { - "line": 121, - "column": 141 - }, - "end": { - "line": 121, - "column": 142 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10266, - "end": 10267, - "loc": { - "start": { - "line": 121, - "column": 143 - }, - "end": { - "line": 121, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10268, - "end": 10269, - "loc": { - "start": { - "line": 121, - "column": 145 - }, - "end": { - "line": 121, - "column": 146 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10270, - "end": 10271, - "loc": { - "start": { - "line": 121, - "column": 147 - }, - "end": { - "line": 121, - "column": 148 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 10272, - "end": 10273, - "loc": { - "start": { - "line": 121, - "column": 149 - }, - "end": { - "line": 121, - "column": 150 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10273, - "end": 10274, - "loc": { - "start": { - "line": 121, - "column": 150 - }, - "end": { - "line": 121, - "column": 151 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createTextNode", - "start": 10274, - "end": 10288, - "loc": { - "start": { - "line": 121, - "column": 151 - }, - "end": { - "line": 121, - "column": 165 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10288, - "end": 10289, - "loc": { - "start": { - "line": 121, - "column": 165 - }, - "end": { - "line": 121, - "column": 166 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 10289, - "end": 10290, - "loc": { - "start": { - "line": 121, - "column": 166 - }, - "end": { - "line": 121, - "column": 167 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10290, - "end": 10291, - "loc": { - "start": { - "line": 121, - "column": 167 - }, - "end": { - "line": 121, - "column": 168 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "substring", - "start": 10291, - "end": 10300, - "loc": { - "start": { - "line": 121, - "column": 168 - }, - "end": { - "line": 121, - "column": 177 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10300, - "end": 10301, - "loc": { - "start": { - "line": 121, - "column": 177 - }, - "end": { - "line": 121, - "column": 178 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 10301, - "end": 10302, - "loc": { - "start": { - "line": 121, - "column": 178 - }, - "end": { - "line": 121, - "column": 179 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10302, - "end": 10303, - "loc": { - "start": { - "line": 121, - "column": 179 - }, - "end": { - "line": 121, - "column": 180 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 10304, - "end": 10305, - "loc": { - "start": { - "line": 121, - "column": 181 - }, - "end": { - "line": 121, - "column": 182 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10305, - "end": 10306, - "loc": { - "start": { - "line": 121, - "column": 182 - }, - "end": { - "line": 121, - "column": 183 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10306, - "end": 10307, - "loc": { - "start": { - "line": 121, - "column": 183 - }, - "end": { - "line": 121, - "column": 184 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10307, - "end": 10308, - "loc": { - "start": { - "line": 121, - "column": 184 - }, - "end": { - "line": 121, - "column": 185 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 10309, - "end": 10310, - "loc": { - "start": { - "line": 121, - "column": 186 - }, - "end": { - "line": 121, - "column": 187 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10310, - "end": 10311, - "loc": { - "start": { - "line": 121, - "column": 187 - }, - "end": { - "line": 121, - "column": 188 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "insertBefore", - "start": 10311, - "end": 10323, - "loc": { - "start": { - "line": 121, - "column": 188 - }, - "end": { - "line": 121, - "column": 200 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10323, - "end": 10324, - "loc": { - "start": { - "line": 121, - "column": 200 - }, - "end": { - "line": 121, - "column": 201 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 10324, - "end": 10325, - "loc": { - "start": { - "line": 121, - "column": 201 - }, - "end": { - "line": 121, - "column": 202 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10325, - "end": 10326, - "loc": { - "start": { - "line": 121, - "column": 202 - }, - "end": { - "line": 121, - "column": 203 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10327, - "end": 10328, - "loc": { - "start": { - "line": 121, - "column": 204 - }, - "end": { - "line": 121, - "column": 205 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10328, - "end": 10329, - "loc": { - "start": { - "line": 121, - "column": 205 - }, - "end": { - "line": 121, - "column": 206 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 10329, - "end": 10340, - "loc": { - "start": { - "line": 121, - "column": 206 - }, - "end": { - "line": 121, - "column": 217 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10340, - "end": 10341, - "loc": { - "start": { - "line": 121, - "column": 217 - }, - "end": { - "line": 121, - "column": 218 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10341, - "end": 10342, - "loc": { - "start": { - "line": 121, - "column": 218 - }, - "end": { - "line": 121, - "column": 219 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10342, - "end": 10343, - "loc": { - "start": { - "line": 121, - "column": 219 - }, - "end": { - "line": 121, - "column": 220 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10352, - "end": 10353, - "loc": { - "start": { - "line": 122, - "column": 8 - }, - "end": { - "line": 122, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 10353, - "end": 10354, - "loc": { - "start": { - "line": 122, - "column": 9 - }, - "end": { - "line": 122, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10355, - "end": 10356, - "loc": { - "start": { - "line": 122, - "column": 11 - }, - "end": { - "line": 122, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 10357, - "end": 10358, - "loc": { - "start": { - "line": 122, - "column": 13 - }, - "end": { - "line": 122, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10358, - "end": 10359, - "loc": { - "start": { - "line": 122, - "column": 14 - }, - "end": { - "line": 122, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 10359, - "end": 10360, - "loc": { - "start": { - "line": 122, - "column": 15 - }, - "end": { - "line": 122, - "column": 16 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 10361, - "end": 10363, - "loc": { - "start": { - "line": 122, - "column": 17 - }, - "end": { - "line": 122, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 10364, - "end": 10365, - "loc": { - "start": { - "line": 122, - "column": 20 - }, - "end": { - "line": 122, - "column": 21 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10366, - "end": 10368, - "loc": { - "start": { - "line": 122, - "column": 22 - }, - "end": { - "line": 122, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10369, - "end": 10370, - "loc": { - "start": { - "line": 122, - "column": 25 - }, - "end": { - "line": 122, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 10370, - "end": 10371, - "loc": { - "start": { - "line": 122, - "column": 26 - }, - "end": { - "line": 122, - "column": 27 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 10372, - "end": 10374, - "loc": { - "start": { - "line": 122, - "column": 28 - }, - "end": { - "line": 122, - "column": 30 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 10375, - "end": 10376, - "loc": { - "start": { - "line": 122, - "column": 31 - }, - "end": { - "line": 122, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10376, - "end": 10377, - "loc": { - "start": { - "line": 122, - "column": 32 - }, - "end": { - "line": 122, - "column": 33 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10377, - "end": 10378, - "loc": { - "start": { - "line": 122, - "column": 33 - }, - "end": { - "line": 122, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 10378, - "end": 10379, - "loc": { - "start": { - "line": 122, - "column": 34 - }, - "end": { - "line": 122, - "column": 35 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 10380, - "end": 10382, - "loc": { - "start": { - "line": 122, - "column": 36 - }, - "end": { - "line": 122, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 10383, - "end": 10384, - "loc": { - "start": { - "line": 122, - "column": 39 - }, - "end": { - "line": 122, - "column": 40 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10385, - "end": 10387, - "loc": { - "start": { - "line": 122, - "column": 41 - }, - "end": { - "line": 122, - "column": 43 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10388, - "end": 10389, - "loc": { - "start": { - "line": 122, - "column": 44 - }, - "end": { - "line": 122, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 10389, - "end": 10390, - "loc": { - "start": { - "line": 122, - "column": 45 - }, - "end": { - "line": 122, - "column": 46 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 10391, - "end": 10393, - "loc": { - "start": { - "line": 122, - "column": 47 - }, - "end": { - "line": 122, - "column": 49 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 10394, - "end": 10395, - "loc": { - "start": { - "line": 122, - "column": 50 - }, - "end": { - "line": 122, - "column": 51 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10395, - "end": 10396, - "loc": { - "start": { - "line": 122, - "column": 51 - }, - "end": { - "line": 122, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10396, - "end": 10397, - "loc": { - "start": { - "line": 122, - "column": 52 - }, - "end": { - "line": 122, - "column": 53 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10404, - "end": 10405, - "loc": { - "start": { - "line": 123, - "column": 6 - }, - "end": { - "line": 123, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10410, - "end": 10411, - "loc": { - "start": { - "line": 124, - "column": 4 - }, - "end": { - "line": 124, - "column": 5 - } - } - }, - { - "type": { - "label": "catch", - "keyword": "catch", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "catch", - "start": 10412, - "end": 10417, - "loc": { - "start": { - "line": 124, - "column": 6 - }, - "end": { - "line": 124, - "column": 11 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10418, - "end": 10419, - "loc": { - "start": { - "line": 124, - "column": 12 - }, - "end": { - "line": 124, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10419, - "end": 10420, - "loc": { - "start": { - "line": 124, - "column": 13 - }, - "end": { - "line": 124, - "column": 14 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10420, - "end": 10421, - "loc": { - "start": { - "line": 124, - "column": 14 - }, - "end": { - "line": 124, - "column": 15 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10422, - "end": 10423, - "loc": { - "start": { - "line": 124, - "column": 16 - }, - "end": { - "line": 124, - "column": 17 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "console", - "start": 10430, - "end": 10439, - "loc": { - "start": { - "line": 125, - "column": 6 - }, - "end": { - "line": 125, - "column": 15 - } - } - }, - { - "type": { - "label": "in", - "keyword": "in", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "in", - "start": 10440, - "end": 10442, - "loc": { - "start": { - "line": 125, - "column": 16 - }, - "end": { - "line": 125, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 10443, - "end": 10449, - "loc": { - "start": { - "line": 125, - "column": 19 - }, - "end": { - "line": 125, - "column": 25 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10450, - "end": 10452, - "loc": { - "start": { - "line": 125, - "column": 26 - }, - "end": { - "line": 125, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "console", - "start": 10453, - "end": 10460, - "loc": { - "start": { - "line": 125, - "column": 29 - }, - "end": { - "line": 125, - "column": 36 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10460, - "end": 10461, - "loc": { - "start": { - "line": 125, - "column": 36 - }, - "end": { - "line": 125, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "log", - "start": 10461, - "end": 10464, - "loc": { - "start": { - "line": 125, - "column": 37 - }, - "end": { - "line": 125, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10464, - "end": 10465, - "loc": { - "start": { - "line": 125, - "column": 40 - }, - "end": { - "line": 125, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10465, - "end": 10466, - "loc": { - "start": { - "line": 125, - "column": 41 - }, - "end": { - "line": 125, - "column": 42 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 10467, - "end": 10469, - "loc": { - "start": { - "line": 125, - "column": 43 - }, - "end": { - "line": 125, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10470, - "end": 10471, - "loc": { - "start": { - "line": 125, - "column": 46 - }, - "end": { - "line": 125, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10471, - "end": 10472, - "loc": { - "start": { - "line": 125, - "column": 47 - }, - "end": { - "line": 125, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "stack", - "start": 10472, - "end": 10477, - "loc": { - "start": { - "line": 125, - "column": 48 - }, - "end": { - "line": 125, - "column": 53 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10478, - "end": 10479, - "loc": { - "start": { - "line": 125, - "column": 54 - }, - "end": { - "line": 125, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10480, - "end": 10481, - "loc": { - "start": { - "line": 125, - "column": 56 - }, - "end": { - "line": 125, - "column": 57 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10481, - "end": 10482, - "loc": { - "start": { - "line": 125, - "column": 57 - }, - "end": { - "line": 125, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "stack", - "start": 10482, - "end": 10487, - "loc": { - "start": { - "line": 125, - "column": 58 - }, - "end": { - "line": 125, - "column": 63 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10488, - "end": 10489, - "loc": { - "start": { - "line": 125, - "column": 64 - }, - "end": { - "line": 125, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10490, - "end": 10491, - "loc": { - "start": { - "line": 125, - "column": 66 - }, - "end": { - "line": 125, - "column": 67 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10491, - "end": 10492, - "loc": { - "start": { - "line": 125, - "column": 67 - }, - "end": { - "line": 125, - "column": 68 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10492, - "end": 10493, - "loc": { - "start": { - "line": 125, - "column": 68 - }, - "end": { - "line": 125, - "column": 69 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10498, - "end": 10499, - "loc": { - "start": { - "line": 126, - "column": 4 - }, - "end": { - "line": 126, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10502, - "end": 10503, - "loc": { - "start": { - "line": 127, - "column": 2 - }, - "end": { - "line": 127, - "column": 3 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 10503, - "end": 10506, - "loc": { - "start": { - "line": 127, - "column": 3 - }, - "end": { - "line": 127, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10507, - "end": 10508, - "loc": { - "start": { - "line": 127, - "column": 7 - }, - "end": { - "line": 127, - "column": 8 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10509, - "end": 10510, - "loc": { - "start": { - "line": 127, - "column": 9 - }, - "end": { - "line": 127, - "column": 10 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10511, - "end": 10512, - "loc": { - "start": { - "line": 127, - "column": 11 - }, - "end": { - "line": 127, - "column": 12 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break,continue,do,else,for,if,return,while", - "start": 10512, - "end": 10556, - "loc": { - "start": { - "line": 127, - "column": 12 - }, - "end": { - "line": 127, - "column": 56 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10556, - "end": 10557, - "loc": { - "start": { - "line": 127, - "column": 56 - }, - "end": { - "line": 127, - "column": 57 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10557, - "end": 10558, - "loc": { - "start": { - "line": 127, - "column": 57 - }, - "end": { - "line": 127, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10565, - "end": 10566, - "loc": { - "start": { - "line": 128, - "column": 6 - }, - "end": { - "line": 128, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10567, - "end": 10568, - "loc": { - "start": { - "line": 128, - "column": 8 - }, - "end": { - "line": 128, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10569, - "end": 10570, - "loc": { - "start": { - "line": 128, - "column": 10 - }, - "end": { - "line": 128, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10570, - "end": 10571, - "loc": { - "start": { - "line": 128, - "column": 11 - }, - "end": { - "line": 128, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 10571, - "end": 10572, - "loc": { - "start": { - "line": 128, - "column": 12 - }, - "end": { - "line": 128, - "column": 13 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10572, - "end": 10573, - "loc": { - "start": { - "line": 128, - "column": 13 - }, - "end": { - "line": 128, - "column": 14 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile", - "start": 10574, - "end": 10730, - "loc": { - "start": { - "line": 128, - "column": 15 - }, - "end": { - "line": 128, - "column": 171 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10730, - "end": 10731, - "loc": { - "start": { - "line": 128, - "column": 171 - }, - "end": { - "line": 128, - "column": 172 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10731, - "end": 10732, - "loc": { - "start": { - "line": 128, - "column": 172 - }, - "end": { - "line": 128, - "column": 173 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof", - "start": 10733, - "end": 10831, - "loc": { - "start": { - "line": 128, - "column": 174 - }, - "end": { - "line": 128, - "column": 272 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10831, - "end": 10832, - "loc": { - "start": { - "line": 128, - "column": 272 - }, - "end": { - "line": 128, - "column": 273 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10832, - "end": 10833, - "loc": { - "start": { - "line": 128, - "column": 273 - }, - "end": { - "line": 128, - "column": 274 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "F", - "start": 10840, - "end": 10841, - "loc": { - "start": { - "line": 129, - "column": 6 - }, - "end": { - "line": 129, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10842, - "end": 10843, - "loc": { - "start": { - "line": 129, - "column": 8 - }, - "end": { - "line": 129, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10844, - "end": 10845, - "loc": { - "start": { - "line": 129, - "column": 10 - }, - "end": { - "line": 129, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 10845, - "end": 10846, - "loc": { - "start": { - "line": 129, - "column": 11 - }, - "end": { - "line": 129, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10846, - "end": 10847, - "loc": { - "start": { - "line": 129, - "column": 12 - }, - "end": { - "line": 129, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where", - "start": 10848, - "end": 11102, - "loc": { - "start": { - "line": 129, - "column": 14 - }, - "end": { - "line": 129, - "column": 268 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11102, - "end": 11103, - "loc": { - "start": { - "line": 129, - "column": 268 - }, - "end": { - "line": 129, - "column": 269 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11103, - "end": 11104, - "loc": { - "start": { - "line": 129, - "column": 269 - }, - "end": { - "line": 129, - "column": 270 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "G", - "start": 11111, - "end": 11112, - "loc": { - "start": { - "line": 130, - "column": 6 - }, - "end": { - "line": 130, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11113, - "end": 11114, - "loc": { - "start": { - "line": 130, - "column": 8 - }, - "end": { - "line": 130, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11115, - "end": 11116, - "loc": { - "start": { - "line": 130, - "column": 10 - }, - "end": { - "line": 130, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 11116, - "end": 11117, - "loc": { - "start": { - "line": 130, - "column": 11 - }, - "end": { - "line": 130, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11117, - "end": 11118, - "loc": { - "start": { - "line": 130, - "column": 12 - }, - "end": { - "line": 130, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient", - "start": 11119, - "end": 11258, - "loc": { - "start": { - "line": 130, - "column": 14 - }, - "end": { - "line": 130, - "column": 153 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11258, - "end": 11259, - "loc": { - "start": { - "line": 130, - "column": 153 - }, - "end": { - "line": 130, - "column": 154 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11259, - "end": 11260, - "loc": { - "start": { - "line": 130, - "column": 154 - }, - "end": { - "line": 130, - "column": 155 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "H", - "start": 11267, - "end": 11268, - "loc": { - "start": { - "line": 131, - "column": 6 - }, - "end": { - "line": 131, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11269, - "end": 11270, - "loc": { - "start": { - "line": 131, - "column": 8 - }, - "end": { - "line": 131, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11271, - "end": 11272, - "loc": { - "start": { - "line": 131, - "column": 10 - }, - "end": { - "line": 131, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "G", - "start": 11272, - "end": 11273, - "loc": { - "start": { - "line": 131, - "column": 11 - }, - "end": { - "line": 131, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11273, - "end": 11274, - "loc": { - "start": { - "line": 131, - "column": 12 - }, - "end": { - "line": 131, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var", - "start": 11275, - "end": 11539, - "loc": { - "start": { - "line": 131, - "column": 14 - }, - "end": { - "line": 131, - "column": 278 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11539, - "end": 11540, - "loc": { - "start": { - "line": 131, - "column": 278 - }, - "end": { - "line": 131, - "column": 279 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11540, - "end": 11541, - "loc": { - "start": { - "line": 131, - "column": 279 - }, - "end": { - "line": 131, - "column": 280 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 11548, - "end": 11549, - "loc": { - "start": { - "line": 132, - "column": 6 - }, - "end": { - "line": 132, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11550, - "end": 11551, - "loc": { - "start": { - "line": 132, - "column": 8 - }, - "end": { - "line": 132, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11552, - "end": 11553, - "loc": { - "start": { - "line": 132, - "column": 10 - }, - "end": { - "line": 132, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 11553, - "end": 11554, - "loc": { - "start": { - "line": 132, - "column": 11 - }, - "end": { - "line": 132, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11554, - "end": 11555, - "loc": { - "start": { - "line": 132, - "column": 12 - }, - "end": { - "line": 132, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN", - "start": 11556, - "end": 11632, - "loc": { - "start": { - "line": 132, - "column": 14 - }, - "end": { - "line": 132, - "column": 90 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11632, - "end": 11633, - "loc": { - "start": { - "line": 132, - "column": 90 - }, - "end": { - "line": 132, - "column": 91 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11633, - "end": 11634, - "loc": { - "start": { - "line": 132, - "column": 91 - }, - "end": { - "line": 132, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "I", - "start": 11641, - "end": 11642, - "loc": { - "start": { - "line": 133, - "column": 6 - }, - "end": { - "line": 133, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11643, - "end": 11644, - "loc": { - "start": { - "line": 133, - "column": 8 - }, - "end": { - "line": 133, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11645, - "end": 11646, - "loc": { - "start": { - "line": 133, - "column": 10 - }, - "end": { - "line": 133, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 11646, - "end": 11647, - "loc": { - "start": { - "line": 133, - "column": 11 - }, - "end": { - "line": 133, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11647, - "end": 11648, - "loc": { - "start": { - "line": 133, - "column": 12 - }, - "end": { - "line": 133, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None", - "start": 11649, - "end": 11799, - "loc": { - "start": { - "line": 133, - "column": 14 - }, - "end": { - "line": 133, - "column": 164 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11799, - "end": 11800, - "loc": { - "start": { - "line": 133, - "column": 164 - }, - "end": { - "line": 133, - "column": 165 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11800, - "end": 11801, - "loc": { - "start": { - "line": 133, - "column": 165 - }, - "end": { - "line": 133, - "column": 166 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "J", - "start": 11808, - "end": 11809, - "loc": { - "start": { - "line": 134, - "column": 6 - }, - "end": { - "line": 134, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11810, - "end": 11811, - "loc": { - "start": { - "line": 134, - "column": 8 - }, - "end": { - "line": 134, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11812, - "end": 11813, - "loc": { - "start": { - "line": 134, - "column": 10 - }, - "end": { - "line": 134, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 11813, - "end": 11814, - "loc": { - "start": { - "line": 134, - "column": 11 - }, - "end": { - "line": 134, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11814, - "end": 11815, - "loc": { - "start": { - "line": 134, - "column": 12 - }, - "end": { - "line": 134, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END", - "start": 11816, - "end": 11984, - "loc": { - "start": { - "line": 134, - "column": 14 - }, - "end": { - "line": 134, - "column": 182 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11984, - "end": 11985, - "loc": { - "start": { - "line": 134, - "column": 182 - }, - "end": { - "line": 134, - "column": 183 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11985, - "end": 11986, - "loc": { - "start": { - "line": 134, - "column": 183 - }, - "end": { - "line": 134, - "column": 184 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 11993, - "end": 11994, - "loc": { - "start": { - "line": 135, - "column": 6 - }, - "end": { - "line": 135, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11995, - "end": 11996, - "loc": { - "start": { - "line": 135, - "column": 8 - }, - "end": { - "line": 135, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11997, - "end": 11998, - "loc": { - "start": { - "line": 135, - "column": 10 - }, - "end": { - "line": 135, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 11998, - "end": 11999, - "loc": { - "start": { - "line": 135, - "column": 11 - }, - "end": { - "line": 135, - "column": 12 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11999, - "end": 12000, - "loc": { - "start": { - "line": 135, - "column": 12 - }, - "end": { - "line": 135, - "column": 13 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "case,done,elif,esac,eval,fi,function,in,local,set,then,until", - "start": 12001, - "end": 12063, - "loc": { - "start": { - "line": 135, - "column": 14 - }, - "end": { - "line": 135, - "column": 76 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12063, - "end": 12064, - "loc": { - "start": { - "line": 135, - "column": 76 - }, - "end": { - "line": 135, - "column": 77 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12064, - "end": 12065, - "loc": { - "start": { - "line": 135, - "column": 77 - }, - "end": { - "line": 135, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "K", - "start": 12072, - "end": 12073, - "loc": { - "start": { - "line": 136, - "column": 6 - }, - "end": { - "line": 136, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 12074, - "end": 12075, - "loc": { - "start": { - "line": 136, - "column": 8 - }, - "end": { - "line": 136, - "column": 9 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\\d*)", - "flags": "" - }, - "start": 12076, - "end": 12188, - "loc": { - "start": { - "line": 136, - "column": 10 - }, - "end": { - "line": 136, - "column": 122 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12188, - "end": 12189, - "loc": { - "start": { - "line": 136, - "column": 122 - }, - "end": { - "line": 136, - "column": 123 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "N", - "start": 12196, - "end": 12197, - "loc": { - "start": { - "line": 137, - "column": 6 - }, - "end": { - "line": 137, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 12198, - "end": 12199, - "loc": { - "start": { - "line": 137, - "column": 8 - }, - "end": { - "line": 137, - "column": 9 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\S", - "flags": "" - }, - "start": 12200, - "end": 12204, - "loc": { - "start": { - "line": 137, - "column": 10 - }, - "end": { - "line": 137, - "column": 14 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12204, - "end": 12205, - "loc": { - "start": { - "line": 137, - "column": 14 - }, - "end": { - "line": 137, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "O", - "start": 12212, - "end": 12213, - "loc": { - "start": { - "line": 138, - "column": 6 - }, - "end": { - "line": 138, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 12214, - "end": 12215, - "loc": { - "start": { - "line": 138, - "column": 8 - }, - "end": { - "line": 138, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 12216, - "end": 12217, - "loc": { - "start": { - "line": 138, - "column": 10 - }, - "end": { - "line": 138, - "column": 11 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12217, - "end": 12218, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12218, - "end": 12219, - "loc": { - "start": { - "line": 138, - "column": 12 - }, - "end": { - "line": 138, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 12220, - "end": 12228, - "loc": { - "start": { - "line": 138, - "column": 14 - }, - "end": { - "line": 138, - "column": 22 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12228, - "end": 12229, - "loc": { - "start": { - "line": 138, - "column": 22 - }, - "end": { - "line": 138, - "column": 23 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12230, - "end": 12231, - "loc": { - "start": { - "line": 138, - "column": 24 - }, - "end": { - "line": 138, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "F", - "start": 12231, - "end": 12232, - "loc": { - "start": { - "line": 138, - "column": 25 - }, - "end": { - "line": 138, - "column": 26 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12232, - "end": 12233, - "loc": { - "start": { - "line": 138, - "column": 26 - }, - "end": { - "line": 138, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "H", - "start": 12234, - "end": 12235, - "loc": { - "start": { - "line": 138, - "column": 28 - }, - "end": { - "line": 138, - "column": 29 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12235, - "end": 12236, - "loc": { - "start": { - "line": 138, - "column": 29 - }, - "end": { - "line": 138, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 12237, - "end": 12238, - "loc": { - "start": { - "line": 138, - "column": 31 - }, - "end": { - "line": 138, - "column": 32 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12238, - "end": 12239, - "loc": { - "start": { - "line": 138, - "column": 32 - }, - "end": { - "line": 138, - "column": 33 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END", - "start": 12240, - "end": 12416, - "loc": { - "start": { - "line": 138, - "column": 34 - }, - "end": { - "line": 138, - "column": 210 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 12417, - "end": 12418, - "loc": { - "start": { - "line": 138, - "column": 211 - }, - "end": { - "line": 138, - "column": 212 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "I", - "start": 12419, - "end": 12420, - "loc": { - "start": { - "line": 138, - "column": 213 - }, - "end": { - "line": 138, - "column": 214 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12420, - "end": 12421, - "loc": { - "start": { - "line": 138, - "column": 214 - }, - "end": { - "line": 138, - "column": 215 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "J", - "start": 12422, - "end": 12423, - "loc": { - "start": { - "line": 138, - "column": 216 - }, - "end": { - "line": 138, - "column": 217 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12423, - "end": 12424, - "loc": { - "start": { - "line": 138, - "column": 217 - }, - "end": { - "line": 138, - "column": 218 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 12425, - "end": 12426, - "loc": { - "start": { - "line": 138, - "column": 219 - }, - "end": { - "line": 138, - "column": 220 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12426, - "end": 12427, - "loc": { - "start": { - "line": 138, - "column": 220 - }, - "end": { - "line": 138, - "column": 221 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12427, - "end": 12428, - "loc": { - "start": { - "line": 138, - "column": 221 - }, - "end": { - "line": 138, - "column": 222 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 12429, - "end": 12441, - "loc": { - "start": { - "line": 138, - "column": 223 - }, - "end": { - "line": 138, - "column": 235 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12441, - "end": 12442, - "loc": { - "start": { - "line": 138, - "column": 235 - }, - "end": { - "line": 138, - "column": 236 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 12443, - "end": 12444, - "loc": { - "start": { - "line": 138, - "column": 237 - }, - "end": { - "line": 138, - "column": 238 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 12444, - "end": 12445, - "loc": { - "start": { - "line": 138, - "column": 238 - }, - "end": { - "line": 138, - "column": 239 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12445, - "end": 12446, - "loc": { - "start": { - "line": 138, - "column": 239 - }, - "end": { - "line": 138, - "column": 240 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 12447, - "end": 12461, - "loc": { - "start": { - "line": 138, - "column": 241 - }, - "end": { - "line": 138, - "column": 255 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12461, - "end": 12462, - "loc": { - "start": { - "line": 138, - "column": 255 - }, - "end": { - "line": 138, - "column": 256 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 12463, - "end": 12464, - "loc": { - "start": { - "line": 138, - "column": 257 - }, - "end": { - "line": 138, - "column": 258 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 12464, - "end": 12465, - "loc": { - "start": { - "line": 138, - "column": 258 - }, - "end": { - "line": 138, - "column": 259 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12465, - "end": 12466, - "loc": { - "start": { - "line": 138, - "column": 259 - }, - "end": { - "line": 138, - "column": 260 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 12467, - "end": 12483, - "loc": { - "start": { - "line": 138, - "column": 261 - }, - "end": { - "line": 138, - "column": 277 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12483, - "end": 12484, - "loc": { - "start": { - "line": 138, - "column": 277 - }, - "end": { - "line": 138, - "column": 278 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 12485, - "end": 12486, - "loc": { - "start": { - "line": 138, - "column": 279 - }, - "end": { - "line": 138, - "column": 280 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 12486, - "end": 12487, - "loc": { - "start": { - "line": 138, - "column": 280 - }, - "end": { - "line": 138, - "column": 281 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12487, - "end": 12488, - "loc": { - "start": { - "line": 138, - "column": 281 - }, - "end": { - "line": 138, - "column": 282 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 12489, - "end": 12502, - "loc": { - "start": { - "line": 138, - "column": 283 - }, - "end": { - "line": 138, - "column": 296 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12502, - "end": 12503, - "loc": { - "start": { - "line": 138, - "column": 296 - }, - "end": { - "line": 138, - "column": 297 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 12504, - "end": 12505, - "loc": { - "start": { - "line": 138, - "column": 298 - }, - "end": { - "line": 138, - "column": 299 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 12505, - "end": 12506, - "loc": { - "start": { - "line": 138, - "column": 299 - }, - "end": { - "line": 138, - "column": 300 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12507, - "end": 12508, - "loc": { - "start": { - "line": 138, - "column": 301 - }, - "end": { - "line": 138, - "column": 302 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12508, - "end": 12509, - "loc": { - "start": { - "line": 138, - "column": 302 - }, - "end": { - "line": 138, - "column": 303 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12509, - "end": 12510, - "loc": { - "start": { - "line": 138, - "column": 303 - }, - "end": { - "line": 138, - "column": 304 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "A", - "start": 12517, - "end": 12518, - "loc": { - "start": { - "line": 139, - "column": 6 - }, - "end": { - "line": 139, - "column": 7 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 12519, - "end": 12520, - "loc": { - "start": { - "line": 139, - "column": 8 - }, - "end": { - "line": 139, - "column": 9 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12521, - "end": 12522, - "loc": { - "start": { - "line": 139, - "column": 10 - }, - "end": { - "line": 139, - "column": 11 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12522, - "end": 12523, - "loc": { - "start": { - "line": 139, - "column": 11 - }, - "end": { - "line": 139, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12523, - "end": 12524, - "loc": { - "start": { - "line": 139, - "column": 12 - }, - "end": { - "line": 139, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 12524, - "end": 12525, - "loc": { - "start": { - "line": 139, - "column": 13 - }, - "end": { - "line": 139, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12525, - "end": 12526, - "loc": { - "start": { - "line": 139, - "column": 14 - }, - "end": { - "line": 139, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "O", - "start": 12526, - "end": 12527, - "loc": { - "start": { - "line": 139, - "column": 15 - }, - "end": { - "line": 139, - "column": 16 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12527, - "end": 12528, - "loc": { - "start": { - "line": 139, - "column": 16 - }, - "end": { - "line": 139, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12529, - "end": 12530, - "loc": { - "start": { - "line": 139, - "column": 18 - }, - "end": { - "line": 139, - "column": 19 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default-code", - "start": 12530, - "end": 12544, - "loc": { - "start": { - "line": 139, - "column": 19 - }, - "end": { - "line": 139, - "column": 33 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12544, - "end": 12545, - "loc": { - "start": { - "line": 139, - "column": 33 - }, - "end": { - "line": 139, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12545, - "end": 12546, - "loc": { - "start": { - "line": 139, - "column": 34 - }, - "end": { - "line": 139, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12546, - "end": 12547, - "loc": { - "start": { - "line": 139, - "column": 35 - }, - "end": { - "line": 139, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 12547, - "end": 12548, - "loc": { - "start": { - "line": 139, - "column": 36 - }, - "end": { - "line": 139, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12548, - "end": 12549, - "loc": { - "start": { - "line": 139, - "column": 37 - }, - "end": { - "line": 139, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 12549, - "end": 12550, - "loc": { - "start": { - "line": 139, - "column": 38 - }, - "end": { - "line": 139, - "column": 39 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12550, - "end": 12551, - "loc": { - "start": { - "line": 139, - "column": 39 - }, - "end": { - "line": 139, - "column": 40 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12551, - "end": 12552, - "loc": { - "start": { - "line": 139, - "column": 40 - }, - "end": { - "line": 139, - "column": 41 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12552, - "end": 12553, - "loc": { - "start": { - "line": 139, - "column": 41 - }, - "end": { - "line": 139, - "column": 42 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12553, - "end": 12554, - "loc": { - "start": { - "line": 139, - "column": 42 - }, - "end": { - "line": 139, - "column": 43 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12555, - "end": 12556, - "loc": { - "start": { - "line": 139, - "column": 44 - }, - "end": { - "line": 139, - "column": 45 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12556, - "end": 12557, - "loc": { - "start": { - "line": 139, - "column": 45 - }, - "end": { - "line": 139, - "column": 46 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 12557, - "end": 12562, - "loc": { - "start": { - "line": 139, - "column": 46 - }, - "end": { - "line": 139, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12562, - "end": 12563, - "loc": { - "start": { - "line": 139, - "column": 51 - }, - "end": { - "line": 139, - "column": 52 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^[^]*(?:>|$)", - "flags": "" - }, - "start": 12584, - "end": 12603, - "loc": { - "start": { - "line": 139, - "column": 73 - }, - "end": { - "line": 139, - "column": 92 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12603, - "end": 12604, - "loc": { - "start": { - "line": 139, - "column": 92 - }, - "end": { - "line": 139, - "column": 93 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12604, - "end": 12605, - "loc": { - "start": { - "line": 139, - "column": 93 - }, - "end": { - "line": 139, - "column": 94 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12606, - "end": 12607, - "loc": { - "start": { - "line": 139, - "column": 95 - }, - "end": { - "line": 139, - "column": 96 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 12607, - "end": 12612, - "loc": { - "start": { - "line": 139, - "column": 96 - }, - "end": { - "line": 139, - "column": 101 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12612, - "end": 12613, - "loc": { - "start": { - "line": 139, - "column": 101 - }, - "end": { - "line": 139, - "column": 102 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^<\\!--[\\S\\s]*?(?:--\\>|$)", - "flags": "" - }, - "start": 12614, - "end": 12640, - "loc": { - "start": { - "line": 139, - "column": 103 - }, - "end": { - "line": 139, - "column": 129 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12640, - "end": 12641, - "loc": { - "start": { - "line": 139, - "column": 129 - }, - "end": { - "line": 139, - "column": 130 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12641, - "end": 12642, - "loc": { - "start": { - "line": 139, - "column": 130 - }, - "end": { - "line": 139, - "column": 131 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12643, - "end": 12644, - "loc": { - "start": { - "line": 139, - "column": 132 - }, - "end": { - "line": 139, - "column": 133 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-", - "start": 12644, - "end": 12651, - "loc": { - "start": { - "line": 139, - "column": 133 - }, - "end": { - "line": 139, - "column": 140 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12651, - "end": 12652, - "loc": { - "start": { - "line": 139, - "column": 140 - }, - "end": { - "line": 139, - "column": 141 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^<\\?([\\S\\s]+?)(?:\\?>|$)", - "flags": "" - }, - "start": 12653, - "end": 12678, - "loc": { - "start": { - "line": 139, - "column": 142 - }, - "end": { - "line": 139, - "column": 167 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12678, - "end": 12679, - "loc": { - "start": { - "line": 139, - "column": 167 - }, - "end": { - "line": 139, - "column": 168 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12679, - "end": 12680, - "loc": { - "start": { - "line": 139, - "column": 168 - }, - "end": { - "line": 139, - "column": 169 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12681, - "end": 12682, - "loc": { - "start": { - "line": 139, - "column": 170 - }, - "end": { - "line": 139, - "column": 171 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-", - "start": 12682, - "end": 12689, - "loc": { - "start": { - "line": 139, - "column": 171 - }, - "end": { - "line": 139, - "column": 178 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12689, - "end": 12690, - "loc": { - "start": { - "line": 139, - "column": 178 - }, - "end": { - "line": 139, - "column": 179 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^<%([\\S\\s]+?)(?:%>|$)", - "flags": "" - }, - "start": 12691, - "end": 12714, - "loc": { - "start": { - "line": 139, - "column": 180 - }, - "end": { - "line": 139, - "column": 203 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12714, - "end": 12715, - "loc": { - "start": { - "line": 139, - "column": 203 - }, - "end": { - "line": 139, - "column": 204 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12715, - "end": 12716, - "loc": { - "start": { - "line": 139, - "column": 204 - }, - "end": { - "line": 139, - "column": 205 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12717, - "end": 12718, - "loc": { - "start": { - "line": 139, - "column": 206 - }, - "end": { - "line": 139, - "column": 207 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pun", - "start": 12718, - "end": 12723, - "loc": { - "start": { - "line": 139, - "column": 207 - }, - "end": { - "line": 139, - "column": 212 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12723, - "end": 12724, - "loc": { - "start": { - "line": 139, - "column": 212 - }, - "end": { - "line": 139, - "column": 213 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:<[%?]|[%?]>)", - "flags": "" - }, - "start": 12725, - "end": 12743, - "loc": { - "start": { - "line": 139, - "column": 214 - }, - "end": { - "line": 139, - "column": 232 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12743, - "end": 12744, - "loc": { - "start": { - "line": 139, - "column": 232 - }, - "end": { - "line": 139, - "column": 233 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12744, - "end": 12745, - "loc": { - "start": { - "line": 139, - "column": 233 - }, - "end": { - "line": 139, - "column": 234 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12746, - "end": 12747, - "loc": { - "start": { - "line": 139, - "column": 235 - }, - "end": { - "line": 139, - "column": 236 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-", - "start": 12747, - "end": 12754, - "loc": { - "start": { - "line": 139, - "column": 236 - }, - "end": { - "line": 139, - "column": 243 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12754, - "end": 12755, - "loc": { - "start": { - "line": 139, - "column": 243 - }, - "end": { - "line": 139, - "column": 244 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^]*>([\\S\\s]+?)<\\/xmp\\b[^>]*>", - "flags": "i" - }, - "start": 12756, - "end": 12796, - "loc": { - "start": { - "line": 139, - "column": 245 - }, - "end": { - "line": 139, - "column": 285 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12796, - "end": 12797, - "loc": { - "start": { - "line": 139, - "column": 285 - }, - "end": { - "line": 139, - "column": 286 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12797, - "end": 12798, - "loc": { - "start": { - "line": 139, - "column": 286 - }, - "end": { - "line": 139, - "column": 287 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12799, - "end": 12800, - "loc": { - "start": { - "line": 139, - "column": 288 - }, - "end": { - "line": 139, - "column": 289 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-js", - "start": 12800, - "end": 12809, - "loc": { - "start": { - "line": 139, - "column": 289 - }, - "end": { - "line": 139, - "column": 298 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12809, - "end": 12810, - "loc": { - "start": { - "line": 139, - "column": 298 - }, - "end": { - "line": 139, - "column": 299 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^]*>([\\S\\s]*?)(<\\/script\\b[^>]*>)", - "flags": "i" - }, - "start": 12811, - "end": 12859, - "loc": { - "start": { - "line": 139, - "column": 300 - }, - "end": { - "line": 139, - "column": 348 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12859, - "end": 12860, - "loc": { - "start": { - "line": 139, - "column": 348 - }, - "end": { - "line": 139, - "column": 349 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12860, - "end": 12861, - "loc": { - "start": { - "line": 139, - "column": 349 - }, - "end": { - "line": 139, - "column": 350 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12862, - "end": 12863, - "loc": { - "start": { - "line": 139, - "column": 351 - }, - "end": { - "line": 139, - "column": 352 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-css", - "start": 12863, - "end": 12873, - "loc": { - "start": { - "line": 139, - "column": 352 - }, - "end": { - "line": 139, - "column": 362 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12873, - "end": 12874, - "loc": { - "start": { - "line": 139, - "column": 362 - }, - "end": { - "line": 139, - "column": 363 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^]*>([\\S\\s]*?)(<\\/style\\b[^>]*>)", - "flags": "i" - }, - "start": 12875, - "end": 12921, - "loc": { - "start": { - "line": 139, - "column": 364 - }, - "end": { - "line": 139, - "column": 410 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12921, - "end": 12922, - "loc": { - "start": { - "line": 139, - "column": 410 - }, - "end": { - "line": 139, - "column": 411 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12922, - "end": 12923, - "loc": { - "start": { - "line": 139, - "column": 411 - }, - "end": { - "line": 139, - "column": 412 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12924, - "end": 12925, - "loc": { - "start": { - "line": 139, - "column": 413 - }, - "end": { - "line": 139, - "column": 414 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-in.tag", - "start": 12925, - "end": 12938, - "loc": { - "start": { - "line": 139, - "column": 414 - }, - "end": { - "line": 139, - "column": 427 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12938, - "end": 12939, - "loc": { - "start": { - "line": 139, - "column": 427 - }, - "end": { - "line": 139, - "column": 428 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(<\\/?[a-z][^<>]*>)", - "flags": "i" - }, - "start": 12940, - "end": 12962, - "loc": { - "start": { - "line": 139, - "column": 429 - }, - "end": { - "line": 139, - "column": 451 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12962, - "end": 12963, - "loc": { - "start": { - "line": 139, - "column": 451 - }, - "end": { - "line": 139, - "column": 452 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12963, - "end": 12964, - "loc": { - "start": { - "line": 139, - "column": 452 - }, - "end": { - "line": 139, - "column": 453 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12964, - "end": 12965, - "loc": { - "start": { - "line": 139, - "column": 453 - }, - "end": { - "line": 139, - "column": 454 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12965, - "end": 12966, - "loc": { - "start": { - "line": 139, - "column": 454 - }, - "end": { - "line": 139, - "column": 455 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12967, - "end": 12968, - "loc": { - "start": { - "line": 139, - "column": 456 - }, - "end": { - "line": 139, - "column": 457 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default-markup", - "start": 12968, - "end": 12984, - "loc": { - "start": { - "line": 139, - "column": 457 - }, - "end": { - "line": 139, - "column": 473 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12984, - "end": 12985, - "loc": { - "start": { - "line": 139, - "column": 473 - }, - "end": { - "line": 139, - "column": 474 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "htm", - "start": 12986, - "end": 12991, - "loc": { - "start": { - "line": 139, - "column": 475 - }, - "end": { - "line": 139, - "column": 480 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12991, - "end": 12992, - "loc": { - "start": { - "line": 139, - "column": 480 - }, - "end": { - "line": 139, - "column": 481 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "html", - "start": 12993, - "end": 12999, - "loc": { - "start": { - "line": 139, - "column": 482 - }, - "end": { - "line": 139, - "column": 488 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12999, - "end": 13000, - "loc": { - "start": { - "line": 139, - "column": 488 - }, - "end": { - "line": 139, - "column": 489 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "mxml", - "start": 13001, - "end": 13007, - "loc": { - "start": { - "line": 139, - "column": 490 - }, - "end": { - "line": 139, - "column": 496 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13007, - "end": 13008, - "loc": { - "start": { - "line": 139, - "column": 496 - }, - "end": { - "line": 139, - "column": 497 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "xhtml", - "start": 13009, - "end": 13016, - "loc": { - "start": { - "line": 139, - "column": 498 - }, - "end": { - "line": 139, - "column": 505 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13016, - "end": 13017, - "loc": { - "start": { - "line": 139, - "column": 505 - }, - "end": { - "line": 139, - "column": 506 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "xml", - "start": 13018, - "end": 13023, - "loc": { - "start": { - "line": 139, - "column": 507 - }, - "end": { - "line": 139, - "column": 512 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13023, - "end": 13024, - "loc": { - "start": { - "line": 139, - "column": 512 - }, - "end": { - "line": 139, - "column": 513 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "xsl", - "start": 13025, - "end": 13030, - "loc": { - "start": { - "line": 139, - "column": 514 - }, - "end": { - "line": 139, - "column": 519 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13030, - "end": 13031, - "loc": { - "start": { - "line": 139, - "column": 519 - }, - "end": { - "line": 139, - "column": 520 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13031, - "end": 13032, - "loc": { - "start": { - "line": 139, - "column": 520 - }, - "end": { - "line": 139, - "column": 521 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13032, - "end": 13033, - "loc": { - "start": { - "line": 139, - "column": 521 - }, - "end": { - "line": 139, - "column": 522 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13033, - "end": 13034, - "loc": { - "start": { - "line": 139, - "column": 522 - }, - "end": { - "line": 139, - "column": 523 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13034, - "end": 13035, - "loc": { - "start": { - "line": 139, - "column": 523 - }, - "end": { - "line": 139, - "column": 524 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 13035, - "end": 13036, - "loc": { - "start": { - "line": 139, - "column": 524 - }, - "end": { - "line": 139, - "column": 525 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13036, - "end": 13037, - "loc": { - "start": { - "line": 139, - "column": 525 - }, - "end": { - "line": 139, - "column": 526 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13037, - "end": 13038, - "loc": { - "start": { - "line": 139, - "column": 526 - }, - "end": { - "line": 139, - "column": 527 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13038, - "end": 13039, - "loc": { - "start": { - "line": 139, - "column": 527 - }, - "end": { - "line": 139, - "column": 528 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 13039, - "end": 13044, - "loc": { - "start": { - "line": 139, - "column": 528 - }, - "end": { - "line": 139, - "column": 533 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13044, - "end": 13045, - "loc": { - "start": { - "line": 139, - "column": 533 - }, - "end": { - "line": 139, - "column": 534 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^\\s+", - "flags": "" - }, - "start": 13046, - "end": 13052, - "loc": { - "start": { - "line": 139, - "column": 535 - }, - "end": { - "line": 139, - "column": 541 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13052, - "end": 13053, - "loc": { - "start": { - "line": 139, - "column": 541 - }, - "end": { - "line": 139, - "column": 542 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 13054, - "end": 13055, - "loc": { - "start": { - "line": 139, - "column": 543 - }, - "end": { - "line": 139, - "column": 544 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13055, - "end": 13056, - "loc": { - "start": { - "line": 139, - "column": 544 - }, - "end": { - "line": 139, - "column": 545 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": " \t\r\n", - "start": 13057, - "end": 13066, - "loc": { - "start": { - "line": 139, - "column": 546 - }, - "end": { - "line": 139, - "column": 555 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13066, - "end": 13067, - "loc": { - "start": { - "line": 139, - "column": 555 - }, - "end": { - "line": 139, - "column": 556 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13067, - "end": 13068, - "loc": { - "start": { - "line": 139, - "column": 556 - }, - "end": { - "line": 139, - "column": 557 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13069, - "end": 13070, - "loc": { - "start": { - "line": 139, - "column": 558 - }, - "end": { - "line": 139, - "column": 559 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "atv", - "start": 13070, - "end": 13075, - "loc": { - "start": { - "line": 139, - "column": 559 - }, - "end": { - "line": 139, - "column": 564 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13075, - "end": 13076, - "loc": { - "start": { - "line": 139, - "column": 564 - }, - "end": { - "line": 139, - "column": 565 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?:\"[^\"]*\"?|'[^']*'?)", - "flags": "" - }, - "start": 13077, - "end": 13101, - "loc": { - "start": { - "line": 139, - "column": 566 - }, - "end": { - "line": 139, - "column": 590 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13101, - "end": 13102, - "loc": { - "start": { - "line": 139, - "column": 590 - }, - "end": { - "line": 139, - "column": 591 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 13103, - "end": 13104, - "loc": { - "start": { - "line": 139, - "column": 592 - }, - "end": { - "line": 139, - "column": 593 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13104, - "end": 13105, - "loc": { - "start": { - "line": 139, - "column": 593 - }, - "end": { - "line": 139, - "column": 594 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\"'", - "start": 13106, - "end": 13111, - "loc": { - "start": { - "line": 139, - "column": 595 - }, - "end": { - "line": 139, - "column": 600 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13111, - "end": 13112, - "loc": { - "start": { - "line": 139, - "column": 600 - }, - "end": { - "line": 139, - "column": 601 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13112, - "end": 13113, - "loc": { - "start": { - "line": 139, - "column": 601 - }, - "end": { - "line": 139, - "column": 602 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13113, - "end": 13114, - "loc": { - "start": { - "line": 139, - "column": 602 - }, - "end": { - "line": 139, - "column": 603 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13115, - "end": 13116, - "loc": { - "start": { - "line": 139, - "column": 604 - }, - "end": { - "line": 139, - "column": 605 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13116, - "end": 13117, - "loc": { - "start": { - "line": 139, - "column": 605 - }, - "end": { - "line": 139, - "column": 606 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "tag", - "start": 13117, - "end": 13122, - "loc": { - "start": { - "line": 139, - "column": 606 - }, - "end": { - "line": 139, - "column": 611 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13122, - "end": 13123, - "loc": { - "start": { - "line": 139, - "column": 611 - }, - "end": { - "line": 139, - "column": 612 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^^<\\/?[a-z](?:[\\w-.:]*\\w)?|\\/?>$", - "flags": "i" - }, - "start": 13124, - "end": 13159, - "loc": { - "start": { - "line": 139, - "column": 613 - }, - "end": { - "line": 139, - "column": 648 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13159, - "end": 13160, - "loc": { - "start": { - "line": 139, - "column": 648 - }, - "end": { - "line": 139, - "column": 649 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13160, - "end": 13161, - "loc": { - "start": { - "line": 139, - "column": 649 - }, - "end": { - "line": 139, - "column": 650 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13162, - "end": 13163, - "loc": { - "start": { - "line": 139, - "column": 651 - }, - "end": { - "line": 139, - "column": 652 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "atn", - "start": 13163, - "end": 13168, - "loc": { - "start": { - "line": 139, - "column": 652 - }, - "end": { - "line": 139, - "column": 657 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13168, - "end": 13169, - "loc": { - "start": { - "line": 139, - "column": 657 - }, - "end": { - "line": 139, - "column": 658 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^(?!style[\\s=]|on)[a-z](?:[\\w:-]*\\w)?", - "flags": "i" - }, - "start": 13170, - "end": 13210, - "loc": { - "start": { - "line": 139, - "column": 659 - }, - "end": { - "line": 139, - "column": 699 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13210, - "end": 13211, - "loc": { - "start": { - "line": 139, - "column": 699 - }, - "end": { - "line": 139, - "column": 700 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13211, - "end": 13212, - "loc": { - "start": { - "line": 139, - "column": 700 - }, - "end": { - "line": 139, - "column": 701 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13213, - "end": 13214, - "loc": { - "start": { - "line": 139, - "column": 702 - }, - "end": { - "line": 139, - "column": 703 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-uq.val", - "start": 13214, - "end": 13227, - "loc": { - "start": { - "line": 139, - "column": 703 - }, - "end": { - "line": 139, - "column": 716 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13227, - "end": 13228, - "loc": { - "start": { - "line": 139, - "column": 716 - }, - "end": { - "line": 139, - "column": 717 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^=\\s*([^\\s\"'>]*(?:[^\\s\"'/>]|\\/(?=\\s)))", - "flags": "" - }, - "start": 13229, - "end": 13269, - "loc": { - "start": { - "line": 139, - "column": 718 - }, - "end": { - "line": 139, - "column": 758 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13269, - "end": 13270, - "loc": { - "start": { - "line": 139, - "column": 758 - }, - "end": { - "line": 139, - "column": 759 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13270, - "end": 13271, - "loc": { - "start": { - "line": 139, - "column": 759 - }, - "end": { - "line": 139, - "column": 760 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13272, - "end": 13273, - "loc": { - "start": { - "line": 139, - "column": 761 - }, - "end": { - "line": 139, - "column": 762 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pun", - "start": 13273, - "end": 13278, - "loc": { - "start": { - "line": 139, - "column": 762 - }, - "end": { - "line": 139, - "column": 767 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13278, - "end": 13279, - "loc": { - "start": { - "line": 139, - "column": 767 - }, - "end": { - "line": 139, - "column": 768 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^[/<->]+", - "flags": "" - }, - "start": 13280, - "end": 13290, - "loc": { - "start": { - "line": 139, - "column": 769 - }, - "end": { - "line": 139, - "column": 779 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13290, - "end": 13291, - "loc": { - "start": { - "line": 139, - "column": 779 - }, - "end": { - "line": 139, - "column": 780 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13291, - "end": 13292, - "loc": { - "start": { - "line": 139, - "column": 780 - }, - "end": { - "line": 139, - "column": 781 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13293, - "end": 13294, - "loc": { - "start": { - "line": 139, - "column": 782 - }, - "end": { - "line": 139, - "column": 783 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-js", - "start": 13294, - "end": 13303, - "loc": { - "start": { - "line": 139, - "column": 783 - }, - "end": { - "line": 139, - "column": 792 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13303, - "end": 13304, - "loc": { - "start": { - "line": 139, - "column": 792 - }, - "end": { - "line": 139, - "column": 793 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^on\\w+\\s*=\\s*\"([^\"]+)\"", - "flags": "i" - }, - "start": 13305, - "end": 13330, - "loc": { - "start": { - "line": 139, - "column": 794 - }, - "end": { - "line": 139, - "column": 819 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13330, - "end": 13331, - "loc": { - "start": { - "line": 139, - "column": 819 - }, - "end": { - "line": 139, - "column": 820 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13331, - "end": 13332, - "loc": { - "start": { - "line": 139, - "column": 820 - }, - "end": { - "line": 139, - "column": 821 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13333, - "end": 13334, - "loc": { - "start": { - "line": 139, - "column": 822 - }, - "end": { - "line": 139, - "column": 823 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-js", - "start": 13334, - "end": 13343, - "loc": { - "start": { - "line": 139, - "column": 823 - }, - "end": { - "line": 139, - "column": 832 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13343, - "end": 13344, - "loc": { - "start": { - "line": 139, - "column": 832 - }, - "end": { - "line": 139, - "column": 833 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^on\\w+\\s*=\\s*'([^']+)'", - "flags": "i" - }, - "start": 13345, - "end": 13370, - "loc": { - "start": { - "line": 139, - "column": 834 - }, - "end": { - "line": 139, - "column": 859 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13370, - "end": 13371, - "loc": { - "start": { - "line": 139, - "column": 859 - }, - "end": { - "line": 139, - "column": 860 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13371, - "end": 13372, - "loc": { - "start": { - "line": 139, - "column": 860 - }, - "end": { - "line": 139, - "column": 861 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13373, - "end": 13374, - "loc": { - "start": { - "line": 139, - "column": 862 - }, - "end": { - "line": 139, - "column": 863 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-js", - "start": 13374, - "end": 13383, - "loc": { - "start": { - "line": 139, - "column": 863 - }, - "end": { - "line": 139, - "column": 872 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13383, - "end": 13384, - "loc": { - "start": { - "line": 139, - "column": 872 - }, - "end": { - "line": 139, - "column": 873 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^on\\w+\\s*=\\s*([^\\s\"'>]+)", - "flags": "i" - }, - "start": 13385, - "end": 13412, - "loc": { - "start": { - "line": 139, - "column": 874 - }, - "end": { - "line": 139, - "column": 901 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13412, - "end": 13413, - "loc": { - "start": { - "line": 139, - "column": 901 - }, - "end": { - "line": 139, - "column": 902 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13413, - "end": 13414, - "loc": { - "start": { - "line": 139, - "column": 902 - }, - "end": { - "line": 139, - "column": 903 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13415, - "end": 13416, - "loc": { - "start": { - "line": 139, - "column": 904 - }, - "end": { - "line": 139, - "column": 905 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-css", - "start": 13416, - "end": 13426, - "loc": { - "start": { - "line": 139, - "column": 905 - }, - "end": { - "line": 139, - "column": 915 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13426, - "end": 13427, - "loc": { - "start": { - "line": 139, - "column": 915 - }, - "end": { - "line": 139, - "column": 916 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^style\\s*=\\s*\"([^\"]+)\"", - "flags": "i" - }, - "start": 13428, - "end": 13453, - "loc": { - "start": { - "line": 139, - "column": 917 - }, - "end": { - "line": 139, - "column": 942 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13453, - "end": 13454, - "loc": { - "start": { - "line": 139, - "column": 942 - }, - "end": { - "line": 139, - "column": 943 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13454, - "end": 13455, - "loc": { - "start": { - "line": 139, - "column": 943 - }, - "end": { - "line": 139, - "column": 944 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13456, - "end": 13457, - "loc": { - "start": { - "line": 139, - "column": 945 - }, - "end": { - "line": 139, - "column": 946 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-css", - "start": 13457, - "end": 13467, - "loc": { - "start": { - "line": 139, - "column": 946 - }, - "end": { - "line": 139, - "column": 956 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13467, - "end": 13468, - "loc": { - "start": { - "line": 139, - "column": 956 - }, - "end": { - "line": 139, - "column": 957 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^style\\s*=\\s*'([^']+)'", - "flags": "i" - }, - "start": 13469, - "end": 13494, - "loc": { - "start": { - "line": 139, - "column": 958 - }, - "end": { - "line": 139, - "column": 983 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13494, - "end": 13495, - "loc": { - "start": { - "line": 139, - "column": 983 - }, - "end": { - "line": 139, - "column": 984 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13495, - "end": 13496, - "loc": { - "start": { - "line": 139, - "column": 984 - }, - "end": { - "line": 139, - "column": 985 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13497, - "end": 13498, - "loc": { - "start": { - "line": 139, - "column": 986 - }, - "end": { - "line": 139, - "column": 987 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lang-css", - "start": 13498, - "end": 13508, - "loc": { - "start": { - "line": 139, - "column": 987 - }, - "end": { - "line": 139, - "column": 997 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13508, - "end": 13509, - "loc": { - "start": { - "line": 139, - "column": 997 - }, - "end": { - "line": 139, - "column": 998 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^style\\s*=\\s*([^\\s\"'>]+)", - "flags": "i" - }, - "start": 13510, - "end": 13537, - "loc": { - "start": { - "line": 139, - "column": 999 - }, - "end": { - "line": 139, - "column": 1026 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13537, - "end": 13538, - "loc": { - "start": { - "line": 139, - "column": 1026 - }, - "end": { - "line": 139, - "column": 1027 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13538, - "end": 13539, - "loc": { - "start": { - "line": 139, - "column": 1027 - }, - "end": { - "line": 139, - "column": 1028 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13539, - "end": 13540, - "loc": { - "start": { - "line": 139, - "column": 1028 - }, - "end": { - "line": 139, - "column": 1029 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13540, - "end": 13541, - "loc": { - "start": { - "line": 139, - "column": 1029 - }, - "end": { - "line": 139, - "column": 1030 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13542, - "end": 13543, - "loc": { - "start": { - "line": 139, - "column": 1031 - }, - "end": { - "line": 139, - "column": 1032 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "in.tag", - "start": 13543, - "end": 13551, - "loc": { - "start": { - "line": 139, - "column": 1032 - }, - "end": { - "line": 139, - "column": 1040 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13551, - "end": 13552, - "loc": { - "start": { - "line": 139, - "column": 1040 - }, - "end": { - "line": 139, - "column": 1041 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13552, - "end": 13553, - "loc": { - "start": { - "line": 139, - "column": 1041 - }, - "end": { - "line": 139, - "column": 1042 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13553, - "end": 13554, - "loc": { - "start": { - "line": 139, - "column": 1042 - }, - "end": { - "line": 139, - "column": 1043 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13554, - "end": 13555, - "loc": { - "start": { - "line": 139, - "column": 1043 - }, - "end": { - "line": 139, - "column": 1044 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13555, - "end": 13556, - "loc": { - "start": { - "line": 139, - "column": 1044 - }, - "end": { - "line": 139, - "column": 1045 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 13556, - "end": 13557, - "loc": { - "start": { - "line": 139, - "column": 1045 - }, - "end": { - "line": 139, - "column": 1046 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13557, - "end": 13558, - "loc": { - "start": { - "line": 139, - "column": 1046 - }, - "end": { - "line": 139, - "column": 1047 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13558, - "end": 13559, - "loc": { - "start": { - "line": 139, - "column": 1047 - }, - "end": { - "line": 139, - "column": 1048 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13559, - "end": 13560, - "loc": { - "start": { - "line": 139, - "column": 1048 - }, - "end": { - "line": 139, - "column": 1049 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13560, - "end": 13561, - "loc": { - "start": { - "line": 139, - "column": 1049 - }, - "end": { - "line": 139, - "column": 1050 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13562, - "end": 13563, - "loc": { - "start": { - "line": 139, - "column": 1051 - }, - "end": { - "line": 139, - "column": 1052 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13563, - "end": 13564, - "loc": { - "start": { - "line": 139, - "column": 1052 - }, - "end": { - "line": 139, - "column": 1053 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "atv", - "start": 13564, - "end": 13569, - "loc": { - "start": { - "line": 139, - "column": 1053 - }, - "end": { - "line": 139, - "column": 1058 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13569, - "end": 13570, - "loc": { - "start": { - "line": 139, - "column": 1058 - }, - "end": { - "line": 139, - "column": 1059 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^[\\S\\s]+", - "flags": "" - }, - "start": 13571, - "end": 13581, - "loc": { - "start": { - "line": 139, - "column": 1060 - }, - "end": { - "line": 139, - "column": 1070 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13581, - "end": 13582, - "loc": { - "start": { - "line": 139, - "column": 1070 - }, - "end": { - "line": 139, - "column": 1071 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13582, - "end": 13583, - "loc": { - "start": { - "line": 139, - "column": 1071 - }, - "end": { - "line": 139, - "column": 1072 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13583, - "end": 13584, - "loc": { - "start": { - "line": 139, - "column": 1072 - }, - "end": { - "line": 139, - "column": 1073 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13584, - "end": 13585, - "loc": { - "start": { - "line": 139, - "column": 1073 - }, - "end": { - "line": 139, - "column": 1074 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13586, - "end": 13587, - "loc": { - "start": { - "line": 139, - "column": 1075 - }, - "end": { - "line": 139, - "column": 1076 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "uq.val", - "start": 13587, - "end": 13595, - "loc": { - "start": { - "line": 139, - "column": 1076 - }, - "end": { - "line": 139, - "column": 1084 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13595, - "end": 13596, - "loc": { - "start": { - "line": 139, - "column": 1084 - }, - "end": { - "line": 139, - "column": 1085 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13596, - "end": 13597, - "loc": { - "start": { - "line": 139, - "column": 1085 - }, - "end": { - "line": 139, - "column": 1086 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13597, - "end": 13598, - "loc": { - "start": { - "line": 139, - "column": 1086 - }, - "end": { - "line": 139, - "column": 1087 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13598, - "end": 13599, - "loc": { - "start": { - "line": 139, - "column": 1087 - }, - "end": { - "line": 139, - "column": 1088 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13599, - "end": 13600, - "loc": { - "start": { - "line": 139, - "column": 1088 - }, - "end": { - "line": 139, - "column": 1089 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13600, - "end": 13601, - "loc": { - "start": { - "line": 139, - "column": 1089 - }, - "end": { - "line": 139, - "column": 1090 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13601, - "end": 13602, - "loc": { - "start": { - "line": 139, - "column": 1090 - }, - "end": { - "line": 139, - "column": 1091 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13602, - "end": 13603, - "loc": { - "start": { - "line": 139, - "column": 1091 - }, - "end": { - "line": 139, - "column": 1092 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13604, - "end": 13612, - "loc": { - "start": { - "line": 139, - "column": 1093 - }, - "end": { - "line": 139, - "column": 1101 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13612, - "end": 13613, - "loc": { - "start": { - "line": 139, - "column": 1101 - }, - "end": { - "line": 139, - "column": 1102 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "F", - "start": 13614, - "end": 13615, - "loc": { - "start": { - "line": 139, - "column": 1103 - }, - "end": { - "line": 139, - "column": 1104 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13615, - "end": 13616, - "loc": { - "start": { - "line": 139, - "column": 1104 - }, - "end": { - "line": 139, - "column": 1105 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 13617, - "end": 13629, - "loc": { - "start": { - "line": 139, - "column": 1106 - }, - "end": { - "line": 139, - "column": 1118 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13629, - "end": 13630, - "loc": { - "start": { - "line": 139, - "column": 1118 - }, - "end": { - "line": 139, - "column": 1119 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13631, - "end": 13632, - "loc": { - "start": { - "line": 139, - "column": 1120 - }, - "end": { - "line": 139, - "column": 1121 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13632, - "end": 13633, - "loc": { - "start": { - "line": 139, - "column": 1121 - }, - "end": { - "line": 139, - "column": 1122 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13633, - "end": 13634, - "loc": { - "start": { - "line": 139, - "column": 1122 - }, - "end": { - "line": 139, - "column": 1123 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 13635, - "end": 13649, - "loc": { - "start": { - "line": 139, - "column": 1124 - }, - "end": { - "line": 139, - "column": 1138 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13649, - "end": 13650, - "loc": { - "start": { - "line": 139, - "column": 1138 - }, - "end": { - "line": 139, - "column": 1139 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13651, - "end": 13652, - "loc": { - "start": { - "line": 139, - "column": 1140 - }, - "end": { - "line": 139, - "column": 1141 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13652, - "end": 13653, - "loc": { - "start": { - "line": 139, - "column": 1141 - }, - "end": { - "line": 139, - "column": 1142 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13653, - "end": 13654, - "loc": { - "start": { - "line": 139, - "column": 1142 - }, - "end": { - "line": 139, - "column": 1143 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "types", - "start": 13655, - "end": 13660, - "loc": { - "start": { - "line": 139, - "column": 1144 - }, - "end": { - "line": 139, - "column": 1149 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13660, - "end": 13661, - "loc": { - "start": { - "line": 139, - "column": 1149 - }, - "end": { - "line": 139, - "column": 1150 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "K", - "start": 13662, - "end": 13663, - "loc": { - "start": { - "line": 139, - "column": 1151 - }, - "end": { - "line": 139, - "column": 1152 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13664, - "end": 13665, - "loc": { - "start": { - "line": 139, - "column": 1153 - }, - "end": { - "line": 139, - "column": 1154 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13665, - "end": 13666, - "loc": { - "start": { - "line": 139, - "column": 1154 - }, - "end": { - "line": 139, - "column": 1155 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13666, - "end": 13667, - "loc": { - "start": { - "line": 139, - "column": 1155 - }, - "end": { - "line": 139, - "column": 1156 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13668, - "end": 13669, - "loc": { - "start": { - "line": 139, - "column": 1157 - }, - "end": { - "line": 139, - "column": 1158 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "c", - "start": 13669, - "end": 13672, - "loc": { - "start": { - "line": 139, - "column": 1158 - }, - "end": { - "line": 139, - "column": 1161 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13672, - "end": 13673, - "loc": { - "start": { - "line": 139, - "column": 1161 - }, - "end": { - "line": 139, - "column": 1162 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cc", - "start": 13674, - "end": 13678, - "loc": { - "start": { - "line": 139, - "column": 1163 - }, - "end": { - "line": 139, - "column": 1167 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13678, - "end": 13679, - "loc": { - "start": { - "line": 139, - "column": 1167 - }, - "end": { - "line": 139, - "column": 1168 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cpp", - "start": 13680, - "end": 13685, - "loc": { - "start": { - "line": 139, - "column": 1169 - }, - "end": { - "line": 139, - "column": 1174 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13685, - "end": 13686, - "loc": { - "start": { - "line": 139, - "column": 1174 - }, - "end": { - "line": 139, - "column": 1175 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cxx", - "start": 13687, - "end": 13692, - "loc": { - "start": { - "line": 139, - "column": 1176 - }, - "end": { - "line": 139, - "column": 1181 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13692, - "end": 13693, - "loc": { - "start": { - "line": 139, - "column": 1181 - }, - "end": { - "line": 139, - "column": 1182 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cyc", - "start": 13694, - "end": 13699, - "loc": { - "start": { - "line": 139, - "column": 1183 - }, - "end": { - "line": 139, - "column": 1188 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13699, - "end": 13700, - "loc": { - "start": { - "line": 139, - "column": 1188 - }, - "end": { - "line": 139, - "column": 1189 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "m", - "start": 13701, - "end": 13704, - "loc": { - "start": { - "line": 139, - "column": 1190 - }, - "end": { - "line": 139, - "column": 1193 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13704, - "end": 13705, - "loc": { - "start": { - "line": 139, - "column": 1193 - }, - "end": { - "line": 139, - "column": 1194 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13705, - "end": 13706, - "loc": { - "start": { - "line": 139, - "column": 1194 - }, - "end": { - "line": 139, - "column": 1195 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13706, - "end": 13707, - "loc": { - "start": { - "line": 139, - "column": 1195 - }, - "end": { - "line": 139, - "column": 1196 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13707, - "end": 13708, - "loc": { - "start": { - "line": 139, - "column": 1196 - }, - "end": { - "line": 139, - "column": 1197 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13708, - "end": 13709, - "loc": { - "start": { - "line": 139, - "column": 1197 - }, - "end": { - "line": 139, - "column": 1198 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13709, - "end": 13710, - "loc": { - "start": { - "line": 139, - "column": 1198 - }, - "end": { - "line": 139, - "column": 1199 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13710, - "end": 13711, - "loc": { - "start": { - "line": 139, - "column": 1199 - }, - "end": { - "line": 139, - "column": 1200 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13711, - "end": 13712, - "loc": { - "start": { - "line": 139, - "column": 1200 - }, - "end": { - "line": 139, - "column": 1201 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13713, - "end": 13721, - "loc": { - "start": { - "line": 139, - "column": 1202 - }, - "end": { - "line": 139, - "column": 1210 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13721, - "end": 13722, - "loc": { - "start": { - "line": 139, - "column": 1210 - }, - "end": { - "line": 139, - "column": 1211 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null,true,false", - "start": 13723, - "end": 13740, - "loc": { - "start": { - "line": 139, - "column": 1212 - }, - "end": { - "line": 139, - "column": 1229 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13741, - "end": 13742, - "loc": { - "start": { - "line": 139, - "column": 1230 - }, - "end": { - "line": 139, - "column": 1231 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13742, - "end": 13743, - "loc": { - "start": { - "line": 139, - "column": 1231 - }, - "end": { - "line": 139, - "column": 1232 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13743, - "end": 13744, - "loc": { - "start": { - "line": 139, - "column": 1232 - }, - "end": { - "line": 139, - "column": 1233 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13745, - "end": 13746, - "loc": { - "start": { - "line": 139, - "column": 1234 - }, - "end": { - "line": 139, - "column": 1235 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "json", - "start": 13746, - "end": 13752, - "loc": { - "start": { - "line": 139, - "column": 1235 - }, - "end": { - "line": 139, - "column": 1241 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13752, - "end": 13753, - "loc": { - "start": { - "line": 139, - "column": 1241 - }, - "end": { - "line": 139, - "column": 1242 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13753, - "end": 13754, - "loc": { - "start": { - "line": 139, - "column": 1242 - }, - "end": { - "line": 139, - "column": 1243 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13754, - "end": 13755, - "loc": { - "start": { - "line": 139, - "column": 1243 - }, - "end": { - "line": 139, - "column": 1244 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13755, - "end": 13756, - "loc": { - "start": { - "line": 139, - "column": 1244 - }, - "end": { - "line": 139, - "column": 1245 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13756, - "end": 13757, - "loc": { - "start": { - "line": 139, - "column": 1245 - }, - "end": { - "line": 139, - "column": 1246 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13757, - "end": 13758, - "loc": { - "start": { - "line": 139, - "column": 1246 - }, - "end": { - "line": 139, - "column": 1247 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13758, - "end": 13759, - "loc": { - "start": { - "line": 139, - "column": 1247 - }, - "end": { - "line": 139, - "column": 1248 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13759, - "end": 13760, - "loc": { - "start": { - "line": 139, - "column": 1248 - }, - "end": { - "line": 139, - "column": 1249 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13761, - "end": 13769, - "loc": { - "start": { - "line": 139, - "column": 1250 - }, - "end": { - "line": 139, - "column": 1258 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13769, - "end": 13770, - "loc": { - "start": { - "line": 139, - "column": 1258 - }, - "end": { - "line": 139, - "column": 1259 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "H", - "start": 13771, - "end": 13772, - "loc": { - "start": { - "line": 139, - "column": 1260 - }, - "end": { - "line": 139, - "column": 1261 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13772, - "end": 13773, - "loc": { - "start": { - "line": 139, - "column": 1261 - }, - "end": { - "line": 139, - "column": 1262 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 13774, - "end": 13786, - "loc": { - "start": { - "line": 139, - "column": 1263 - }, - "end": { - "line": 139, - "column": 1275 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13786, - "end": 13787, - "loc": { - "start": { - "line": 139, - "column": 1275 - }, - "end": { - "line": 139, - "column": 1276 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13788, - "end": 13789, - "loc": { - "start": { - "line": 139, - "column": 1277 - }, - "end": { - "line": 139, - "column": 1278 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13789, - "end": 13790, - "loc": { - "start": { - "line": 139, - "column": 1278 - }, - "end": { - "line": 139, - "column": 1279 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13790, - "end": 13791, - "loc": { - "start": { - "line": 139, - "column": 1279 - }, - "end": { - "line": 139, - "column": 1280 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 13792, - "end": 13806, - "loc": { - "start": { - "line": 139, - "column": 1281 - }, - "end": { - "line": 139, - "column": 1295 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13806, - "end": 13807, - "loc": { - "start": { - "line": 139, - "column": 1295 - }, - "end": { - "line": 139, - "column": 1296 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13808, - "end": 13809, - "loc": { - "start": { - "line": 139, - "column": 1297 - }, - "end": { - "line": 139, - "column": 1298 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13809, - "end": 13810, - "loc": { - "start": { - "line": 139, - "column": 1298 - }, - "end": { - "line": 139, - "column": 1299 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13810, - "end": 13811, - "loc": { - "start": { - "line": 139, - "column": 1299 - }, - "end": { - "line": 139, - "column": 1300 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "verbatimStrings", - "start": 13812, - "end": 13827, - "loc": { - "start": { - "line": 139, - "column": 1301 - }, - "end": { - "line": 139, - "column": 1316 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13827, - "end": 13828, - "loc": { - "start": { - "line": 139, - "column": 1316 - }, - "end": { - "line": 139, - "column": 1317 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13829, - "end": 13830, - "loc": { - "start": { - "line": 139, - "column": 1318 - }, - "end": { - "line": 139, - "column": 1319 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13830, - "end": 13831, - "loc": { - "start": { - "line": 139, - "column": 1319 - }, - "end": { - "line": 139, - "column": 1320 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13831, - "end": 13832, - "loc": { - "start": { - "line": 139, - "column": 1320 - }, - "end": { - "line": 139, - "column": 1321 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "types", - "start": 13833, - "end": 13838, - "loc": { - "start": { - "line": 139, - "column": 1322 - }, - "end": { - "line": 139, - "column": 1327 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13838, - "end": 13839, - "loc": { - "start": { - "line": 139, - "column": 1327 - }, - "end": { - "line": 139, - "column": 1328 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "K", - "start": 13840, - "end": 13841, - "loc": { - "start": { - "line": 139, - "column": 1329 - }, - "end": { - "line": 139, - "column": 1330 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13842, - "end": 13843, - "loc": { - "start": { - "line": 139, - "column": 1331 - }, - "end": { - "line": 139, - "column": 1332 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13843, - "end": 13844, - "loc": { - "start": { - "line": 139, - "column": 1332 - }, - "end": { - "line": 139, - "column": 1333 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13844, - "end": 13845, - "loc": { - "start": { - "line": 139, - "column": 1333 - }, - "end": { - "line": 139, - "column": 1334 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13846, - "end": 13847, - "loc": { - "start": { - "line": 139, - "column": 1335 - }, - "end": { - "line": 139, - "column": 1336 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cs", - "start": 13847, - "end": 13851, - "loc": { - "start": { - "line": 139, - "column": 1336 - }, - "end": { - "line": 139, - "column": 1340 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13851, - "end": 13852, - "loc": { - "start": { - "line": 139, - "column": 1340 - }, - "end": { - "line": 139, - "column": 1341 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13852, - "end": 13853, - "loc": { - "start": { - "line": 139, - "column": 1341 - }, - "end": { - "line": 139, - "column": 1342 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13853, - "end": 13854, - "loc": { - "start": { - "line": 139, - "column": 1342 - }, - "end": { - "line": 139, - "column": 1343 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13854, - "end": 13855, - "loc": { - "start": { - "line": 139, - "column": 1343 - }, - "end": { - "line": 139, - "column": 1344 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13855, - "end": 13856, - "loc": { - "start": { - "line": 139, - "column": 1344 - }, - "end": { - "line": 139, - "column": 1345 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13856, - "end": 13857, - "loc": { - "start": { - "line": 139, - "column": 1345 - }, - "end": { - "line": 139, - "column": 1346 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13857, - "end": 13858, - "loc": { - "start": { - "line": 139, - "column": 1346 - }, - "end": { - "line": 139, - "column": 1347 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13858, - "end": 13859, - "loc": { - "start": { - "line": 139, - "column": 1347 - }, - "end": { - "line": 139, - "column": 1348 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13860, - "end": 13868, - "loc": { - "start": { - "line": 139, - "column": 1349 - }, - "end": { - "line": 139, - "column": 1357 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13868, - "end": 13869, - "loc": { - "start": { - "line": 139, - "column": 1357 - }, - "end": { - "line": 139, - "column": 1358 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "G", - "start": 13870, - "end": 13871, - "loc": { - "start": { - "line": 139, - "column": 1359 - }, - "end": { - "line": 139, - "column": 1360 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13871, - "end": 13872, - "loc": { - "start": { - "line": 139, - "column": 1360 - }, - "end": { - "line": 139, - "column": 1361 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 13873, - "end": 13887, - "loc": { - "start": { - "line": 139, - "column": 1362 - }, - "end": { - "line": 139, - "column": 1376 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13887, - "end": 13888, - "loc": { - "start": { - "line": 139, - "column": 1376 - }, - "end": { - "line": 139, - "column": 1377 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13889, - "end": 13890, - "loc": { - "start": { - "line": 139, - "column": 1378 - }, - "end": { - "line": 139, - "column": 1379 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13890, - "end": 13891, - "loc": { - "start": { - "line": 139, - "column": 1379 - }, - "end": { - "line": 139, - "column": 1380 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13892, - "end": 13893, - "loc": { - "start": { - "line": 139, - "column": 1381 - }, - "end": { - "line": 139, - "column": 1382 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13893, - "end": 13894, - "loc": { - "start": { - "line": 139, - "column": 1382 - }, - "end": { - "line": 139, - "column": 1383 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13894, - "end": 13895, - "loc": { - "start": { - "line": 139, - "column": 1383 - }, - "end": { - "line": 139, - "column": 1384 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13896, - "end": 13897, - "loc": { - "start": { - "line": 139, - "column": 1385 - }, - "end": { - "line": 139, - "column": 1386 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "java", - "start": 13897, - "end": 13903, - "loc": { - "start": { - "line": 139, - "column": 1386 - }, - "end": { - "line": 139, - "column": 1392 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13903, - "end": 13904, - "loc": { - "start": { - "line": 139, - "column": 1392 - }, - "end": { - "line": 139, - "column": 1393 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13904, - "end": 13905, - "loc": { - "start": { - "line": 139, - "column": 1393 - }, - "end": { - "line": 139, - "column": 1394 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13905, - "end": 13906, - "loc": { - "start": { - "line": 139, - "column": 1394 - }, - "end": { - "line": 139, - "column": 1395 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13906, - "end": 13907, - "loc": { - "start": { - "line": 139, - "column": 1395 - }, - "end": { - "line": 139, - "column": 1396 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13907, - "end": 13908, - "loc": { - "start": { - "line": 139, - "column": 1396 - }, - "end": { - "line": 139, - "column": 1397 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13908, - "end": 13909, - "loc": { - "start": { - "line": 139, - "column": 1397 - }, - "end": { - "line": 139, - "column": 1398 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13909, - "end": 13910, - "loc": { - "start": { - "line": 139, - "column": 1398 - }, - "end": { - "line": 139, - "column": 1399 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13910, - "end": 13911, - "loc": { - "start": { - "line": 139, - "column": 1399 - }, - "end": { - "line": 139, - "column": 1400 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13912, - "end": 13920, - "loc": { - "start": { - "line": 139, - "column": 1401 - }, - "end": { - "line": 139, - "column": 1409 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13920, - "end": 13921, - "loc": { - "start": { - "line": 139, - "column": 1409 - }, - "end": { - "line": 139, - "column": 1410 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "v", - "start": 13922, - "end": 13923, - "loc": { - "start": { - "line": 139, - "column": 1411 - }, - "end": { - "line": 139, - "column": 1412 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13923, - "end": 13924, - "loc": { - "start": { - "line": 139, - "column": 1412 - }, - "end": { - "line": 139, - "column": 1413 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 13925, - "end": 13937, - "loc": { - "start": { - "line": 139, - "column": 1414 - }, - "end": { - "line": 139, - "column": 1426 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13937, - "end": 13938, - "loc": { - "start": { - "line": 139, - "column": 1426 - }, - "end": { - "line": 139, - "column": 1427 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13939, - "end": 13940, - "loc": { - "start": { - "line": 139, - "column": 1428 - }, - "end": { - "line": 139, - "column": 1429 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13940, - "end": 13941, - "loc": { - "start": { - "line": 139, - "column": 1429 - }, - "end": { - "line": 139, - "column": 1430 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13941, - "end": 13942, - "loc": { - "start": { - "line": 139, - "column": 1430 - }, - "end": { - "line": 139, - "column": 1431 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 13943, - "end": 13959, - "loc": { - "start": { - "line": 139, - "column": 1432 - }, - "end": { - "line": 139, - "column": 1448 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13959, - "end": 13960, - "loc": { - "start": { - "line": 139, - "column": 1448 - }, - "end": { - "line": 139, - "column": 1449 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13961, - "end": 13962, - "loc": { - "start": { - "line": 139, - "column": 1450 - }, - "end": { - "line": 139, - "column": 1451 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 13962, - "end": 13963, - "loc": { - "start": { - "line": 139, - "column": 1451 - }, - "end": { - "line": 139, - "column": 1452 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13964, - "end": 13965, - "loc": { - "start": { - "line": 139, - "column": 1453 - }, - "end": { - "line": 139, - "column": 1454 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13965, - "end": 13966, - "loc": { - "start": { - "line": 139, - "column": 1454 - }, - "end": { - "line": 139, - "column": 1455 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13966, - "end": 13967, - "loc": { - "start": { - "line": 139, - "column": 1455 - }, - "end": { - "line": 139, - "column": 1456 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13968, - "end": 13969, - "loc": { - "start": { - "line": 139, - "column": 1457 - }, - "end": { - "line": 139, - "column": 1458 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "bsh", - "start": 13969, - "end": 13974, - "loc": { - "start": { - "line": 139, - "column": 1458 - }, - "end": { - "line": 139, - "column": 1463 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13974, - "end": 13975, - "loc": { - "start": { - "line": 139, - "column": 1463 - }, - "end": { - "line": 139, - "column": 1464 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "csh", - "start": 13976, - "end": 13981, - "loc": { - "start": { - "line": 139, - "column": 1465 - }, - "end": { - "line": 139, - "column": 1470 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13981, - "end": 13982, - "loc": { - "start": { - "line": 139, - "column": 1470 - }, - "end": { - "line": 139, - "column": 1471 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "sh", - "start": 13983, - "end": 13987, - "loc": { - "start": { - "line": 139, - "column": 1472 - }, - "end": { - "line": 139, - "column": 1476 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13987, - "end": 13988, - "loc": { - "start": { - "line": 139, - "column": 1476 - }, - "end": { - "line": 139, - "column": 1477 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13988, - "end": 13989, - "loc": { - "start": { - "line": 139, - "column": 1477 - }, - "end": { - "line": 139, - "column": 1478 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13989, - "end": 13990, - "loc": { - "start": { - "line": 139, - "column": 1478 - }, - "end": { - "line": 139, - "column": 1479 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 13990, - "end": 13991, - "loc": { - "start": { - "line": 139, - "column": 1479 - }, - "end": { - "line": 139, - "column": 1480 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13991, - "end": 13992, - "loc": { - "start": { - "line": 139, - "column": 1480 - }, - "end": { - "line": 139, - "column": 1481 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 13992, - "end": 13993, - "loc": { - "start": { - "line": 139, - "column": 1481 - }, - "end": { - "line": 139, - "column": 1482 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13993, - "end": 13994, - "loc": { - "start": { - "line": 139, - "column": 1482 - }, - "end": { - "line": 139, - "column": 1483 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13994, - "end": 13995, - "loc": { - "start": { - "line": 139, - "column": 1483 - }, - "end": { - "line": 139, - "column": 1484 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 13996, - "end": 14004, - "loc": { - "start": { - "line": 139, - "column": 1485 - }, - "end": { - "line": 139, - "column": 1493 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14004, - "end": 14005, - "loc": { - "start": { - "line": 139, - "column": 1493 - }, - "end": { - "line": 139, - "column": 1494 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "I", - "start": 14006, - "end": 14007, - "loc": { - "start": { - "line": 139, - "column": 1495 - }, - "end": { - "line": 139, - "column": 1496 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14007, - "end": 14008, - "loc": { - "start": { - "line": 139, - "column": 1496 - }, - "end": { - "line": 139, - "column": 1497 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 14009, - "end": 14021, - "loc": { - "start": { - "line": 139, - "column": 1498 - }, - "end": { - "line": 139, - "column": 1510 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14021, - "end": 14022, - "loc": { - "start": { - "line": 139, - "column": 1510 - }, - "end": { - "line": 139, - "column": 1511 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14023, - "end": 14024, - "loc": { - "start": { - "line": 139, - "column": 1512 - }, - "end": { - "line": 139, - "column": 1513 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14024, - "end": 14025, - "loc": { - "start": { - "line": 139, - "column": 1513 - }, - "end": { - "line": 139, - "column": 1514 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14025, - "end": 14026, - "loc": { - "start": { - "line": 139, - "column": 1514 - }, - "end": { - "line": 139, - "column": 1515 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 14027, - "end": 14043, - "loc": { - "start": { - "line": 139, - "column": 1516 - }, - "end": { - "line": 139, - "column": 1532 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14043, - "end": 14044, - "loc": { - "start": { - "line": 139, - "column": 1532 - }, - "end": { - "line": 139, - "column": 1533 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14045, - "end": 14046, - "loc": { - "start": { - "line": 139, - "column": 1534 - }, - "end": { - "line": 139, - "column": 1535 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14046, - "end": 14047, - "loc": { - "start": { - "line": 139, - "column": 1535 - }, - "end": { - "line": 139, - "column": 1536 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14047, - "end": 14048, - "loc": { - "start": { - "line": 139, - "column": 1536 - }, - "end": { - "line": 139, - "column": 1537 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tripleQuotedStrings", - "start": 14049, - "end": 14068, - "loc": { - "start": { - "line": 139, - "column": 1538 - }, - "end": { - "line": 139, - "column": 1557 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14068, - "end": 14069, - "loc": { - "start": { - "line": 139, - "column": 1557 - }, - "end": { - "line": 139, - "column": 1558 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14070, - "end": 14071, - "loc": { - "start": { - "line": 139, - "column": 1559 - }, - "end": { - "line": 139, - "column": 1560 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14071, - "end": 14072, - "loc": { - "start": { - "line": 139, - "column": 1560 - }, - "end": { - "line": 139, - "column": 1561 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14073, - "end": 14074, - "loc": { - "start": { - "line": 139, - "column": 1562 - }, - "end": { - "line": 139, - "column": 1563 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14074, - "end": 14075, - "loc": { - "start": { - "line": 139, - "column": 1563 - }, - "end": { - "line": 139, - "column": 1564 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14075, - "end": 14076, - "loc": { - "start": { - "line": 139, - "column": 1564 - }, - "end": { - "line": 139, - "column": 1565 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14077, - "end": 14078, - "loc": { - "start": { - "line": 139, - "column": 1566 - }, - "end": { - "line": 139, - "column": 1567 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "cv", - "start": 14078, - "end": 14082, - "loc": { - "start": { - "line": 139, - "column": 1567 - }, - "end": { - "line": 139, - "column": 1571 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14082, - "end": 14083, - "loc": { - "start": { - "line": 139, - "column": 1571 - }, - "end": { - "line": 139, - "column": 1572 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "py", - "start": 14084, - "end": 14088, - "loc": { - "start": { - "line": 139, - "column": 1573 - }, - "end": { - "line": 139, - "column": 1577 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14088, - "end": 14089, - "loc": { - "start": { - "line": 139, - "column": 1577 - }, - "end": { - "line": 139, - "column": 1578 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14089, - "end": 14090, - "loc": { - "start": { - "line": 139, - "column": 1578 - }, - "end": { - "line": 139, - "column": 1579 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14090, - "end": 14091, - "loc": { - "start": { - "line": 139, - "column": 1579 - }, - "end": { - "line": 139, - "column": 1580 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 14091, - "end": 14092, - "loc": { - "start": { - "line": 139, - "column": 1580 - }, - "end": { - "line": 139, - "column": 1581 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14092, - "end": 14093, - "loc": { - "start": { - "line": 139, - "column": 1581 - }, - "end": { - "line": 139, - "column": 1582 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 14093, - "end": 14094, - "loc": { - "start": { - "line": 139, - "column": 1582 - }, - "end": { - "line": 139, - "column": 1583 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14094, - "end": 14095, - "loc": { - "start": { - "line": 139, - "column": 1583 - }, - "end": { - "line": 139, - "column": 1584 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14095, - "end": 14096, - "loc": { - "start": { - "line": 139, - "column": 1584 - }, - "end": { - "line": 139, - "column": 1585 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 14097, - "end": 14105, - "loc": { - "start": { - "line": 139, - "column": 1586 - }, - "end": { - "line": 139, - "column": 1594 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14105, - "end": 14106, - "loc": { - "start": { - "line": 139, - "column": 1594 - }, - "end": { - "line": 139, - "column": 1595 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END", - "start": 14107, - "end": 14283, - "loc": { - "start": { - "line": 139, - "column": 1596 - }, - "end": { - "line": 139, - "column": 1772 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14283, - "end": 14284, - "loc": { - "start": { - "line": 139, - "column": 1772 - }, - "end": { - "line": 139, - "column": 1773 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 14285, - "end": 14297, - "loc": { - "start": { - "line": 139, - "column": 1774 - }, - "end": { - "line": 139, - "column": 1786 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14297, - "end": 14298, - "loc": { - "start": { - "line": 139, - "column": 1786 - }, - "end": { - "line": 139, - "column": 1787 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14299, - "end": 14300, - "loc": { - "start": { - "line": 139, - "column": 1788 - }, - "end": { - "line": 139, - "column": 1789 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14300, - "end": 14301, - "loc": { - "start": { - "line": 139, - "column": 1789 - }, - "end": { - "line": 139, - "column": 1790 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14301, - "end": 14302, - "loc": { - "start": { - "line": 139, - "column": 1790 - }, - "end": { - "line": 139, - "column": 1791 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 14303, - "end": 14319, - "loc": { - "start": { - "line": 139, - "column": 1792 - }, - "end": { - "line": 139, - "column": 1808 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14319, - "end": 14320, - "loc": { - "start": { - "line": 139, - "column": 1808 - }, - "end": { - "line": 139, - "column": 1809 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14321, - "end": 14322, - "loc": { - "start": { - "line": 139, - "column": 1810 - }, - "end": { - "line": 139, - "column": 1811 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14322, - "end": 14323, - "loc": { - "start": { - "line": 139, - "column": 1811 - }, - "end": { - "line": 139, - "column": 1812 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14323, - "end": 14324, - "loc": { - "start": { - "line": 139, - "column": 1812 - }, - "end": { - "line": 139, - "column": 1813 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 14325, - "end": 14338, - "loc": { - "start": { - "line": 139, - "column": 1814 - }, - "end": { - "line": 139, - "column": 1827 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14338, - "end": 14339, - "loc": { - "start": { - "line": 139, - "column": 1827 - }, - "end": { - "line": 139, - "column": 1828 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14340, - "end": 14341, - "loc": { - "start": { - "line": 139, - "column": 1829 - }, - "end": { - "line": 139, - "column": 1830 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14341, - "end": 14342, - "loc": { - "start": { - "line": 139, - "column": 1830 - }, - "end": { - "line": 139, - "column": 1831 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14343, - "end": 14344, - "loc": { - "start": { - "line": 139, - "column": 1832 - }, - "end": { - "line": 139, - "column": 1833 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14344, - "end": 14345, - "loc": { - "start": { - "line": 139, - "column": 1833 - }, - "end": { - "line": 139, - "column": 1834 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14345, - "end": 14346, - "loc": { - "start": { - "line": 139, - "column": 1834 - }, - "end": { - "line": 139, - "column": 1835 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14347, - "end": 14348, - "loc": { - "start": { - "line": 139, - "column": 1836 - }, - "end": { - "line": 139, - "column": 1837 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "perl", - "start": 14348, - "end": 14354, - "loc": { - "start": { - "line": 139, - "column": 1837 - }, - "end": { - "line": 139, - "column": 1843 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14354, - "end": 14355, - "loc": { - "start": { - "line": 139, - "column": 1843 - }, - "end": { - "line": 139, - "column": 1844 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pl", - "start": 14356, - "end": 14360, - "loc": { - "start": { - "line": 139, - "column": 1845 - }, - "end": { - "line": 139, - "column": 1849 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14360, - "end": 14361, - "loc": { - "start": { - "line": 139, - "column": 1849 - }, - "end": { - "line": 139, - "column": 1850 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pm", - "start": 14362, - "end": 14366, - "loc": { - "start": { - "line": 139, - "column": 1851 - }, - "end": { - "line": 139, - "column": 1855 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14366, - "end": 14367, - "loc": { - "start": { - "line": 139, - "column": 1855 - }, - "end": { - "line": 139, - "column": 1856 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14367, - "end": 14368, - "loc": { - "start": { - "line": 139, - "column": 1856 - }, - "end": { - "line": 139, - "column": 1857 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14368, - "end": 14369, - "loc": { - "start": { - "line": 139, - "column": 1857 - }, - "end": { - "line": 139, - "column": 1858 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 14369, - "end": 14370, - "loc": { - "start": { - "line": 139, - "column": 1858 - }, - "end": { - "line": 139, - "column": 1859 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14370, - "end": 14371, - "loc": { - "start": { - "line": 139, - "column": 1859 - }, - "end": { - "line": 139, - "column": 1860 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 14371, - "end": 14372, - "loc": { - "start": { - "line": 139, - "column": 1860 - }, - "end": { - "line": 139, - "column": 1861 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14372, - "end": 14373, - "loc": { - "start": { - "line": 139, - "column": 1861 - }, - "end": { - "line": 139, - "column": 1862 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14373, - "end": 14374, - "loc": { - "start": { - "line": 139, - "column": 1862 - }, - "end": { - "line": 139, - "column": 1863 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 14375, - "end": 14383, - "loc": { - "start": { - "line": 139, - "column": 1864 - }, - "end": { - "line": 139, - "column": 1872 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14383, - "end": 14384, - "loc": { - "start": { - "line": 139, - "column": 1872 - }, - "end": { - "line": 139, - "column": 1873 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "J", - "start": 14385, - "end": 14386, - "loc": { - "start": { - "line": 139, - "column": 1874 - }, - "end": { - "line": 139, - "column": 1875 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14386, - "end": 14387, - "loc": { - "start": { - "line": 139, - "column": 1875 - }, - "end": { - "line": 139, - "column": 1876 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 14388, - "end": 14400, - "loc": { - "start": { - "line": 139, - "column": 1877 - }, - "end": { - "line": 139, - "column": 1889 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14400, - "end": 14401, - "loc": { - "start": { - "line": 139, - "column": 1889 - }, - "end": { - "line": 139, - "column": 1890 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14402, - "end": 14403, - "loc": { - "start": { - "line": 139, - "column": 1891 - }, - "end": { - "line": 139, - "column": 1892 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14403, - "end": 14404, - "loc": { - "start": { - "line": 139, - "column": 1892 - }, - "end": { - "line": 139, - "column": 1893 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14404, - "end": 14405, - "loc": { - "start": { - "line": 139, - "column": 1893 - }, - "end": { - "line": 139, - "column": 1894 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multiLineStrings", - "start": 14406, - "end": 14422, - "loc": { - "start": { - "line": 139, - "column": 1895 - }, - "end": { - "line": 139, - "column": 1911 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14422, - "end": 14423, - "loc": { - "start": { - "line": 139, - "column": 1911 - }, - "end": { - "line": 139, - "column": 1912 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14424, - "end": 14425, - "loc": { - "start": { - "line": 139, - "column": 1913 - }, - "end": { - "line": 139, - "column": 1914 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14425, - "end": 14426, - "loc": { - "start": { - "line": 139, - "column": 1914 - }, - "end": { - "line": 139, - "column": 1915 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14426, - "end": 14427, - "loc": { - "start": { - "line": 139, - "column": 1915 - }, - "end": { - "line": 139, - "column": 1916 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 14428, - "end": 14441, - "loc": { - "start": { - "line": 139, - "column": 1917 - }, - "end": { - "line": 139, - "column": 1930 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14441, - "end": 14442, - "loc": { - "start": { - "line": 139, - "column": 1930 - }, - "end": { - "line": 139, - "column": 1931 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14443, - "end": 14444, - "loc": { - "start": { - "line": 139, - "column": 1932 - }, - "end": { - "line": 139, - "column": 1933 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14444, - "end": 14445, - "loc": { - "start": { - "line": 139, - "column": 1933 - }, - "end": { - "line": 139, - "column": 1934 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14446, - "end": 14447, - "loc": { - "start": { - "line": 139, - "column": 1935 - }, - "end": { - "line": 139, - "column": 1936 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14447, - "end": 14448, - "loc": { - "start": { - "line": 139, - "column": 1936 - }, - "end": { - "line": 139, - "column": 1937 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14448, - "end": 14449, - "loc": { - "start": { - "line": 139, - "column": 1937 - }, - "end": { - "line": 139, - "column": 1938 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14450, - "end": 14451, - "loc": { - "start": { - "line": 139, - "column": 1939 - }, - "end": { - "line": 139, - "column": 1940 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "rb", - "start": 14451, - "end": 14455, - "loc": { - "start": { - "line": 139, - "column": 1940 - }, - "end": { - "line": 139, - "column": 1944 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14455, - "end": 14456, - "loc": { - "start": { - "line": 139, - "column": 1944 - }, - "end": { - "line": 139, - "column": 1945 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14456, - "end": 14457, - "loc": { - "start": { - "line": 139, - "column": 1945 - }, - "end": { - "line": 139, - "column": 1946 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14457, - "end": 14458, - "loc": { - "start": { - "line": 139, - "column": 1946 - }, - "end": { - "line": 139, - "column": 1947 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 14458, - "end": 14459, - "loc": { - "start": { - "line": 139, - "column": 1947 - }, - "end": { - "line": 139, - "column": 1948 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14459, - "end": 14460, - "loc": { - "start": { - "line": 139, - "column": 1948 - }, - "end": { - "line": 139, - "column": 1949 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 14460, - "end": 14461, - "loc": { - "start": { - "line": 139, - "column": 1949 - }, - "end": { - "line": 139, - "column": 1950 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14461, - "end": 14462, - "loc": { - "start": { - "line": 139, - "column": 1950 - }, - "end": { - "line": 139, - "column": 1951 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14462, - "end": 14463, - "loc": { - "start": { - "line": 139, - "column": 1951 - }, - "end": { - "line": 139, - "column": 1952 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 14464, - "end": 14472, - "loc": { - "start": { - "line": 139, - "column": 1953 - }, - "end": { - "line": 139, - "column": 1961 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14472, - "end": 14473, - "loc": { - "start": { - "line": 139, - "column": 1961 - }, - "end": { - "line": 139, - "column": 1962 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "w", - "start": 14474, - "end": 14475, - "loc": { - "start": { - "line": 139, - "column": 1963 - }, - "end": { - "line": 139, - "column": 1964 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14475, - "end": 14476, - "loc": { - "start": { - "line": 139, - "column": 1964 - }, - "end": { - "line": 139, - "column": 1965 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 14477, - "end": 14491, - "loc": { - "start": { - "line": 139, - "column": 1966 - }, - "end": { - "line": 139, - "column": 1980 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14491, - "end": 14492, - "loc": { - "start": { - "line": 139, - "column": 1980 - }, - "end": { - "line": 139, - "column": 1981 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14493, - "end": 14494, - "loc": { - "start": { - "line": 139, - "column": 1982 - }, - "end": { - "line": 139, - "column": 1983 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14494, - "end": 14495, - "loc": { - "start": { - "line": 139, - "column": 1983 - }, - "end": { - "line": 139, - "column": 1984 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14495, - "end": 14496, - "loc": { - "start": { - "line": 139, - "column": 1984 - }, - "end": { - "line": 139, - "column": 1985 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 14497, - "end": 14510, - "loc": { - "start": { - "line": 139, - "column": 1986 - }, - "end": { - "line": 139, - "column": 1999 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14510, - "end": 14511, - "loc": { - "start": { - "line": 139, - "column": 1999 - }, - "end": { - "line": 139, - "column": 2000 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14512, - "end": 14513, - "loc": { - "start": { - "line": 139, - "column": 2001 - }, - "end": { - "line": 139, - "column": 2002 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14513, - "end": 14514, - "loc": { - "start": { - "line": 139, - "column": 2002 - }, - "end": { - "line": 139, - "column": 2003 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14515, - "end": 14516, - "loc": { - "start": { - "line": 139, - "column": 2004 - }, - "end": { - "line": 139, - "column": 2005 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14516, - "end": 14517, - "loc": { - "start": { - "line": 139, - "column": 2005 - }, - "end": { - "line": 139, - "column": 2006 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14517, - "end": 14518, - "loc": { - "start": { - "line": 139, - "column": 2006 - }, - "end": { - "line": 139, - "column": 2007 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14519, - "end": 14520, - "loc": { - "start": { - "line": 139, - "column": 2008 - }, - "end": { - "line": 139, - "column": 2009 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "js", - "start": 14520, - "end": 14524, - "loc": { - "start": { - "line": 139, - "column": 2009 - }, - "end": { - "line": 139, - "column": 2013 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14524, - "end": 14525, - "loc": { - "start": { - "line": 139, - "column": 2013 - }, - "end": { - "line": 139, - "column": 2014 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14525, - "end": 14526, - "loc": { - "start": { - "line": 139, - "column": 2014 - }, - "end": { - "line": 139, - "column": 2015 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14526, - "end": 14527, - "loc": { - "start": { - "line": 139, - "column": 2015 - }, - "end": { - "line": 139, - "column": 2016 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 14527, - "end": 14528, - "loc": { - "start": { - "line": 139, - "column": 2016 - }, - "end": { - "line": 139, - "column": 2017 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14528, - "end": 14529, - "loc": { - "start": { - "line": 139, - "column": 2017 - }, - "end": { - "line": 139, - "column": 2018 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 14529, - "end": 14530, - "loc": { - "start": { - "line": 139, - "column": 2018 - }, - "end": { - "line": 139, - "column": 2019 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14530, - "end": 14531, - "loc": { - "start": { - "line": 139, - "column": 2019 - }, - "end": { - "line": 139, - "column": 2020 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14531, - "end": 14532, - "loc": { - "start": { - "line": 139, - "column": 2020 - }, - "end": { - "line": 139, - "column": 2021 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keywords", - "start": 14533, - "end": 14541, - "loc": { - "start": { - "line": 139, - "column": 2022 - }, - "end": { - "line": 139, - "column": 2030 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14541, - "end": 14542, - "loc": { - "start": { - "line": 139, - "column": 2030 - }, - "end": { - "line": 139, - "column": 2031 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", - "start": 14543, - "end": 14701, - "loc": { - "start": { - "line": 139, - "column": 2032 - }, - "end": { - "line": 139, - "column": 2190 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14701, - "end": 14702, - "loc": { - "start": { - "line": 139, - "column": 2190 - }, - "end": { - "line": 139, - "column": 2191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hashComments", - "start": 14707, - "end": 14719, - "loc": { - "start": { - "line": 140, - "column": 4 - }, - "end": { - "line": 140, - "column": 16 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14719, - "end": 14720, - "loc": { - "start": { - "line": 140, - "column": 16 - }, - "end": { - "line": 140, - "column": 17 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 14721, - "end": 14722, - "loc": { - "start": { - "line": 140, - "column": 18 - }, - "end": { - "line": 140, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14722, - "end": 14723, - "loc": { - "start": { - "line": 140, - "column": 19 - }, - "end": { - "line": 140, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cStyleComments", - "start": 14724, - "end": 14738, - "loc": { - "start": { - "line": 140, - "column": 21 - }, - "end": { - "line": 140, - "column": 35 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14738, - "end": 14739, - "loc": { - "start": { - "line": 140, - "column": 35 - }, - "end": { - "line": 140, - "column": 36 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14740, - "end": 14741, - "loc": { - "start": { - "line": 140, - "column": 37 - }, - "end": { - "line": 140, - "column": 38 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14741, - "end": 14742, - "loc": { - "start": { - "line": 140, - "column": 38 - }, - "end": { - "line": 140, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14742, - "end": 14743, - "loc": { - "start": { - "line": 140, - "column": 39 - }, - "end": { - "line": 140, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "multilineStrings", - "start": 14744, - "end": 14760, - "loc": { - "start": { - "line": 140, - "column": 41 - }, - "end": { - "line": 140, - "column": 57 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14760, - "end": 14761, - "loc": { - "start": { - "line": 140, - "column": 57 - }, - "end": { - "line": 140, - "column": 58 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14762, - "end": 14763, - "loc": { - "start": { - "line": 140, - "column": 59 - }, - "end": { - "line": 140, - "column": 60 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14763, - "end": 14764, - "loc": { - "start": { - "line": 140, - "column": 60 - }, - "end": { - "line": 140, - "column": 61 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14764, - "end": 14765, - "loc": { - "start": { - "line": 140, - "column": 61 - }, - "end": { - "line": 140, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tripleQuotedStrings", - "start": 14766, - "end": 14785, - "loc": { - "start": { - "line": 140, - "column": 63 - }, - "end": { - "line": 140, - "column": 82 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14785, - "end": 14786, - "loc": { - "start": { - "line": 140, - "column": 82 - }, - "end": { - "line": 140, - "column": 83 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14787, - "end": 14788, - "loc": { - "start": { - "line": 140, - "column": 84 - }, - "end": { - "line": 140, - "column": 85 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14788, - "end": 14789, - "loc": { - "start": { - "line": 140, - "column": 85 - }, - "end": { - "line": 140, - "column": 86 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14789, - "end": 14790, - "loc": { - "start": { - "line": 140, - "column": 86 - }, - "end": { - "line": 140, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "regexLiterals", - "start": 14791, - "end": 14804, - "loc": { - "start": { - "line": 140, - "column": 88 - }, - "end": { - "line": 140, - "column": 101 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14804, - "end": 14805, - "loc": { - "start": { - "line": 140, - "column": 101 - }, - "end": { - "line": 140, - "column": 102 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14806, - "end": 14807, - "loc": { - "start": { - "line": 140, - "column": 103 - }, - "end": { - "line": 140, - "column": 104 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 14807, - "end": 14808, - "loc": { - "start": { - "line": 140, - "column": 104 - }, - "end": { - "line": 140, - "column": 105 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14809, - "end": 14810, - "loc": { - "start": { - "line": 140, - "column": 106 - }, - "end": { - "line": 140, - "column": 107 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14810, - "end": 14811, - "loc": { - "start": { - "line": 140, - "column": 107 - }, - "end": { - "line": 140, - "column": 108 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14811, - "end": 14812, - "loc": { - "start": { - "line": 140, - "column": 108 - }, - "end": { - "line": 140, - "column": 109 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14813, - "end": 14814, - "loc": { - "start": { - "line": 140, - "column": 110 - }, - "end": { - "line": 140, - "column": 111 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "coffee", - "start": 14814, - "end": 14822, - "loc": { - "start": { - "line": 140, - "column": 111 - }, - "end": { - "line": 140, - "column": 119 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14822, - "end": 14823, - "loc": { - "start": { - "line": 140, - "column": 119 - }, - "end": { - "line": 140, - "column": 120 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14823, - "end": 14824, - "loc": { - "start": { - "line": 140, - "column": 120 - }, - "end": { - "line": 140, - "column": 121 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14824, - "end": 14825, - "loc": { - "start": { - "line": 140, - "column": 121 - }, - "end": { - "line": 140, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 14825, - "end": 14826, - "loc": { - "start": { - "line": 140, - "column": 122 - }, - "end": { - "line": 140, - "column": 123 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14826, - "end": 14827, - "loc": { - "start": { - "line": 140, - "column": 123 - }, - "end": { - "line": 140, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 14827, - "end": 14828, - "loc": { - "start": { - "line": 140, - "column": 124 - }, - "end": { - "line": 140, - "column": 125 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14828, - "end": 14829, - "loc": { - "start": { - "line": 140, - "column": 125 - }, - "end": { - "line": 140, - "column": 126 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14829, - "end": 14830, - "loc": { - "start": { - "line": 140, - "column": 126 - }, - "end": { - "line": 140, - "column": 127 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14830, - "end": 14831, - "loc": { - "start": { - "line": 140, - "column": 127 - }, - "end": { - "line": 140, - "column": 128 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14831, - "end": 14832, - "loc": { - "start": { - "line": 140, - "column": 128 - }, - "end": { - "line": 140, - "column": 129 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14833, - "end": 14834, - "loc": { - "start": { - "line": 140, - "column": 130 - }, - "end": { - "line": 140, - "column": 131 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14834, - "end": 14835, - "loc": { - "start": { - "line": 140, - "column": 131 - }, - "end": { - "line": 140, - "column": 132 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 14835, - "end": 14840, - "loc": { - "start": { - "line": 140, - "column": 132 - }, - "end": { - "line": 140, - "column": 137 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14840, - "end": 14841, - "loc": { - "start": { - "line": 140, - "column": 137 - }, - "end": { - "line": 140, - "column": 138 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "^[\\S\\s]+", - "flags": "" - }, - "start": 14842, - "end": 14852, - "loc": { - "start": { - "line": 140, - "column": 139 - }, - "end": { - "line": 140, - "column": 149 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14852, - "end": 14853, - "loc": { - "start": { - "line": 140, - "column": 149 - }, - "end": { - "line": 140, - "column": 150 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14853, - "end": 14854, - "loc": { - "start": { - "line": 140, - "column": 150 - }, - "end": { - "line": 140, - "column": 151 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14854, - "end": 14855, - "loc": { - "start": { - "line": 140, - "column": 151 - }, - "end": { - "line": 140, - "column": 152 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14855, - "end": 14856, - "loc": { - "start": { - "line": 140, - "column": 152 - }, - "end": { - "line": 140, - "column": 153 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14857, - "end": 14858, - "loc": { - "start": { - "line": 140, - "column": 154 - }, - "end": { - "line": 140, - "column": 155 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "regex", - "start": 14858, - "end": 14865, - "loc": { - "start": { - "line": 140, - "column": 155 - }, - "end": { - "line": 140, - "column": 162 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14865, - "end": 14866, - "loc": { - "start": { - "line": 140, - "column": 162 - }, - "end": { - "line": 140, - "column": 163 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14866, - "end": 14867, - "loc": { - "start": { - "line": 140, - "column": 163 - }, - "end": { - "line": 140, - "column": 164 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14867, - "end": 14868, - "loc": { - "start": { - "line": 140, - "column": 164 - }, - "end": { - "line": 140, - "column": 165 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 14868, - "end": 14874, - "loc": { - "start": { - "line": 140, - "column": 165 - }, - "end": { - "line": 140, - "column": 171 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14874, - "end": 14875, - "loc": { - "start": { - "line": 140, - "column": 171 - }, - "end": { - "line": 140, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prettyPrintOne", - "start": 14875, - "end": 14889, - "loc": { - "start": { - "line": 140, - "column": 172 - }, - "end": { - "line": 140, - "column": 186 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14890, - "end": 14891, - "loc": { - "start": { - "line": 140, - "column": 187 - }, - "end": { - "line": 140, - "column": 188 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 14892, - "end": 14900, - "loc": { - "start": { - "line": 140, - "column": 189 - }, - "end": { - "line": 140, - "column": 197 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14901, - "end": 14902, - "loc": { - "start": { - "line": 140, - "column": 198 - }, - "end": { - "line": 140, - "column": 199 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 14902, - "end": 14903, - "loc": { - "start": { - "line": 140, - "column": 199 - }, - "end": { - "line": 140, - "column": 200 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14903, - "end": 14904, - "loc": { - "start": { - "line": 140, - "column": 200 - }, - "end": { - "line": 140, - "column": 201 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 14905, - "end": 14906, - "loc": { - "start": { - "line": 140, - "column": 202 - }, - "end": { - "line": 140, - "column": 203 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14906, - "end": 14907, - "loc": { - "start": { - "line": 140, - "column": 203 - }, - "end": { - "line": 140, - "column": 204 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 14908, - "end": 14909, - "loc": { - "start": { - "line": 140, - "column": 205 - }, - "end": { - "line": 140, - "column": 206 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14909, - "end": 14910, - "loc": { - "start": { - "line": 140, - "column": 206 - }, - "end": { - "line": 140, - "column": 207 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14911, - "end": 14912, - "loc": { - "start": { - "line": 140, - "column": 208 - }, - "end": { - "line": 140, - "column": 209 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 14917, - "end": 14920, - "loc": { - "start": { - "line": 141, - "column": 4 - }, - "end": { - "line": 141, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 14921, - "end": 14922, - "loc": { - "start": { - "line": 141, - "column": 8 - }, - "end": { - "line": 141, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14923, - "end": 14924, - "loc": { - "start": { - "line": 141, - "column": 10 - }, - "end": { - "line": 141, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 14925, - "end": 14933, - "loc": { - "start": { - "line": 141, - "column": 12 - }, - "end": { - "line": 141, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14933, - "end": 14934, - "loc": { - "start": { - "line": 141, - "column": 20 - }, - "end": { - "line": 141, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createElement", - "start": 14934, - "end": 14947, - "loc": { - "start": { - "line": 141, - "column": 21 - }, - "end": { - "line": 141, - "column": 34 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14947, - "end": 14948, - "loc": { - "start": { - "line": 141, - "column": 34 - }, - "end": { - "line": 141, - "column": 35 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "PRE", - "start": 14948, - "end": 14953, - "loc": { - "start": { - "line": 141, - "column": 35 - }, - "end": { - "line": 141, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14953, - "end": 14954, - "loc": { - "start": { - "line": 141, - "column": 40 - }, - "end": { - "line": 141, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14954, - "end": 14955, - "loc": { - "start": { - "line": 141, - "column": 41 - }, - "end": { - "line": 141, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 14955, - "end": 14956, - "loc": { - "start": { - "line": 141, - "column": 42 - }, - "end": { - "line": 141, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14956, - "end": 14957, - "loc": { - "start": { - "line": 141, - "column": 43 - }, - "end": { - "line": 141, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 14957, - "end": 14966, - "loc": { - "start": { - "line": 141, - "column": 44 - }, - "end": { - "line": 141, - "column": 53 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14967, - "end": 14968, - "loc": { - "start": { - "line": 141, - "column": 54 - }, - "end": { - "line": 141, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 14969, - "end": 14970, - "loc": { - "start": { - "line": 141, - "column": 56 - }, - "end": { - "line": 141, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14970, - "end": 14971, - "loc": { - "start": { - "line": 141, - "column": 57 - }, - "end": { - "line": 141, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 14971, - "end": 14972, - "loc": { - "start": { - "line": 141, - "column": 58 - }, - "end": { - "line": 141, - "column": 59 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 14973, - "end": 14975, - "loc": { - "start": { - "line": 141, - "column": 60 - }, - "end": { - "line": 141, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "D", - "start": 14976, - "end": 14977, - "loc": { - "start": { - "line": 141, - "column": 63 - }, - "end": { - "line": 141, - "column": 64 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14977, - "end": 14978, - "loc": { - "start": { - "line": 141, - "column": 64 - }, - "end": { - "line": 141, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 14978, - "end": 14979, - "loc": { - "start": { - "line": 141, - "column": 65 - }, - "end": { - "line": 141, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14979, - "end": 14980, - "loc": { - "start": { - "line": 141, - "column": 66 - }, - "end": { - "line": 141, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 14981, - "end": 14982, - "loc": { - "start": { - "line": 141, - "column": 68 - }, - "end": { - "line": 141, - "column": 69 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14982, - "end": 14983, - "loc": { - "start": { - "line": 141, - "column": 69 - }, - "end": { - "line": 141, - "column": 70 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14983, - "end": 14984, - "loc": { - "start": { - "line": 141, - "column": 70 - }, - "end": { - "line": 141, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "E", - "start": 14984, - "end": 14985, - "loc": { - "start": { - "line": 141, - "column": 71 - }, - "end": { - "line": 141, - "column": 72 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14985, - "end": 14986, - "loc": { - "start": { - "line": 141, - "column": 72 - }, - "end": { - "line": 141, - "column": 73 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14986, - "end": 14987, - "loc": { - "start": { - "line": 141, - "column": 73 - }, - "end": { - "line": 141, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 14988, - "end": 14989, - "loc": { - "start": { - "line": 141, - "column": 75 - }, - "end": { - "line": 141, - "column": 76 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14989, - "end": 14990, - "loc": { - "start": { - "line": 141, - "column": 76 - }, - "end": { - "line": 141, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 14991, - "end": 14992, - "loc": { - "start": { - "line": 141, - "column": 78 - }, - "end": { - "line": 141, - "column": 79 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14992, - "end": 14993, - "loc": { - "start": { - "line": 141, - "column": 79 - }, - "end": { - "line": 141, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 14994, - "end": 14995, - "loc": { - "start": { - "line": 141, - "column": 81 - }, - "end": { - "line": 141, - "column": 82 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14995, - "end": 14996, - "loc": { - "start": { - "line": 141, - "column": 82 - }, - "end": { - "line": 141, - "column": 83 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 14997, - "end": 14998, - "loc": { - "start": { - "line": 141, - "column": 84 - }, - "end": { - "line": 141, - "column": 85 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14998, - "end": 14999, - "loc": { - "start": { - "line": 141, - "column": 85 - }, - "end": { - "line": 141, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15000, - "end": 15001, - "loc": { - "start": { - "line": 141, - "column": 87 - }, - "end": { - "line": 141, - "column": 88 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15001, - "end": 15002, - "loc": { - "start": { - "line": 141, - "column": 88 - }, - "end": { - "line": 141, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15003, - "end": 15004, - "loc": { - "start": { - "line": 141, - "column": 90 - }, - "end": { - "line": 141, - "column": 91 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15005, - "end": 15006, - "loc": { - "start": { - "line": 141, - "column": 92 - }, - "end": { - "line": 141, - "column": 93 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15006, - "end": 15007, - "loc": { - "start": { - "line": 141, - "column": 93 - }, - "end": { - "line": 141, - "column": 94 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15007, - "end": 15008, - "loc": { - "start": { - "line": 141, - "column": 94 - }, - "end": { - "line": 141, - "column": 95 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 15008, - "end": 15014, - "loc": { - "start": { - "line": 141, - "column": 95 - }, - "end": { - "line": 141, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15015, - "end": 15016, - "loc": { - "start": { - "line": 141, - "column": 102 - }, - "end": { - "line": 141, - "column": 103 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15016, - "end": 15017, - "loc": { - "start": { - "line": 141, - "column": 103 - }, - "end": { - "line": 141, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 15017, - "end": 15026, - "loc": { - "start": { - "line": 141, - "column": 104 - }, - "end": { - "line": 141, - "column": 113 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15026, - "end": 15027, - "loc": { - "start": { - "line": 141, - "column": 113 - }, - "end": { - "line": 141, - "column": 114 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15030, - "end": 15031, - "loc": { - "start": { - "line": 142, - "column": 2 - }, - "end": { - "line": 142, - "column": 3 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15031, - "end": 15032, - "loc": { - "start": { - "line": 142, - "column": 3 - }, - "end": { - "line": 142, - "column": 4 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 15032, - "end": 15038, - "loc": { - "start": { - "line": 142, - "column": 4 - }, - "end": { - "line": 142, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15038, - "end": 15039, - "loc": { - "start": { - "line": 142, - "column": 10 - }, - "end": { - "line": 142, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prettyPrint", - "start": 15039, - "end": 15050, - "loc": { - "start": { - "line": 142, - "column": 11 - }, - "end": { - "line": 142, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15051, - "end": 15052, - "loc": { - "start": { - "line": 142, - "column": 23 - }, - "end": { - "line": 142, - "column": 24 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 15053, - "end": 15061, - "loc": { - "start": { - "line": 142, - "column": 25 - }, - "end": { - "line": 142, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15062, - "end": 15063, - "loc": { - "start": { - "line": 142, - "column": 34 - }, - "end": { - "line": 142, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 15063, - "end": 15064, - "loc": { - "start": { - "line": 142, - "column": 35 - }, - "end": { - "line": 142, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15064, - "end": 15065, - "loc": { - "start": { - "line": 142, - "column": 36 - }, - "end": { - "line": 142, - "column": 37 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15066, - "end": 15067, - "loc": { - "start": { - "line": 142, - "column": 38 - }, - "end": { - "line": 142, - "column": 39 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 15072, - "end": 15080, - "loc": { - "start": { - "line": 143, - "column": 4 - }, - "end": { - "line": 143, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 15081, - "end": 15082, - "loc": { - "start": { - "line": 143, - "column": 13 - }, - "end": { - "line": 143, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15082, - "end": 15083, - "loc": { - "start": { - "line": 143, - "column": 14 - }, - "end": { - "line": 143, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15083, - "end": 15084, - "loc": { - "start": { - "line": 143, - "column": 15 - }, - "end": { - "line": 143, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15085, - "end": 15086, - "loc": { - "start": { - "line": 143, - "column": 17 - }, - "end": { - "line": 143, - "column": 18 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 15093, - "end": 15096, - "loc": { - "start": { - "line": 144, - "column": 6 - }, - "end": { - "line": 144, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15097, - "end": 15098, - "loc": { - "start": { - "line": 144, - "column": 10 - }, - "end": { - "line": 144, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 15098, - "end": 15101, - "loc": { - "start": { - "line": 144, - "column": 11 - }, - "end": { - "line": 144, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 15102, - "end": 15103, - "loc": { - "start": { - "line": 144, - "column": 15 - }, - "end": { - "line": 144, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15104, - "end": 15105, - "loc": { - "start": { - "line": 144, - "column": 17 - }, - "end": { - "line": 144, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 15106, - "end": 15112, - "loc": { - "start": { - "line": 144, - "column": 19 - }, - "end": { - "line": 144, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15112, - "end": 15113, - "loc": { - "start": { - "line": 144, - "column": 25 - }, - "end": { - "line": 144, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_SHOULD_USE_CONTINUATION", - "start": 15113, - "end": 15139, - "loc": { - "start": { - "line": 144, - "column": 26 - }, - "end": { - "line": 144, - "column": 52 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15140, - "end": 15141, - "loc": { - "start": { - "line": 144, - "column": 53 - }, - "end": { - "line": 144, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 15142, - "end": 15143, - "loc": { - "start": { - "line": 144, - "column": 55 - }, - "end": { - "line": 144, - "column": 56 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15143, - "end": 15144, - "loc": { - "start": { - "line": 144, - "column": 56 - }, - "end": { - "line": 144, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "now", - "start": 15144, - "end": 15147, - "loc": { - "start": { - "line": 144, - "column": 57 - }, - "end": { - "line": 144, - "column": 60 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15147, - "end": 15148, - "loc": { - "start": { - "line": 144, - "column": 60 - }, - "end": { - "line": 144, - "column": 61 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15148, - "end": 15149, - "loc": { - "start": { - "line": 144, - "column": 61 - }, - "end": { - "line": 144, - "column": 62 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 15150, - "end": 15151, - "loc": { - "start": { - "line": 144, - "column": 63 - }, - "end": { - "line": 144, - "column": 64 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 250, - "start": 15152, - "end": 15155, - "loc": { - "start": { - "line": 144, - "column": 65 - }, - "end": { - "line": 144, - "column": 68 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15156, - "end": 15157, - "loc": { - "start": { - "line": 144, - "column": 69 - }, - "end": { - "line": 144, - "column": 70 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Infinity", - "start": 15158, - "end": 15166, - "loc": { - "start": { - "line": 144, - "column": 71 - }, - "end": { - "line": 144, - "column": 79 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15166, - "end": 15167, - "loc": { - "start": { - "line": 144, - "column": 79 - }, - "end": { - "line": 144, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 15168, - "end": 15169, - "loc": { - "start": { - "line": 144, - "column": 81 - }, - "end": { - "line": 144, - "column": 82 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 15170, - "end": 15171, - "loc": { - "start": { - "line": 144, - "column": 83 - }, - "end": { - "line": 144, - "column": 84 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15172, - "end": 15173, - "loc": { - "start": { - "line": 144, - "column": 85 - }, - "end": { - "line": 144, - "column": 86 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15173, - "end": 15174, - "loc": { - "start": { - "line": 144, - "column": 86 - }, - "end": { - "line": 144, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 15174, - "end": 15180, - "loc": { - "start": { - "line": 144, - "column": 87 - }, - "end": { - "line": 144, - "column": 93 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15181, - "end": 15183, - "loc": { - "start": { - "line": 144, - "column": 94 - }, - "end": { - "line": 144, - "column": 96 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 15184, - "end": 15185, - "loc": { - "start": { - "line": 144, - "column": 97 - }, - "end": { - "line": 144, - "column": 98 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15185, - "end": 15186, - "loc": { - "start": { - "line": 144, - "column": 98 - }, - "end": { - "line": 144, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "now", - "start": 15186, - "end": 15189, - "loc": { - "start": { - "line": 144, - "column": 99 - }, - "end": { - "line": 144, - "column": 102 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15189, - "end": 15190, - "loc": { - "start": { - "line": 144, - "column": 102 - }, - "end": { - "line": 144, - "column": 103 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15190, - "end": 15191, - "loc": { - "start": { - "line": 144, - "column": 103 - }, - "end": { - "line": 144, - "column": 104 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 15192, - "end": 15193, - "loc": { - "start": { - "line": 144, - "column": 105 - }, - "end": { - "line": 144, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 15194, - "end": 15195, - "loc": { - "start": { - "line": 144, - "column": 107 - }, - "end": { - "line": 144, - "column": 108 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15195, - "end": 15196, - "loc": { - "start": { - "line": 144, - "column": 108 - }, - "end": { - "line": 144, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 15197, - "end": 15198, - "loc": { - "start": { - "line": 144, - "column": 110 - }, - "end": { - "line": 144, - "column": 111 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 15198, - "end": 15200, - "loc": { - "start": { - "line": 144, - "column": 111 - }, - "end": { - "line": 144, - "column": 113 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15200, - "end": 15201, - "loc": { - "start": { - "line": 144, - "column": 113 - }, - "end": { - "line": 144, - "column": 114 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15202, - "end": 15203, - "loc": { - "start": { - "line": 144, - "column": 115 - }, - "end": { - "line": 144, - "column": 116 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 15212, - "end": 15215, - "loc": { - "start": { - "line": 145, - "column": 8 - }, - "end": { - "line": 145, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15216, - "end": 15217, - "loc": { - "start": { - "line": 145, - "column": 12 - }, - "end": { - "line": 145, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15218, - "end": 15219, - "loc": { - "start": { - "line": 145, - "column": 14 - }, - "end": { - "line": 145, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15220, - "end": 15221, - "loc": { - "start": { - "line": 145, - "column": 16 - }, - "end": { - "line": 145, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15221, - "end": 15222, - "loc": { - "start": { - "line": 145, - "column": 17 - }, - "end": { - "line": 145, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 15222, - "end": 15223, - "loc": { - "start": { - "line": 145, - "column": 18 - }, - "end": { - "line": 145, - "column": 19 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15223, - "end": 15224, - "loc": { - "start": { - "line": 145, - "column": 19 - }, - "end": { - "line": 145, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15224, - "end": 15225, - "loc": { - "start": { - "line": 145, - "column": 20 - }, - "end": { - "line": 145, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15238, - "end": 15239, - "loc": { - "start": { - "line": 146, - "column": 12 - }, - "end": { - "line": 146, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15240, - "end": 15241, - "loc": { - "start": { - "line": 146, - "column": 14 - }, - "end": { - "line": 146, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15242, - "end": 15243, - "loc": { - "start": { - "line": 146, - "column": 16 - }, - "end": { - "line": 146, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15243, - "end": 15244, - "loc": { - "start": { - "line": 146, - "column": 17 - }, - "end": { - "line": 146, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 15244, - "end": 15253, - "loc": { - "start": { - "line": 146, - "column": 18 - }, - "end": { - "line": 146, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15253, - "end": 15254, - "loc": { - "start": { - "line": 146, - "column": 27 - }, - "end": { - "line": 146, - "column": 28 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 15254, - "end": 15256, - "loc": { - "start": { - "line": 146, - "column": 28 - }, - "end": { - "line": 146, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15257, - "end": 15258, - "loc": { - "start": { - "line": 146, - "column": 31 - }, - "end": { - "line": 146, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15258, - "end": 15259, - "loc": { - "start": { - "line": 146, - "column": 32 - }, - "end": { - "line": 146, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15259, - "end": 15260, - "loc": { - "start": { - "line": 146, - "column": 33 - }, - "end": { - "line": 146, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "indexOf", - "start": 15260, - "end": 15267, - "loc": { - "start": { - "line": 146, - "column": 34 - }, - "end": { - "line": 146, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15267, - "end": 15268, - "loc": { - "start": { - "line": 146, - "column": 41 - }, - "end": { - "line": 146, - "column": 42 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "prettyprint", - "start": 15268, - "end": 15281, - "loc": { - "start": { - "line": 146, - "column": 42 - }, - "end": { - "line": 146, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15281, - "end": 15282, - "loc": { - "start": { - "line": 146, - "column": 55 - }, - "end": { - "line": 146, - "column": 56 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 15283, - "end": 15285, - "loc": { - "start": { - "line": 146, - "column": 57 - }, - "end": { - "line": 146, - "column": 59 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15286, - "end": 15287, - "loc": { - "start": { - "line": 146, - "column": 60 - }, - "end": { - "line": 146, - "column": 61 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15287, - "end": 15288, - "loc": { - "start": { - "line": 146, - "column": 61 - }, - "end": { - "line": 146, - "column": 62 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15289, - "end": 15290, - "loc": { - "start": { - "line": 146, - "column": 63 - }, - "end": { - "line": 146, - "column": 64 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 15301, - "end": 15304, - "loc": { - "start": { - "line": 147, - "column": 10 - }, - "end": { - "line": 147, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15305, - "end": 15306, - "loc": { - "start": { - "line": 147, - "column": 14 - }, - "end": { - "line": 147, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15307, - "end": 15308, - "loc": { - "start": { - "line": 147, - "column": 16 - }, - "end": { - "line": 147, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15309, - "end": 15310, - "loc": { - "start": { - "line": 147, - "column": 18 - }, - "end": { - "line": 147, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15310, - "end": 15311, - "loc": { - "start": { - "line": 147, - "column": 19 - }, - "end": { - "line": 147, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 15311, - "end": 15316, - "loc": { - "start": { - "line": 147, - "column": 20 - }, - "end": { - "line": 147, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15316, - "end": 15317, - "loc": { - "start": { - "line": 147, - "column": 25 - }, - "end": { - "line": 147, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 15317, - "end": 15318, - "loc": { - "start": { - "line": 147, - "column": 26 - }, - "end": { - "line": 147, - "column": 27 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15318, - "end": 15319, - "loc": { - "start": { - "line": 147, - "column": 27 - }, - "end": { - "line": 147, - "column": 28 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15319, - "end": 15320, - "loc": { - "start": { - "line": 147, - "column": 28 - }, - "end": { - "line": 147, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 15335, - "end": 15336, - "loc": { - "start": { - "line": 148, - "column": 14 - }, - "end": { - "line": 148, - "column": 15 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15336, - "end": 15337, - "loc": { - "start": { - "line": 148, - "column": 15 - }, - "end": { - "line": 148, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15352, - "end": 15353, - "loc": { - "start": { - "line": 149, - "column": 14 - }, - "end": { - "line": 149, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15353, - "end": 15354, - "loc": { - "start": { - "line": 149, - "column": 15 - }, - "end": { - "line": 149, - "column": 16 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 15354, - "end": 15356, - "loc": { - "start": { - "line": 149, - "column": 16 - }, - "end": { - "line": 149, - "column": 18 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15357, - "end": 15358, - "loc": { - "start": { - "line": 149, - "column": 19 - }, - "end": { - "line": 149, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15358, - "end": 15359, - "loc": { - "start": { - "line": 149, - "column": 20 - }, - "end": { - "line": 149, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15360, - "end": 15361, - "loc": { - "start": { - "line": 149, - "column": 22 - }, - "end": { - "line": 149, - "column": 23 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 15362, - "end": 15363, - "loc": { - "start": { - "line": 149, - "column": 24 - }, - "end": { - "line": 149, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15363, - "end": 15364, - "loc": { - "start": { - "line": 149, - "column": 25 - }, - "end": { - "line": 149, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15364, - "end": 15365, - "loc": { - "start": { - "line": 149, - "column": 26 - }, - "end": { - "line": 149, - "column": 27 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15366, - "end": 15367, - "loc": { - "start": { - "line": 149, - "column": 28 - }, - "end": { - "line": 149, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15380, - "end": 15381, - "loc": { - "start": { - "line": 150, - "column": 12 - }, - "end": { - "line": 150, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15382, - "end": 15383, - "loc": { - "start": { - "line": 150, - "column": 14 - }, - "end": { - "line": 150, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15384, - "end": 15385, - "loc": { - "start": { - "line": 150, - "column": 16 - }, - "end": { - "line": 150, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15385, - "end": 15386, - "loc": { - "start": { - "line": 150, - "column": 17 - }, - "end": { - "line": 150, - "column": 18 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 15386, - "end": 15389, - "loc": { - "start": { - "line": 150, - "column": 18 - }, - "end": { - "line": 150, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15390, - "end": 15391, - "loc": { - "start": { - "line": 150, - "column": 22 - }, - "end": { - "line": 150, - "column": 23 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 15391, - "end": 15394, - "loc": { - "start": { - "line": 150, - "column": 23 - }, - "end": { - "line": 150, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15395, - "end": 15396, - "loc": { - "start": { - "line": 150, - "column": 27 - }, - "end": { - "line": 150, - "column": 28 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15397, - "end": 15398, - "loc": { - "start": { - "line": 150, - "column": 29 - }, - "end": { - "line": 150, - "column": 30 - } - } - }, - { - "type": { - "label": "void", - "keyword": "void", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "void", - "start": 15399, - "end": 15403, - "loc": { - "start": { - "line": 150, - "column": 31 - }, - "end": { - "line": 150, - "column": 35 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15404, - "end": 15405, - "loc": { - "start": { - "line": 150, - "column": 36 - }, - "end": { - "line": 150, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15405, - "end": 15406, - "loc": { - "start": { - "line": 150, - "column": 37 - }, - "end": { - "line": 150, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15407, - "end": 15408, - "loc": { - "start": { - "line": 150, - "column": 39 - }, - "end": { - "line": 150, - "column": 40 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15409, - "end": 15410, - "loc": { - "start": { - "line": 150, - "column": 41 - }, - "end": { - "line": 150, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15411, - "end": 15412, - "loc": { - "start": { - "line": 150, - "column": 43 - }, - "end": { - "line": 150, - "column": 44 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15412, - "end": 15413, - "loc": { - "start": { - "line": 150, - "column": 44 - }, - "end": { - "line": 150, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "firstChild", - "start": 15413, - "end": 15423, - "loc": { - "start": { - "line": 150, - "column": 45 - }, - "end": { - "line": 150, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15423, - "end": 15424, - "loc": { - "start": { - "line": 150, - "column": 55 - }, - "end": { - "line": 150, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15425, - "end": 15426, - "loc": { - "start": { - "line": 150, - "column": 57 - }, - "end": { - "line": 150, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15426, - "end": 15427, - "loc": { - "start": { - "line": 150, - "column": 58 - }, - "end": { - "line": 150, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15428, - "end": 15429, - "loc": { - "start": { - "line": 150, - "column": 60 - }, - "end": { - "line": 150, - "column": 61 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15430, - "end": 15431, - "loc": { - "start": { - "line": 150, - "column": 62 - }, - "end": { - "line": 150, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15432, - "end": 15433, - "loc": { - "start": { - "line": 150, - "column": 64 - }, - "end": { - "line": 150, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15433, - "end": 15434, - "loc": { - "start": { - "line": 150, - "column": 65 - }, - "end": { - "line": 150, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextSibling", - "start": 15434, - "end": 15445, - "loc": { - "start": { - "line": 150, - "column": 66 - }, - "end": { - "line": 150, - "column": 77 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15445, - "end": 15446, - "loc": { - "start": { - "line": 150, - "column": 77 - }, - "end": { - "line": 150, - "column": 78 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 15447, - "end": 15450, - "loc": { - "start": { - "line": 150, - "column": 79 - }, - "end": { - "line": 150, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 15451, - "end": 15452, - "loc": { - "start": { - "line": 150, - "column": 83 - }, - "end": { - "line": 150, - "column": 84 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15453, - "end": 15454, - "loc": { - "start": { - "line": 150, - "column": 85 - }, - "end": { - "line": 150, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15455, - "end": 15456, - "loc": { - "start": { - "line": 150, - "column": 87 - }, - "end": { - "line": 150, - "column": 88 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15456, - "end": 15457, - "loc": { - "start": { - "line": 150, - "column": 88 - }, - "end": { - "line": 150, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeType", - "start": 15457, - "end": 15465, - "loc": { - "start": { - "line": 150, - "column": 89 - }, - "end": { - "line": 150, - "column": 97 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15465, - "end": 15466, - "loc": { - "start": { - "line": 150, - "column": 97 - }, - "end": { - "line": 150, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15467, - "end": 15468, - "loc": { - "start": { - "line": 150, - "column": 99 - }, - "end": { - "line": 150, - "column": 100 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15469, - "end": 15470, - "loc": { - "start": { - "line": 150, - "column": 101 - }, - "end": { - "line": 150, - "column": 102 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 15471, - "end": 15472, - "loc": { - "start": { - "line": 150, - "column": 103 - }, - "end": { - "line": 150, - "column": 104 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15473, - "end": 15476, - "loc": { - "start": { - "line": 150, - "column": 105 - }, - "end": { - "line": 150, - "column": 108 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15477, - "end": 15478, - "loc": { - "start": { - "line": 150, - "column": 109 - }, - "end": { - "line": 150, - "column": 110 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15479, - "end": 15480, - "loc": { - "start": { - "line": 150, - "column": 111 - }, - "end": { - "line": 150, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15481, - "end": 15482, - "loc": { - "start": { - "line": 150, - "column": 113 - }, - "end": { - "line": 150, - "column": 114 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15483, - "end": 15484, - "loc": { - "start": { - "line": 150, - "column": 115 - }, - "end": { - "line": 150, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15485, - "end": 15486, - "loc": { - "start": { - "line": 150, - "column": 117 - }, - "end": { - "line": 150, - "column": 118 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15487, - "end": 15488, - "loc": { - "start": { - "line": 150, - "column": 119 - }, - "end": { - "line": 150, - "column": 120 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15489, - "end": 15490, - "loc": { - "start": { - "line": 150, - "column": 121 - }, - "end": { - "line": 150, - "column": 122 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15491, - "end": 15492, - "loc": { - "start": { - "line": 150, - "column": 123 - }, - "end": { - "line": 150, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 15493, - "end": 15494, - "loc": { - "start": { - "line": 150, - "column": 125 - }, - "end": { - "line": 150, - "column": 126 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15495, - "end": 15498, - "loc": { - "start": { - "line": 150, - "column": 127 - }, - "end": { - "line": 150, - "column": 130 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 15499, - "end": 15500, - "loc": { - "start": { - "line": 150, - "column": 131 - }, - "end": { - "line": 150, - "column": 132 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15501, - "end": 15502, - "loc": { - "start": { - "line": 150, - "column": 133 - }, - "end": { - "line": 150, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "N", - "start": 15503, - "end": 15504, - "loc": { - "start": { - "line": 150, - "column": 135 - }, - "end": { - "line": 150, - "column": 136 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15504, - "end": 15505, - "loc": { - "start": { - "line": 150, - "column": 136 - }, - "end": { - "line": 150, - "column": 137 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 15505, - "end": 15509, - "loc": { - "start": { - "line": 150, - "column": 137 - }, - "end": { - "line": 150, - "column": 141 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15509, - "end": 15510, - "loc": { - "start": { - "line": 150, - "column": 141 - }, - "end": { - "line": 150, - "column": 142 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "c", - "start": 15510, - "end": 15511, - "loc": { - "start": { - "line": 150, - "column": 142 - }, - "end": { - "line": 150, - "column": 143 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15511, - "end": 15512, - "loc": { - "start": { - "line": 150, - "column": 143 - }, - "end": { - "line": 150, - "column": 144 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeValue", - "start": 15512, - "end": 15521, - "loc": { - "start": { - "line": 150, - "column": 144 - }, - "end": { - "line": 150, - "column": 153 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15521, - "end": 15522, - "loc": { - "start": { - "line": 150, - "column": 153 - }, - "end": { - "line": 150, - "column": 154 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15523, - "end": 15524, - "loc": { - "start": { - "line": 150, - "column": 155 - }, - "end": { - "line": 150, - "column": 156 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15525, - "end": 15526, - "loc": { - "start": { - "line": 150, - "column": 157 - }, - "end": { - "line": 150, - "column": 158 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15527, - "end": 15528, - "loc": { - "start": { - "line": 150, - "column": 159 - }, - "end": { - "line": 150, - "column": 160 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15529, - "end": 15530, - "loc": { - "start": { - "line": 150, - "column": 161 - }, - "end": { - "line": 150, - "column": 162 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15531, - "end": 15532, - "loc": { - "start": { - "line": 150, - "column": 163 - }, - "end": { - "line": 150, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15533, - "end": 15534, - "loc": { - "start": { - "line": 150, - "column": 165 - }, - "end": { - "line": 150, - "column": 166 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15534, - "end": 15535, - "loc": { - "start": { - "line": 150, - "column": 166 - }, - "end": { - "line": 150, - "column": 167 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15535, - "end": 15536, - "loc": { - "start": { - "line": 150, - "column": 167 - }, - "end": { - "line": 150, - "column": 168 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15537, - "end": 15538, - "loc": { - "start": { - "line": 150, - "column": 169 - }, - "end": { - "line": 150, - "column": 170 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15539, - "end": 15540, - "loc": { - "start": { - "line": 150, - "column": 171 - }, - "end": { - "line": 150, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 15540, - "end": 15541, - "loc": { - "start": { - "line": 150, - "column": 172 - }, - "end": { - "line": 150, - "column": 173 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15542, - "end": 15543, - "loc": { - "start": { - "line": 150, - "column": 174 - }, - "end": { - "line": 150, - "column": 175 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15544, - "end": 15545, - "loc": { - "start": { - "line": 150, - "column": 176 - }, - "end": { - "line": 150, - "column": 177 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15546, - "end": 15549, - "loc": { - "start": { - "line": 150, - "column": 178 - }, - "end": { - "line": 150, - "column": 181 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15550, - "end": 15551, - "loc": { - "start": { - "line": 150, - "column": 182 - }, - "end": { - "line": 150, - "column": 183 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15552, - "end": 15553, - "loc": { - "start": { - "line": 150, - "column": 184 - }, - "end": { - "line": 150, - "column": 185 - } - } - }, - { - "type": { - "label": "void", - "keyword": "void", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "void", - "start": 15554, - "end": 15558, - "loc": { - "start": { - "line": 150, - "column": 186 - }, - "end": { - "line": 150, - "column": 190 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15559, - "end": 15560, - "loc": { - "start": { - "line": 150, - "column": 191 - }, - "end": { - "line": 150, - "column": 192 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15561, - "end": 15562, - "loc": { - "start": { - "line": 150, - "column": 193 - }, - "end": { - "line": 150, - "column": 194 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15563, - "end": 15564, - "loc": { - "start": { - "line": 150, - "column": 195 - }, - "end": { - "line": 150, - "column": 196 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15564, - "end": 15565, - "loc": { - "start": { - "line": 150, - "column": 196 - }, - "end": { - "line": 150, - "column": 197 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15566, - "end": 15568, - "loc": { - "start": { - "line": 150, - "column": 198 - }, - "end": { - "line": 150, - "column": 200 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "CODE", - "start": 15569, - "end": 15575, - "loc": { - "start": { - "line": 150, - "column": 201 - }, - "end": { - "line": 150, - "column": 207 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15576, - "end": 15579, - "loc": { - "start": { - "line": 150, - "column": 208 - }, - "end": { - "line": 150, - "column": 211 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 15580, - "end": 15581, - "loc": { - "start": { - "line": 150, - "column": 212 - }, - "end": { - "line": 150, - "column": 213 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15581, - "end": 15582, - "loc": { - "start": { - "line": 150, - "column": 213 - }, - "end": { - "line": 150, - "column": 214 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 15582, - "end": 15589, - "loc": { - "start": { - "line": 150, - "column": 214 - }, - "end": { - "line": 150, - "column": 221 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15589, - "end": 15590, - "loc": { - "start": { - "line": 150, - "column": 221 - }, - "end": { - "line": 150, - "column": 222 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15601, - "end": 15602, - "loc": { - "start": { - "line": 151, - "column": 10 - }, - "end": { - "line": 151, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15602, - "end": 15603, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 12 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15604, - "end": 15606, - "loc": { - "start": { - "line": 151, - "column": 13 - }, - "end": { - "line": 151, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15607, - "end": 15608, - "loc": { - "start": { - "line": 151, - "column": 16 - }, - "end": { - "line": 151, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15608, - "end": 15609, - "loc": { - "start": { - "line": 151, - "column": 17 - }, - "end": { - "line": 151, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15610, - "end": 15611, - "loc": { - "start": { - "line": 151, - "column": 19 - }, - "end": { - "line": 151, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "f", - "start": 15612, - "end": 15613, - "loc": { - "start": { - "line": 151, - "column": 21 - }, - "end": { - "line": 151, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15613, - "end": 15614, - "loc": { - "start": { - "line": 151, - "column": 22 - }, - "end": { - "line": 151, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 15614, - "end": 15623, - "loc": { - "start": { - "line": 151, - "column": 23 - }, - "end": { - "line": 151, - "column": 32 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15623, - "end": 15624, - "loc": { - "start": { - "line": 151, - "column": 32 - }, - "end": { - "line": 151, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 15624, - "end": 15629, - "loc": { - "start": { - "line": 151, - "column": 33 - }, - "end": { - "line": 151, - "column": 38 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15629, - "end": 15630, - "loc": { - "start": { - "line": 151, - "column": 38 - }, - "end": { - "line": 151, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 15630, - "end": 15631, - "loc": { - "start": { - "line": 151, - "column": 39 - }, - "end": { - "line": 151, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15631, - "end": 15632, - "loc": { - "start": { - "line": 151, - "column": 40 - }, - "end": { - "line": 151, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15632, - "end": 15633, - "loc": { - "start": { - "line": 151, - "column": 41 - }, - "end": { - "line": 151, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15633, - "end": 15634, - "loc": { - "start": { - "line": 151, - "column": 42 - }, - "end": { - "line": 151, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15634, - "end": 15635, - "loc": { - "start": { - "line": 151, - "column": 43 - }, - "end": { - "line": 151, - "column": 44 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15636, - "end": 15638, - "loc": { - "start": { - "line": 151, - "column": 45 - }, - "end": { - "line": 151, - "column": 47 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15639, - "end": 15640, - "loc": { - "start": { - "line": 151, - "column": 48 - }, - "end": { - "line": 151, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15640, - "end": 15641, - "loc": { - "start": { - "line": 151, - "column": 49 - }, - "end": { - "line": 151, - "column": 50 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15642, - "end": 15643, - "loc": { - "start": { - "line": 151, - "column": 51 - }, - "end": { - "line": 151, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15644, - "end": 15645, - "loc": { - "start": { - "line": 151, - "column": 53 - }, - "end": { - "line": 151, - "column": 54 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15645, - "end": 15646, - "loc": { - "start": { - "line": 151, - "column": 54 - }, - "end": { - "line": 151, - "column": 55 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15646, - "end": 15647, - "loc": { - "start": { - "line": 151, - "column": 55 - }, - "end": { - "line": 151, - "column": 56 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15647, - "end": 15648, - "loc": { - "start": { - "line": 151, - "column": 56 - }, - "end": { - "line": 151, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15648, - "end": 15649, - "loc": { - "start": { - "line": 151, - "column": 57 - }, - "end": { - "line": 151, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15649, - "end": 15650, - "loc": { - "start": { - "line": 151, - "column": 58 - }, - "end": { - "line": 151, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15650, - "end": 15651, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 60 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15652, - "end": 15653, - "loc": { - "start": { - "line": 151, - "column": 61 - }, - "end": { - "line": 151, - "column": 62 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 15654, - "end": 15655, - "loc": { - "start": { - "line": 151, - "column": 63 - }, - "end": { - "line": 151, - "column": 64 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15655, - "end": 15656, - "loc": { - "start": { - "line": 151, - "column": 64 - }, - "end": { - "line": 151, - "column": 65 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15656, - "end": 15657, - "loc": { - "start": { - "line": 151, - "column": 65 - }, - "end": { - "line": 151, - "column": 66 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 15657, - "end": 15660, - "loc": { - "start": { - "line": 151, - "column": 66 - }, - "end": { - "line": 151, - "column": 69 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15661, - "end": 15662, - "loc": { - "start": { - "line": 151, - "column": 70 - }, - "end": { - "line": 151, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15662, - "end": 15663, - "loc": { - "start": { - "line": 151, - "column": 71 - }, - "end": { - "line": 151, - "column": 72 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15664, - "end": 15665, - "loc": { - "start": { - "line": 151, - "column": 73 - }, - "end": { - "line": 151, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15666, - "end": 15667, - "loc": { - "start": { - "line": 151, - "column": 75 - }, - "end": { - "line": 151, - "column": 76 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15667, - "end": 15668, - "loc": { - "start": { - "line": 151, - "column": 76 - }, - "end": { - "line": 151, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 15668, - "end": 15678, - "loc": { - "start": { - "line": 151, - "column": 77 - }, - "end": { - "line": 151, - "column": 87 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15678, - "end": 15679, - "loc": { - "start": { - "line": 151, - "column": 87 - }, - "end": { - "line": 151, - "column": 88 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15680, - "end": 15681, - "loc": { - "start": { - "line": 151, - "column": 89 - }, - "end": { - "line": 151, - "column": 90 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15681, - "end": 15682, - "loc": { - "start": { - "line": 151, - "column": 90 - }, - "end": { - "line": 151, - "column": 91 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15683, - "end": 15684, - "loc": { - "start": { - "line": 151, - "column": 92 - }, - "end": { - "line": 151, - "column": 93 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15685, - "end": 15686, - "loc": { - "start": { - "line": 151, - "column": 94 - }, - "end": { - "line": 151, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15687, - "end": 15688, - "loc": { - "start": { - "line": 151, - "column": 96 - }, - "end": { - "line": 151, - "column": 97 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15688, - "end": 15689, - "loc": { - "start": { - "line": 151, - "column": 97 - }, - "end": { - "line": 151, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentNode", - "start": 15689, - "end": 15699, - "loc": { - "start": { - "line": 151, - "column": 98 - }, - "end": { - "line": 151, - "column": 108 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15699, - "end": 15700, - "loc": { - "start": { - "line": 151, - "column": 108 - }, - "end": { - "line": 151, - "column": 109 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 15701, - "end": 15703, - "loc": { - "start": { - "line": 151, - "column": 110 - }, - "end": { - "line": 151, - "column": 112 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15704, - "end": 15705, - "loc": { - "start": { - "line": 151, - "column": 113 - }, - "end": { - "line": 151, - "column": 114 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15705, - "end": 15706, - "loc": { - "start": { - "line": 151, - "column": 114 - }, - "end": { - "line": 151, - "column": 115 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15706, - "end": 15707, - "loc": { - "start": { - "line": 151, - "column": 115 - }, - "end": { - "line": 151, - "column": 116 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15707, - "end": 15708, - "loc": { - "start": { - "line": 151, - "column": 116 - }, - "end": { - "line": 151, - "column": 117 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 15708, - "end": 15715, - "loc": { - "start": { - "line": 151, - "column": 117 - }, - "end": { - "line": 151, - "column": 124 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15716, - "end": 15719, - "loc": { - "start": { - "line": 151, - "column": 125 - }, - "end": { - "line": 151, - "column": 128 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pre", - "start": 15720, - "end": 15725, - "loc": { - "start": { - "line": 151, - "column": 129 - }, - "end": { - "line": 151, - "column": 134 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 15726, - "end": 15728, - "loc": { - "start": { - "line": 151, - "column": 135 - }, - "end": { - "line": 151, - "column": 137 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15729, - "end": 15730, - "loc": { - "start": { - "line": 151, - "column": 138 - }, - "end": { - "line": 151, - "column": 139 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15730, - "end": 15731, - "loc": { - "start": { - "line": 151, - "column": 139 - }, - "end": { - "line": 151, - "column": 140 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 15731, - "end": 15738, - "loc": { - "start": { - "line": 151, - "column": 140 - }, - "end": { - "line": 151, - "column": 147 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15739, - "end": 15742, - "loc": { - "start": { - "line": 151, - "column": 148 - }, - "end": { - "line": 151, - "column": 151 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "code", - "start": 15743, - "end": 15749, - "loc": { - "start": { - "line": 151, - "column": 152 - }, - "end": { - "line": 151, - "column": 158 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 15750, - "end": 15752, - "loc": { - "start": { - "line": 151, - "column": 159 - }, - "end": { - "line": 151, - "column": 161 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15753, - "end": 15754, - "loc": { - "start": { - "line": 151, - "column": 162 - }, - "end": { - "line": 151, - "column": 163 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15754, - "end": 15755, - "loc": { - "start": { - "line": 151, - "column": 163 - }, - "end": { - "line": 151, - "column": 164 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 15755, - "end": 15762, - "loc": { - "start": { - "line": 151, - "column": 164 - }, - "end": { - "line": 151, - "column": 171 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 15763, - "end": 15766, - "loc": { - "start": { - "line": 151, - "column": 172 - }, - "end": { - "line": 151, - "column": 175 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "xmp", - "start": 15767, - "end": 15772, - "loc": { - "start": { - "line": 151, - "column": 176 - }, - "end": { - "line": 151, - "column": 181 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15772, - "end": 15773, - "loc": { - "start": { - "line": 151, - "column": 181 - }, - "end": { - "line": 151, - "column": 182 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15774, - "end": 15776, - "loc": { - "start": { - "line": 151, - "column": 183 - }, - "end": { - "line": 151, - "column": 185 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15777, - "end": 15778, - "loc": { - "start": { - "line": 151, - "column": 186 - }, - "end": { - "line": 151, - "column": 187 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15778, - "end": 15779, - "loc": { - "start": { - "line": 151, - "column": 187 - }, - "end": { - "line": 151, - "column": 188 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 15779, - "end": 15788, - "loc": { - "start": { - "line": 151, - "column": 188 - }, - "end": { - "line": 151, - "column": 197 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15789, - "end": 15791, - "loc": { - "start": { - "line": 151, - "column": 198 - }, - "end": { - "line": 151, - "column": 200 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "o", - "start": 15792, - "end": 15793, - "loc": { - "start": { - "line": 151, - "column": 201 - }, - "end": { - "line": 151, - "column": 202 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15793, - "end": 15794, - "loc": { - "start": { - "line": 151, - "column": 202 - }, - "end": { - "line": 151, - "column": 203 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 15794, - "end": 15803, - "loc": { - "start": { - "line": 151, - "column": 203 - }, - "end": { - "line": 151, - "column": 212 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15803, - "end": 15804, - "loc": { - "start": { - "line": 151, - "column": 212 - }, - "end": { - "line": 151, - "column": 213 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "indexOf", - "start": 15804, - "end": 15811, - "loc": { - "start": { - "line": 151, - "column": 213 - }, - "end": { - "line": 151, - "column": 220 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15811, - "end": 15812, - "loc": { - "start": { - "line": 151, - "column": 220 - }, - "end": { - "line": 151, - "column": 221 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "prettyprint", - "start": 15812, - "end": 15825, - "loc": { - "start": { - "line": 151, - "column": 221 - }, - "end": { - "line": 151, - "column": 234 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15825, - "end": 15826, - "loc": { - "start": { - "line": 151, - "column": 234 - }, - "end": { - "line": 151, - "column": 235 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 15827, - "end": 15829, - "loc": { - "start": { - "line": 151, - "column": 236 - }, - "end": { - "line": 151, - "column": 238 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15830, - "end": 15831, - "loc": { - "start": { - "line": 151, - "column": 239 - }, - "end": { - "line": 151, - "column": 240 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15831, - "end": 15832, - "loc": { - "start": { - "line": 151, - "column": 240 - }, - "end": { - "line": 151, - "column": 241 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15833, - "end": 15834, - "loc": { - "start": { - "line": 151, - "column": 242 - }, - "end": { - "line": 151, - "column": 243 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15847, - "end": 15848, - "loc": { - "start": { - "line": 152, - "column": 12 - }, - "end": { - "line": 152, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15849, - "end": 15850, - "loc": { - "start": { - "line": 152, - "column": 14 - }, - "end": { - "line": 152, - "column": 15 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 15851, - "end": 15852, - "loc": { - "start": { - "line": 152, - "column": 16 - }, - "end": { - "line": 152, - "column": 17 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15852, - "end": 15853, - "loc": { - "start": { - "line": 152, - "column": 17 - }, - "end": { - "line": 152, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15853, - "end": 15854, - "loc": { - "start": { - "line": 152, - "column": 18 - }, - "end": { - "line": 152, - "column": 19 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 15854, - "end": 15859, - "loc": { - "start": { - "line": 152, - "column": 19 - }, - "end": { - "line": 152, - "column": 24 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15859, - "end": 15860, - "loc": { - "start": { - "line": 152, - "column": 24 - }, - "end": { - "line": 152, - "column": 25 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15871, - "end": 15872, - "loc": { - "start": { - "line": 153, - "column": 10 - }, - "end": { - "line": 153, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15872, - "end": 15873, - "loc": { - "start": { - "line": 153, - "column": 11 - }, - "end": { - "line": 153, - "column": 12 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 15874, - "end": 15876, - "loc": { - "start": { - "line": 153, - "column": 13 - }, - "end": { - "line": 153, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15877, - "end": 15878, - "loc": { - "start": { - "line": 153, - "column": 16 - }, - "end": { - "line": 153, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15878, - "end": 15879, - "loc": { - "start": { - "line": 153, - "column": 17 - }, - "end": { - "line": 153, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15879, - "end": 15880, - "loc": { - "start": { - "line": 153, - "column": 18 - }, - "end": { - "line": 153, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15881, - "end": 15882, - "loc": { - "start": { - "line": 153, - "column": 20 - }, - "end": { - "line": 153, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15883, - "end": 15884, - "loc": { - "start": { - "line": 153, - "column": 22 - }, - "end": { - "line": 153, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15884, - "end": 15885, - "loc": { - "start": { - "line": 153, - "column": 23 - }, - "end": { - "line": 153, - "column": 24 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15886, - "end": 15887, - "loc": { - "start": { - "line": 153, - "column": 25 - }, - "end": { - "line": 153, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15888, - "end": 15889, - "loc": { - "start": { - "line": 153, - "column": 27 - }, - "end": { - "line": 153, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15889, - "end": 15890, - "loc": { - "start": { - "line": 153, - "column": 28 - }, - "end": { - "line": 153, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "className", - "start": 15890, - "end": 15899, - "loc": { - "start": { - "line": 153, - "column": 29 - }, - "end": { - "line": 153, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15899, - "end": 15900, - "loc": { - "start": { - "line": 153, - "column": 38 - }, - "end": { - "line": 153, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 15900, - "end": 15905, - "loc": { - "start": { - "line": 153, - "column": 39 - }, - "end": { - "line": 153, - "column": 44 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15905, - "end": 15906, - "loc": { - "start": { - "line": 153, - "column": 44 - }, - "end": { - "line": 153, - "column": 45 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\blinenums\\b(?::(\\d+))?", - "flags": "" - }, - "start": 15906, - "end": 15931, - "loc": { - "start": { - "line": 153, - "column": 45 - }, - "end": { - "line": 153, - "column": 70 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15931, - "end": 15932, - "loc": { - "start": { - "line": 153, - "column": 70 - }, - "end": { - "line": 153, - "column": 71 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15932, - "end": 15933, - "loc": { - "start": { - "line": 153, - "column": 71 - }, - "end": { - "line": 153, - "column": 72 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15934, - "end": 15935, - "loc": { - "start": { - "line": 153, - "column": 73 - }, - "end": { - "line": 153, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15936, - "end": 15937, - "loc": { - "start": { - "line": 153, - "column": 75 - }, - "end": { - "line": 153, - "column": 76 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15937, - "end": 15938, - "loc": { - "start": { - "line": 153, - "column": 76 - }, - "end": { - "line": 153, - "column": 77 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15938, - "end": 15939, - "loc": { - "start": { - "line": 153, - "column": 77 - }, - "end": { - "line": 153, - "column": 78 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15939, - "end": 15940, - "loc": { - "start": { - "line": 153, - "column": 78 - }, - "end": { - "line": 153, - "column": 79 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15941, - "end": 15943, - "loc": { - "start": { - "line": 153, - "column": 80 - }, - "end": { - "line": 153, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15944, - "end": 15945, - "loc": { - "start": { - "line": 153, - "column": 83 - }, - "end": { - "line": 153, - "column": 84 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15945, - "end": 15946, - "loc": { - "start": { - "line": 153, - "column": 84 - }, - "end": { - "line": 153, - "column": 85 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15946, - "end": 15947, - "loc": { - "start": { - "line": 153, - "column": 85 - }, - "end": { - "line": 153, - "column": 86 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15947, - "end": 15948, - "loc": { - "start": { - "line": 153, - "column": 86 - }, - "end": { - "line": 153, - "column": 87 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15948, - "end": 15949, - "loc": { - "start": { - "line": 153, - "column": 87 - }, - "end": { - "line": 153, - "column": 88 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 15949, - "end": 15955, - "loc": { - "start": { - "line": 153, - "column": 88 - }, - "end": { - "line": 153, - "column": 94 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15956, - "end": 15957, - "loc": { - "start": { - "line": 153, - "column": 95 - }, - "end": { - "line": 153, - "column": 96 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 15958, - "end": 15959, - "loc": { - "start": { - "line": 153, - "column": 97 - }, - "end": { - "line": 153, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15959, - "end": 15960, - "loc": { - "start": { - "line": 153, - "column": 98 - }, - "end": { - "line": 153, - "column": 99 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15960, - "end": 15961, - "loc": { - "start": { - "line": 153, - "column": 99 - }, - "end": { - "line": 153, - "column": 100 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15961, - "end": 15962, - "loc": { - "start": { - "line": 153, - "column": 100 - }, - "end": { - "line": 153, - "column": 101 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15962, - "end": 15963, - "loc": { - "start": { - "line": 153, - "column": 101 - }, - "end": { - "line": 153, - "column": 102 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15964, - "end": 15965, - "loc": { - "start": { - "line": 153, - "column": 103 - }, - "end": { - "line": 153, - "column": 104 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 15966, - "end": 15967, - "loc": { - "start": { - "line": 153, - "column": 105 - }, - "end": { - "line": 153, - "column": 106 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 15967, - "end": 15968, - "loc": { - "start": { - "line": 153, - "column": 106 - }, - "end": { - "line": 153, - "column": 107 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15969, - "end": 15970, - "loc": { - "start": { - "line": 153, - "column": 108 - }, - "end": { - "line": 153, - "column": 109 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 15971, - "end": 15972, - "loc": { - "start": { - "line": 153, - "column": 110 - }, - "end": { - "line": 153, - "column": 111 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 15972, - "end": 15973, - "loc": { - "start": { - "line": 153, - "column": 111 - }, - "end": { - "line": 153, - "column": 112 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15973, - "end": 15974, - "loc": { - "start": { - "line": 153, - "column": 112 - }, - "end": { - "line": 153, - "column": 113 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 15975, - "end": 15977, - "loc": { - "start": { - "line": 153, - "column": 114 - }, - "end": { - "line": 153, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "D", - "start": 15978, - "end": 15979, - "loc": { - "start": { - "line": 153, - "column": 117 - }, - "end": { - "line": 153, - "column": 118 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15979, - "end": 15980, - "loc": { - "start": { - "line": 153, - "column": 118 - }, - "end": { - "line": 153, - "column": 119 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 15980, - "end": 15981, - "loc": { - "start": { - "line": 153, - "column": 119 - }, - "end": { - "line": 153, - "column": 120 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15981, - "end": 15982, - "loc": { - "start": { - "line": 153, - "column": 120 - }, - "end": { - "line": 153, - "column": 121 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 15983, - "end": 15984, - "loc": { - "start": { - "line": 153, - "column": 122 - }, - "end": { - "line": 153, - "column": 123 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15984, - "end": 15985, - "loc": { - "start": { - "line": 153, - "column": 123 - }, - "end": { - "line": 153, - "column": 124 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15985, - "end": 15986, - "loc": { - "start": { - "line": 153, - "column": 124 - }, - "end": { - "line": 153, - "column": 125 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 15987, - "end": 15988, - "loc": { - "start": { - "line": 153, - "column": 126 - }, - "end": { - "line": 153, - "column": 127 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 15989, - "end": 15990, - "loc": { - "start": { - "line": 153, - "column": 128 - }, - "end": { - "line": 153, - "column": 129 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15991, - "end": 15992, - "loc": { - "start": { - "line": 153, - "column": 130 - }, - "end": { - "line": 153, - "column": 131 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 15993, - "end": 15994, - "loc": { - "start": { - "line": 153, - "column": 132 - }, - "end": { - "line": 153, - "column": 133 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15994, - "end": 15995, - "loc": { - "start": { - "line": 153, - "column": 133 - }, - "end": { - "line": 153, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 15996, - "end": 15997, - "loc": { - "start": { - "line": 153, - "column": 135 - }, - "end": { - "line": 153, - "column": 136 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15997, - "end": 15998, - "loc": { - "start": { - "line": 153, - "column": 136 - }, - "end": { - "line": 153, - "column": 137 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 15999, - "end": 16000, - "loc": { - "start": { - "line": 153, - "column": 138 - }, - "end": { - "line": 153, - "column": 139 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16000, - "end": 16001, - "loc": { - "start": { - "line": 153, - "column": 139 - }, - "end": { - "line": 153, - "column": 140 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "n", - "start": 16002, - "end": 16003, - "loc": { - "start": { - "line": 153, - "column": 141 - }, - "end": { - "line": 153, - "column": 142 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16003, - "end": 16004, - "loc": { - "start": { - "line": 153, - "column": 142 - }, - "end": { - "line": 153, - "column": 143 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 16005, - "end": 16006, - "loc": { - "start": { - "line": 153, - "column": 144 - }, - "end": { - "line": 153, - "column": 145 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16006, - "end": 16007, - "loc": { - "start": { - "line": 153, - "column": 145 - }, - "end": { - "line": 153, - "column": 146 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "b", - "start": 16008, - "end": 16009, - "loc": { - "start": { - "line": 153, - "column": 147 - }, - "end": { - "line": 153, - "column": 148 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16010, - "end": 16011, - "loc": { - "start": { - "line": 153, - "column": 149 - }, - "end": { - "line": 153, - "column": 150 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16011, - "end": 16012, - "loc": { - "start": { - "line": 153, - "column": 150 - }, - "end": { - "line": 153, - "column": 151 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "E", - "start": 16013, - "end": 16014, - "loc": { - "start": { - "line": 153, - "column": 152 - }, - "end": { - "line": 153, - "column": 153 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16014, - "end": 16015, - "loc": { - "start": { - "line": 153, - "column": 153 - }, - "end": { - "line": 153, - "column": 154 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 16015, - "end": 16016, - "loc": { - "start": { - "line": 153, - "column": 154 - }, - "end": { - "line": 153, - "column": 155 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16016, - "end": 16017, - "loc": { - "start": { - "line": 153, - "column": 155 - }, - "end": { - "line": 153, - "column": 156 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16017, - "end": 16018, - "loc": { - "start": { - "line": 153, - "column": 156 - }, - "end": { - "line": 153, - "column": 157 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16018, - "end": 16019, - "loc": { - "start": { - "line": 153, - "column": 157 - }, - "end": { - "line": 153, - "column": 158 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16028, - "end": 16029, - "loc": { - "start": { - "line": 154, - "column": 8 - }, - "end": { - "line": 154, - "column": 9 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16036, - "end": 16037, - "loc": { - "start": { - "line": 155, - "column": 6 - }, - "end": { - "line": 155, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 16037, - "end": 16038, - "loc": { - "start": { - "line": 155, - "column": 7 - }, - "end": { - "line": 155, - "column": 8 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 16039, - "end": 16040, - "loc": { - "start": { - "line": 155, - "column": 9 - }, - "end": { - "line": 155, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 16041, - "end": 16042, - "loc": { - "start": { - "line": 155, - "column": 11 - }, - "end": { - "line": 155, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16042, - "end": 16043, - "loc": { - "start": { - "line": 155, - "column": 12 - }, - "end": { - "line": 155, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 16043, - "end": 16049, - "loc": { - "start": { - "line": 155, - "column": 13 - }, - "end": { - "line": 155, - "column": 19 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16050, - "end": 16051, - "loc": { - "start": { - "line": 155, - "column": 20 - }, - "end": { - "line": 155, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "setTimeout", - "start": 16052, - "end": 16062, - "loc": { - "start": { - "line": 155, - "column": 22 - }, - "end": { - "line": 155, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16062, - "end": 16063, - "loc": { - "start": { - "line": 155, - "column": 32 - }, - "end": { - "line": 155, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 16063, - "end": 16064, - "loc": { - "start": { - "line": 155, - "column": 33 - }, - "end": { - "line": 155, - "column": 34 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16064, - "end": 16065, - "loc": { - "start": { - "line": 155, - "column": 34 - }, - "end": { - "line": 155, - "column": 35 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 250, - "start": 16066, - "end": 16069, - "loc": { - "start": { - "line": 155, - "column": 36 - }, - "end": { - "line": 155, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16069, - "end": 16070, - "loc": { - "start": { - "line": 155, - "column": 39 - }, - "end": { - "line": 155, - "column": 40 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16071, - "end": 16072, - "loc": { - "start": { - "line": 155, - "column": 41 - }, - "end": { - "line": 155, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 16073, - "end": 16074, - "loc": { - "start": { - "line": 155, - "column": 43 - }, - "end": { - "line": 155, - "column": 44 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 16075, - "end": 16077, - "loc": { - "start": { - "line": 155, - "column": 45 - }, - "end": { - "line": 155, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "a", - "start": 16078, - "end": 16079, - "loc": { - "start": { - "line": 155, - "column": 48 - }, - "end": { - "line": 155, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16079, - "end": 16080, - "loc": { - "start": { - "line": 155, - "column": 49 - }, - "end": { - "line": 155, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16080, - "end": 16081, - "loc": { - "start": { - "line": 155, - "column": 50 - }, - "end": { - "line": 155, - "column": 51 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16081, - "end": 16082, - "loc": { - "start": { - "line": 155, - "column": 51 - }, - "end": { - "line": 155, - "column": 52 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16087, - "end": 16088, - "loc": { - "start": { - "line": 156, - "column": 4 - }, - "end": { - "line": 156, - "column": 5 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 16088, - "end": 16091, - "loc": { - "start": { - "line": 156, - "column": 5 - }, - "end": { - "line": 156, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16092, - "end": 16093, - "loc": { - "start": { - "line": 156, - "column": 9 - }, - "end": { - "line": 156, - "column": 10 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 16093, - "end": 16096, - "loc": { - "start": { - "line": 156, - "column": 10 - }, - "end": { - "line": 156, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 16097, - "end": 16098, - "loc": { - "start": { - "line": 156, - "column": 14 - }, - "end": { - "line": 156, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16099, - "end": 16100, - "loc": { - "start": { - "line": 156, - "column": 16 - }, - "end": { - "line": 156, - "column": 17 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16101, - "end": 16102, - "loc": { - "start": { - "line": 156, - "column": 18 - }, - "end": { - "line": 156, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 16102, - "end": 16110, - "loc": { - "start": { - "line": 156, - "column": 19 - }, - "end": { - "line": 156, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16110, - "end": 16111, - "loc": { - "start": { - "line": 156, - "column": 27 - }, - "end": { - "line": 156, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getElementsByTagName", - "start": 16111, - "end": 16131, - "loc": { - "start": { - "line": 156, - "column": 28 - }, - "end": { - "line": 156, - "column": 48 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16131, - "end": 16132, - "loc": { - "start": { - "line": 156, - "column": 48 - }, - "end": { - "line": 156, - "column": 49 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pre", - "start": 16132, - "end": 16137, - "loc": { - "start": { - "line": 156, - "column": 49 - }, - "end": { - "line": 156, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16137, - "end": 16138, - "loc": { - "start": { - "line": 156, - "column": 54 - }, - "end": { - "line": 156, - "column": 55 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16138, - "end": 16139, - "loc": { - "start": { - "line": 156, - "column": 55 - }, - "end": { - "line": 156, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 16140, - "end": 16148, - "loc": { - "start": { - "line": 156, - "column": 57 - }, - "end": { - "line": 156, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16148, - "end": 16149, - "loc": { - "start": { - "line": 156, - "column": 65 - }, - "end": { - "line": 156, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getElementsByTagName", - "start": 16149, - "end": 16169, - "loc": { - "start": { - "line": 156, - "column": 66 - }, - "end": { - "line": 156, - "column": 86 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16169, - "end": 16170, - "loc": { - "start": { - "line": 156, - "column": 86 - }, - "end": { - "line": 156, - "column": 87 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "code", - "start": 16170, - "end": 16176, - "loc": { - "start": { - "line": 156, - "column": 87 - }, - "end": { - "line": 156, - "column": 93 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16176, - "end": 16177, - "loc": { - "start": { - "line": 156, - "column": 93 - }, - "end": { - "line": 156, - "column": 94 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16177, - "end": 16178, - "loc": { - "start": { - "line": 156, - "column": 94 - }, - "end": { - "line": 156, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 16179, - "end": 16187, - "loc": { - "start": { - "line": 156, - "column": 96 - }, - "end": { - "line": 156, - "column": 104 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16187, - "end": 16188, - "loc": { - "start": { - "line": 156, - "column": 104 - }, - "end": { - "line": 156, - "column": 105 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "getElementsByTagName", - "start": 16188, - "end": 16208, - "loc": { - "start": { - "line": 156, - "column": 105 - }, - "end": { - "line": 156, - "column": 125 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16208, - "end": 16209, - "loc": { - "start": { - "line": 156, - "column": 125 - }, - "end": { - "line": 156, - "column": 126 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "xmp", - "start": 16209, - "end": 16214, - "loc": { - "start": { - "line": 156, - "column": 126 - }, - "end": { - "line": 156, - "column": 131 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16214, - "end": 16215, - "loc": { - "start": { - "line": 156, - "column": 131 - }, - "end": { - "line": 156, - "column": 132 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16215, - "end": 16216, - "loc": { - "start": { - "line": 156, - "column": 132 - }, - "end": { - "line": 156, - "column": 133 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16216, - "end": 16217, - "loc": { - "start": { - "line": 156, - "column": 133 - }, - "end": { - "line": 156, - "column": 134 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 16218, - "end": 16219, - "loc": { - "start": { - "line": 156, - "column": 135 - }, - "end": { - "line": 156, - "column": 136 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16220, - "end": 16221, - "loc": { - "start": { - "line": 156, - "column": 137 - }, - "end": { - "line": 156, - "column": 138 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16222, - "end": 16223, - "loc": { - "start": { - "line": 156, - "column": 139 - }, - "end": { - "line": 156, - "column": 140 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16223, - "end": 16224, - "loc": { - "start": { - "line": 156, - "column": 140 - }, - "end": { - "line": 156, - "column": 141 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16224, - "end": 16225, - "loc": { - "start": { - "line": 156, - "column": 141 - }, - "end": { - "line": 156, - "column": 142 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16226, - "end": 16227, - "loc": { - "start": { - "line": 156, - "column": 143 - }, - "end": { - "line": 156, - "column": 144 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16228, - "end": 16229, - "loc": { - "start": { - "line": 156, - "column": 145 - }, - "end": { - "line": 156, - "column": 146 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 16230, - "end": 16231, - "loc": { - "start": { - "line": 156, - "column": 147 - }, - "end": { - "line": 156, - "column": 148 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16231, - "end": 16232, - "loc": { - "start": { - "line": 156, - "column": 148 - }, - "end": { - "line": 156, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16233, - "end": 16234, - "loc": { - "start": { - "line": 156, - "column": 150 - }, - "end": { - "line": 156, - "column": 151 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 16235, - "end": 16236, - "loc": { - "start": { - "line": 156, - "column": 152 - }, - "end": { - "line": 156, - "column": 153 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 16237, - "end": 16238, - "loc": { - "start": { - "line": 156, - "column": 154 - }, - "end": { - "line": 156, - "column": 155 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16238, - "end": 16239, - "loc": { - "start": { - "line": 156, - "column": 155 - }, - "end": { - "line": 156, - "column": 156 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 16239, - "end": 16245, - "loc": { - "start": { - "line": 156, - "column": 156 - }, - "end": { - "line": 156, - "column": 162 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16245, - "end": 16246, - "loc": { - "start": { - "line": 156, - "column": 162 - }, - "end": { - "line": 156, - "column": 163 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 16247, - "end": 16249, - "loc": { - "start": { - "line": 156, - "column": 164 - }, - "end": { - "line": 156, - "column": 166 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16249, - "end": 16250, - "loc": { - "start": { - "line": 156, - "column": 166 - }, - "end": { - "line": 156, - "column": 167 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16250, - "end": 16251, - "loc": { - "start": { - "line": 156, - "column": 167 - }, - "end": { - "line": 156, - "column": 168 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 16252, - "end": 16255, - "loc": { - "start": { - "line": 156, - "column": 169 - }, - "end": { - "line": 156, - "column": 172 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16256, - "end": 16257, - "loc": { - "start": { - "line": 156, - "column": 173 - }, - "end": { - "line": 156, - "column": 174 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 16257, - "end": 16260, - "loc": { - "start": { - "line": 156, - "column": 174 - }, - "end": { - "line": 156, - "column": 177 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 16261, - "end": 16262, - "loc": { - "start": { - "line": 156, - "column": 178 - }, - "end": { - "line": 156, - "column": 179 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16263, - "end": 16264, - "loc": { - "start": { - "line": 156, - "column": 180 - }, - "end": { - "line": 156, - "column": 181 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 16265, - "end": 16266, - "loc": { - "start": { - "line": 156, - "column": 182 - }, - "end": { - "line": 156, - "column": 183 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16266, - "end": 16267, - "loc": { - "start": { - "line": 156, - "column": 183 - }, - "end": { - "line": 156, - "column": 184 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 16268, - "end": 16269, - "loc": { - "start": { - "line": 156, - "column": 185 - }, - "end": { - "line": 156, - "column": 186 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16270, - "end": 16271, - "loc": { - "start": { - "line": 156, - "column": 187 - }, - "end": { - "line": 156, - "column": 188 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 16272, - "end": 16273, - "loc": { - "start": { - "line": 156, - "column": 189 - }, - "end": { - "line": 156, - "column": 190 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16273, - "end": 16274, - "loc": { - "start": { - "line": 156, - "column": 190 - }, - "end": { - "line": 156, - "column": 191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16274, - "end": 16275, - "loc": { - "start": { - "line": 156, - "column": 191 - }, - "end": { - "line": 156, - "column": 192 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16275, - "end": 16276, - "loc": { - "start": { - "line": 156, - "column": 192 - }, - "end": { - "line": 156, - "column": 193 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16276, - "end": 16277, - "loc": { - "start": { - "line": 156, - "column": 193 - }, - "end": { - "line": 156, - "column": 194 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 16277, - "end": 16283, - "loc": { - "start": { - "line": 156, - "column": 194 - }, - "end": { - "line": 156, - "column": 200 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16283, - "end": 16284, - "loc": { - "start": { - "line": 156, - "column": 200 - }, - "end": { - "line": 156, - "column": 201 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 16285, - "end": 16286, - "loc": { - "start": { - "line": 156, - "column": 202 - }, - "end": { - "line": 156, - "column": 203 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 16287, - "end": 16288, - "loc": { - "start": { - "line": 156, - "column": 204 - }, - "end": { - "line": 156, - "column": 205 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "s", - "start": 16289, - "end": 16290, - "loc": { - "start": { - "line": 156, - "column": 206 - }, - "end": { - "line": 156, - "column": 207 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16290, - "end": 16291, - "loc": { - "start": { - "line": 156, - "column": 207 - }, - "end": { - "line": 156, - "column": 208 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 16292, - "end": 16294, - "loc": { - "start": { - "line": 156, - "column": 209 - }, - "end": { - "line": 156, - "column": 211 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 16294, - "end": 16295, - "loc": { - "start": { - "line": 156, - "column": 211 - }, - "end": { - "line": 156, - "column": 212 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16295, - "end": 16296, - "loc": { - "start": { - "line": 156, - "column": 212 - }, - "end": { - "line": 156, - "column": 213 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "h", - "start": 16297, - "end": 16298, - "loc": { - "start": { - "line": 156, - "column": 214 - }, - "end": { - "line": 156, - "column": 215 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16298, - "end": 16299, - "loc": { - "start": { - "line": 156, - "column": 215 - }, - "end": { - "line": 156, - "column": 216 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 16299, - "end": 16303, - "loc": { - "start": { - "line": 156, - "column": 216 - }, - "end": { - "line": 156, - "column": 220 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16303, - "end": 16304, - "loc": { - "start": { - "line": 156, - "column": 220 - }, - "end": { - "line": 156, - "column": 221 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 16304, - "end": 16305, - "loc": { - "start": { - "line": 156, - "column": 221 - }, - "end": { - "line": 156, - "column": 222 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16305, - "end": 16306, - "loc": { - "start": { - "line": 156, - "column": 222 - }, - "end": { - "line": 156, - "column": 223 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16306, - "end": 16307, - "loc": { - "start": { - "line": 156, - "column": 223 - }, - "end": { - "line": 156, - "column": 224 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16307, - "end": 16308, - "loc": { - "start": { - "line": 156, - "column": 224 - }, - "end": { - "line": 156, - "column": 225 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16308, - "end": 16309, - "loc": { - "start": { - "line": 156, - "column": 225 - }, - "end": { - "line": 156, - "column": 226 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "t", - "start": 16309, - "end": 16310, - "loc": { - "start": { - "line": 156, - "column": 226 - }, - "end": { - "line": 156, - "column": 227 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16310, - "end": 16311, - "loc": { - "start": { - "line": 156, - "column": 227 - }, - "end": { - "line": 156, - "column": 228 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16311, - "end": 16312, - "loc": { - "start": { - "line": 156, - "column": 228 - }, - "end": { - "line": 156, - "column": 229 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16312, - "end": 16313, - "loc": { - "start": { - "line": 156, - "column": 229 - }, - "end": { - "line": 156, - "column": 230 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 16313, - "end": 16316, - "loc": { - "start": { - "line": 156, - "column": 230 - }, - "end": { - "line": 156, - "column": 233 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "e", - "start": 16317, - "end": 16318, - "loc": { - "start": { - "line": 156, - "column": 234 - }, - "end": { - "line": 156, - "column": 235 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16319, - "end": 16320, - "loc": { - "start": { - "line": 156, - "column": 236 - }, - "end": { - "line": 156, - "column": 237 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "q", - "start": 16321, - "end": 16322, - "loc": { - "start": { - "line": 156, - "column": 238 - }, - "end": { - "line": 156, - "column": 239 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16322, - "end": 16323, - "loc": { - "start": { - "line": 156, - "column": 239 - }, - "end": { - "line": 156, - "column": 240 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 16332, - "end": 16333, - "loc": { - "start": { - "line": 157, - "column": 8 - }, - "end": { - "line": 157, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16334, - "end": 16335, - "loc": { - "start": { - "line": 157, - "column": 10 - }, - "end": { - "line": 157, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Date", - "start": 16336, - "end": 16340, - "loc": { - "start": { - "line": 157, - "column": 12 - }, - "end": { - "line": 157, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16340, - "end": 16341, - "loc": { - "start": { - "line": 157, - "column": 16 - }, - "end": { - "line": 157, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 16341, - "end": 16342, - "loc": { - "start": { - "line": 157, - "column": 17 - }, - "end": { - "line": 157, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16342, - "end": 16343, - "loc": { - "start": { - "line": 157, - "column": 18 - }, - "end": { - "line": 157, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "now", - "start": 16343, - "end": 16346, - "loc": { - "start": { - "line": 157, - "column": 19 - }, - "end": { - "line": 157, - "column": 22 - } - } - }, - { - "type": { - "label": "||", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 1, - "updateContext": null - }, - "value": "||", - "start": 16347, - "end": 16349, - "loc": { - "start": { - "line": 157, - "column": 23 - }, - "end": { - "line": 157, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16350, - "end": 16351, - "loc": { - "start": { - "line": 157, - "column": 26 - }, - "end": { - "line": 157, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "l", - "start": 16351, - "end": 16352, - "loc": { - "start": { - "line": 157, - "column": 27 - }, - "end": { - "line": 157, - "column": 28 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16353, - "end": 16354, - "loc": { - "start": { - "line": 157, - "column": 29 - }, - "end": { - "line": 157, - "column": 30 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16355, - "end": 16356, - "loc": { - "start": { - "line": 157, - "column": 31 - }, - "end": { - "line": 157, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "now", - "start": 16357, - "end": 16360, - "loc": { - "start": { - "line": 157, - "column": 33 - }, - "end": { - "line": 157, - "column": 36 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16360, - "end": 16361, - "loc": { - "start": { - "line": 157, - "column": 36 - }, - "end": { - "line": 157, - "column": 37 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 16362, - "end": 16370, - "loc": { - "start": { - "line": 157, - "column": 38 - }, - "end": { - "line": 157, - "column": 46 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16371, - "end": 16372, - "loc": { - "start": { - "line": 157, - "column": 47 - }, - "end": { - "line": 157, - "column": 48 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16372, - "end": 16373, - "loc": { - "start": { - "line": 157, - "column": 48 - }, - "end": { - "line": 157, - "column": 49 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16374, - "end": 16375, - "loc": { - "start": { - "line": 157, - "column": 50 - }, - "end": { - "line": 157, - "column": 51 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 16384, - "end": 16390, - "loc": { - "start": { - "line": 158, - "column": 8 - }, - "end": { - "line": 158, - "column": 14 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 16391, - "end": 16392, - "loc": { - "start": { - "line": 158, - "column": 15 - }, - "end": { - "line": 158, - "column": 16 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 16392, - "end": 16395, - "loc": { - "start": { - "line": 158, - "column": 16 - }, - "end": { - "line": 158, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Date", - "start": 16396, - "end": 16400, - "loc": { - "start": { - "line": 158, - "column": 20 - }, - "end": { - "line": 158, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16400, - "end": 16401, - "loc": { - "start": { - "line": 158, - "column": 24 - }, - "end": { - "line": 158, - "column": 25 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16401, - "end": 16402, - "loc": { - "start": { - "line": 158, - "column": 25 - }, - "end": { - "line": 158, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16402, - "end": 16403, - "loc": { - "start": { - "line": 158, - "column": 26 - }, - "end": { - "line": 158, - "column": 27 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16410, - "end": 16411, - "loc": { - "start": { - "line": 159, - "column": 6 - }, - "end": { - "line": 159, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16412, - "end": 16413, - "loc": { - "start": { - "line": 159, - "column": 8 - }, - "end": { - "line": 159, - "column": 9 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16413, - "end": 16414, - "loc": { - "start": { - "line": 159, - "column": 9 - }, - "end": { - "line": 159, - "column": 10 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16414, - "end": 16415, - "loc": { - "start": { - "line": 159, - "column": 10 - }, - "end": { - "line": 159, - "column": 11 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 16415, - "end": 16418, - "loc": { - "start": { - "line": 159, - "column": 11 - }, - "end": { - "line": 159, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "p", - "start": 16419, - "end": 16420, - "loc": { - "start": { - "line": 159, - "column": 15 - }, - "end": { - "line": 159, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16421, - "end": 16422, - "loc": { - "start": { - "line": 159, - "column": 17 - }, - "end": { - "line": 159, - "column": 18 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 16423, - "end": 16424, - "loc": { - "start": { - "line": 159, - "column": 19 - }, - "end": { - "line": 159, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16424, - "end": 16425, - "loc": { - "start": { - "line": 159, - "column": 20 - }, - "end": { - "line": 159, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "d", - "start": 16434, - "end": 16435, - "loc": { - "start": { - "line": 160, - "column": 8 - }, - "end": { - "line": 160, - "column": 9 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16435, - "end": 16436, - "loc": { - "start": { - "line": 160, - "column": 9 - }, - "end": { - "line": 160, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "g", - "start": 16445, - "end": 16446, - "loc": { - "start": { - "line": 161, - "column": 8 - }, - "end": { - "line": 161, - "column": 9 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16447, - "end": 16448, - "loc": { - "start": { - "line": 161, - "column": 10 - }, - "end": { - "line": 161, - "column": 11 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "\\blang(?:uage)?-([\\w.]+)(?!\\S)", - "flags": "" - }, - "start": 16449, - "end": 16481, - "loc": { - "start": { - "line": 161, - "column": 12 - }, - "end": { - "line": 161, - "column": 44 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16481, - "end": 16482, - "loc": { - "start": { - "line": 161, - "column": 44 - }, - "end": { - "line": 161, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "m", - "start": 16482, - "end": 16483, - "loc": { - "start": { - "line": 161, - "column": 45 - }, - "end": { - "line": 161, - "column": 46 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16483, - "end": 16484, - "loc": { - "start": { - "line": 161, - "column": 46 - }, - "end": { - "line": 161, - "column": 47 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16484, - "end": 16485, - "loc": { - "start": { - "line": 161, - "column": 47 - }, - "end": { - "line": 161, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16485, - "end": 16486, - "loc": { - "start": { - "line": 161, - "column": 48 - }, - "end": { - "line": 161, - "column": 49 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16489, - "end": 16490, - "loc": { - "start": { - "line": 162, - "column": 2 - }, - "end": { - "line": 162, - "column": 3 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16490, - "end": 16491, - "loc": { - "start": { - "line": 162, - "column": 3 - }, - "end": { - "line": 162, - "column": 4 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 16491, - "end": 16497, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 162, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16497, - "end": 16498, - "loc": { - "start": { - "line": 162, - "column": 10 - }, - "end": { - "line": 162, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR", - "start": 16498, - "end": 16500, - "loc": { - "start": { - "line": 162, - "column": 11 - }, - "end": { - "line": 162, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 16501, - "end": 16502, - "loc": { - "start": { - "line": 162, - "column": 14 - }, - "end": { - "line": 162, - "column": 15 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16503, - "end": 16504, - "loc": { - "start": { - "line": 162, - "column": 16 - }, - "end": { - "line": 162, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createSimpleLexer", - "start": 16505, - "end": 16522, - "loc": { - "start": { - "line": 162, - "column": 18 - }, - "end": { - "line": 162, - "column": 35 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16522, - "end": 16523, - "loc": { - "start": { - "line": 162, - "column": 35 - }, - "end": { - "line": 162, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "x", - "start": 16524, - "end": 16525, - "loc": { - "start": { - "line": 162, - "column": 37 - }, - "end": { - "line": 162, - "column": 38 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16525, - "end": 16526, - "loc": { - "start": { - "line": 162, - "column": 38 - }, - "end": { - "line": 162, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "registerLangHandler", - "start": 16527, - "end": 16546, - "loc": { - "start": { - "line": 162, - "column": 40 - }, - "end": { - "line": 162, - "column": 59 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16546, - "end": 16547, - "loc": { - "start": { - "line": 162, - "column": 59 - }, - "end": { - "line": 162, - "column": 60 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "k", - "start": 16548, - "end": 16549, - "loc": { - "start": { - "line": 162, - "column": 61 - }, - "end": { - "line": 162, - "column": 62 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16549, - "end": 16550, - "loc": { - "start": { - "line": 162, - "column": 62 - }, - "end": { - "line": 162, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "sourceDecorator", - "start": 16551, - "end": 16566, - "loc": { - "start": { - "line": 162, - "column": 64 - }, - "end": { - "line": 162, - "column": 79 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16566, - "end": 16567, - "loc": { - "start": { - "line": 162, - "column": 79 - }, - "end": { - "line": 162, - "column": 80 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "u", - "start": 16568, - "end": 16569, - "loc": { - "start": { - "line": 162, - "column": 81 - }, - "end": { - "line": 162, - "column": 82 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16569, - "end": 16570, - "loc": { - "start": { - "line": 162, - "column": 82 - }, - "end": { - "line": 162, - "column": 83 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_ATTRIB_NAME", - "start": 16571, - "end": 16585, - "loc": { - "start": { - "line": 162, - "column": 84 - }, - "end": { - "line": 162, - "column": 98 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16585, - "end": 16586, - "loc": { - "start": { - "line": 162, - "column": 98 - }, - "end": { - "line": 162, - "column": 99 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "atn", - "start": 16587, - "end": 16592, - "loc": { - "start": { - "line": 162, - "column": 100 - }, - "end": { - "line": 162, - "column": 105 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16592, - "end": 16593, - "loc": { - "start": { - "line": 162, - "column": 105 - }, - "end": { - "line": 162, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_ATTRIB_VALUE", - "start": 16594, - "end": 16609, - "loc": { - "start": { - "line": 162, - "column": 107 - }, - "end": { - "line": 162, - "column": 122 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16609, - "end": 16610, - "loc": { - "start": { - "line": 162, - "column": 122 - }, - "end": { - "line": 162, - "column": 123 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "atv", - "start": 16611, - "end": 16616, - "loc": { - "start": { - "line": 162, - "column": 124 - }, - "end": { - "line": 162, - "column": 129 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16616, - "end": 16617, - "loc": { - "start": { - "line": 162, - "column": 129 - }, - "end": { - "line": 162, - "column": 130 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_COMMENT", - "start": 16618, - "end": 16628, - "loc": { - "start": { - "line": 162, - "column": 131 - }, - "end": { - "line": 162, - "column": 141 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16628, - "end": 16629, - "loc": { - "start": { - "line": 162, - "column": 141 - }, - "end": { - "line": 162, - "column": 142 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "com", - "start": 16630, - "end": 16635, - "loc": { - "start": { - "line": 162, - "column": 143 - }, - "end": { - "line": 162, - "column": 148 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16635, - "end": 16636, - "loc": { - "start": { - "line": 162, - "column": 148 - }, - "end": { - "line": 162, - "column": 149 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_DECLARATION", - "start": 16637, - "end": 16651, - "loc": { - "start": { - "line": 162, - "column": 150 - }, - "end": { - "line": 162, - "column": 164 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16651, - "end": 16652, - "loc": { - "start": { - "line": 162, - "column": 164 - }, - "end": { - "line": 162, - "column": 165 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "dec", - "start": 16653, - "end": 16658, - "loc": { - "start": { - "line": 162, - "column": 166 - }, - "end": { - "line": 162, - "column": 171 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16658, - "end": 16659, - "loc": { - "start": { - "line": 162, - "column": 171 - }, - "end": { - "line": 162, - "column": 172 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_KEYWORD", - "start": 16660, - "end": 16670, - "loc": { - "start": { - "line": 162, - "column": 173 - }, - "end": { - "line": 162, - "column": 183 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16670, - "end": 16671, - "loc": { - "start": { - "line": 162, - "column": 183 - }, - "end": { - "line": 162, - "column": 184 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "kwd", - "start": 16672, - "end": 16677, - "loc": { - "start": { - "line": 162, - "column": 185 - }, - "end": { - "line": 162, - "column": 190 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16677, - "end": 16678, - "loc": { - "start": { - "line": 162, - "column": 190 - }, - "end": { - "line": 162, - "column": 191 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_LITERAL", - "start": 16679, - "end": 16689, - "loc": { - "start": { - "line": 162, - "column": 192 - }, - "end": { - "line": 162, - "column": 202 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16689, - "end": 16690, - "loc": { - "start": { - "line": 162, - "column": 202 - }, - "end": { - "line": 162, - "column": 203 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lit", - "start": 16691, - "end": 16696, - "loc": { - "start": { - "line": 162, - "column": 204 - }, - "end": { - "line": 162, - "column": 209 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16696, - "end": 16697, - "loc": { - "start": { - "line": 162, - "column": 209 - }, - "end": { - "line": 162, - "column": 210 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_NOCODE", - "start": 16702, - "end": 16711, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 13 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16711, - "end": 16712, - "loc": { - "start": { - "line": 163, - "column": 13 - }, - "end": { - "line": 163, - "column": 14 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "nocode", - "start": 16713, - "end": 16721, - "loc": { - "start": { - "line": 163, - "column": 15 - }, - "end": { - "line": 163, - "column": 23 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16721, - "end": 16722, - "loc": { - "start": { - "line": 163, - "column": 23 - }, - "end": { - "line": 163, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_PLAIN", - "start": 16723, - "end": 16731, - "loc": { - "start": { - "line": 163, - "column": 25 - }, - "end": { - "line": 163, - "column": 33 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16731, - "end": 16732, - "loc": { - "start": { - "line": 163, - "column": 33 - }, - "end": { - "line": 163, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pln", - "start": 16733, - "end": 16738, - "loc": { - "start": { - "line": 163, - "column": 35 - }, - "end": { - "line": 163, - "column": 40 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16738, - "end": 16739, - "loc": { - "start": { - "line": 163, - "column": 40 - }, - "end": { - "line": 163, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_PUNCTUATION", - "start": 16740, - "end": 16754, - "loc": { - "start": { - "line": 163, - "column": 42 - }, - "end": { - "line": 163, - "column": 56 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16754, - "end": 16755, - "loc": { - "start": { - "line": 163, - "column": 56 - }, - "end": { - "line": 163, - "column": 57 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "pun", - "start": 16756, - "end": 16761, - "loc": { - "start": { - "line": 163, - "column": 58 - }, - "end": { - "line": 163, - "column": 63 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16761, - "end": 16762, - "loc": { - "start": { - "line": 163, - "column": 63 - }, - "end": { - "line": 163, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_SOURCE", - "start": 16763, - "end": 16772, - "loc": { - "start": { - "line": 163, - "column": 65 - }, - "end": { - "line": 163, - "column": 74 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16772, - "end": 16773, - "loc": { - "start": { - "line": 163, - "column": 74 - }, - "end": { - "line": 163, - "column": 75 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "src", - "start": 16774, - "end": 16779, - "loc": { - "start": { - "line": 163, - "column": 76 - }, - "end": { - "line": 163, - "column": 81 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16779, - "end": 16780, - "loc": { - "start": { - "line": 163, - "column": 81 - }, - "end": { - "line": 163, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_STRING", - "start": 16781, - "end": 16790, - "loc": { - "start": { - "line": 163, - "column": 83 - }, - "end": { - "line": 163, - "column": 92 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16790, - "end": 16791, - "loc": { - "start": { - "line": 163, - "column": 92 - }, - "end": { - "line": 163, - "column": 93 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "str", - "start": 16792, - "end": 16797, - "loc": { - "start": { - "line": 163, - "column": 94 - }, - "end": { - "line": 163, - "column": 99 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16797, - "end": 16798, - "loc": { - "start": { - "line": 163, - "column": 99 - }, - "end": { - "line": 163, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_TAG", - "start": 16799, - "end": 16805, - "loc": { - "start": { - "line": 163, - "column": 101 - }, - "end": { - "line": 163, - "column": 107 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16805, - "end": 16806, - "loc": { - "start": { - "line": 163, - "column": 107 - }, - "end": { - "line": 163, - "column": 108 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "tag", - "start": 16807, - "end": 16812, - "loc": { - "start": { - "line": 163, - "column": 109 - }, - "end": { - "line": 163, - "column": 114 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16812, - "end": 16813, - "loc": { - "start": { - "line": 163, - "column": 114 - }, - "end": { - "line": 163, - "column": 115 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "PR_TYPE", - "start": 16814, - "end": 16821, - "loc": { - "start": { - "line": 163, - "column": 116 - }, - "end": { - "line": 163, - "column": 123 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16821, - "end": 16822, - "loc": { - "start": { - "line": 163, - "column": 123 - }, - "end": { - "line": 163, - "column": 124 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "typ", - "start": 16823, - "end": 16828, - "loc": { - "start": { - "line": 163, - "column": 125 - }, - "end": { - "line": 163, - "column": 130 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16829, - "end": 16830, - "loc": { - "start": { - "line": 163, - "column": 131 - }, - "end": { - "line": 163, - "column": 132 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16830, - "end": 16831, - "loc": { - "start": { - "line": 163, - "column": 132 - }, - "end": { - "line": 163, - "column": 133 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16832, - "end": 16833, - "loc": { - "start": { - "line": 164, - "column": 0 - }, - "end": { - "line": 164, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16833, - "end": 16834, - "loc": { - "start": { - "line": 164, - "column": 1 - }, - "end": { - "line": 164, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16834, - "end": 16835, - "loc": { - "start": { - "line": 164, - "column": 2 - }, - "end": { - "line": 164, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 16835, - "end": 16836, - "loc": { - "start": { - "line": 164, - "column": 3 - }, - "end": { - "line": 164, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16836, - "end": 16837, - "loc": { - "start": { - "line": 164, - "column": 4 - }, - "end": { - "line": 164, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16837, - "end": 16837, - "loc": { - "start": { - "line": 164, - "column": 5 - }, - "end": { - "line": 164, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/pretty-print.js.json b/docs/ast/source/doc/script/pretty-print.js.json deleted file mode 100644 index ee2b3607..00000000 --- a/docs/ast/source/doc/script/pretty-print.js.json +++ /dev/null @@ -1,7163 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 759, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 25, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 756, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 756, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 17, - "end": 31, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 16 - } - }, - "expression": { - "type": "CallExpression", - "start": 17, - "end": 30, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 15 - } - }, - "callee": { - "type": "Identifier", - "start": 17, - "end": 28, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 13 - }, - "identifierName": "prettyPrint" - }, - "name": "prettyPrint" - }, - "arguments": [] - } - }, - { - "type": "VariableDeclaration", - "start": 34, - "end": 112, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 80 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 38, - "end": 111, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 79 - } - }, - "id": { - "type": "Identifier", - "start": 38, - "end": 43, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 11 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "init": { - "type": "CallExpression", - "start": 46, - "end": 111, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 79 - } - }, - "callee": { - "type": "MemberExpression", - "start": 46, - "end": 71, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 39 - } - }, - "object": { - "type": "Identifier", - "start": 46, - "end": 54, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 22 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 55, - "end": 71, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 39 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 72, - "end": 110, - "loc": { - "start": { - "line": 3, - "column": 40 - }, - "end": { - "line": 3, - "column": 78 - } - }, - "extra": { - "rawValue": ".prettyprint.linenums li[class^=\"L\"]", - "raw": "'.prettyprint.linenums li[class^=\"L\"]'" - }, - "value": ".prettyprint.linenums li[class^=\"L\"]" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 115, - "end": 201, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 6, - "column": 3 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 120, - "end": 129, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 124, - "end": 129, - "loc": { - "start": { - "line": 4, - "column": 11 - }, - "end": { - "line": 4, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 124, - "end": 125, - "loc": { - "start": { - "line": 4, - "column": 11 - }, - "end": { - "line": 4, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 128, - "end": 129, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 131, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 4, - "column": 34 - } - }, - "left": { - "type": "Identifier", - "start": 131, - "end": 132, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 4, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 135, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 135, - "end": 140, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 27 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "property": { - "type": "Identifier", - "start": 141, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 28 - }, - "end": { - "line": 4, - "column": 34 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 149, - "end": 152, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 39 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 149, - "end": 150, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 37 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 154, - "end": 201, - "loc": { - "start": { - "line": 4, - "column": 41 - }, - "end": { - "line": 6, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 160, - "end": 197, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 41 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 160, - "end": 196, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 40 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 160, - "end": 171, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 15 - } - }, - "object": { - "type": "MemberExpression", - "start": 160, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 12 - } - }, - "object": { - "type": "Identifier", - "start": 160, - "end": 165, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 9 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "property": { - "type": "Identifier", - "start": 166, - "end": 167, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 169, - "end": 171, - "loc": { - "start": { - "line": 5, - "column": 13 - }, - "end": { - "line": 5, - "column": 15 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - "right": { - "type": "BinaryExpression", - "start": 174, - "end": 196, - "loc": { - "start": { - "line": 5, - "column": 18 - }, - "end": { - "line": 5, - "column": 40 - } - }, - "left": { - "type": "StringLiteral", - "start": 174, - "end": 186, - "loc": { - "start": { - "line": 5, - "column": 18 - }, - "end": { - "line": 5, - "column": 30 - } - }, - "extra": { - "rawValue": "lineNumber", - "raw": "'lineNumber'" - }, - "value": "lineNumber" - }, - "operator": "+", - "right": { - "type": "BinaryExpression", - "start": 190, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 39 - } - }, - "left": { - "type": "Identifier", - "start": 190, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 35 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 194, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 38 - }, - "end": { - "line": 5, - "column": 39 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesized": true, - "parenStart": 189 - } - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 205, - "end": 262, - "loc": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 59 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 209, - "end": 261, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 58 - } - }, - "id": { - "type": "Identifier", - "start": 209, - "end": 216, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 13 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "init": { - "type": "CallExpression", - "start": 219, - "end": 261, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 58 - } - }, - "callee": { - "type": "MemberExpression", - "start": 219, - "end": 238, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 35 - } - }, - "object": { - "type": "MemberExpression", - "start": 219, - "end": 232, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 29 - } - }, - "object": { - "type": "Identifier", - "start": 219, - "end": 227, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 24 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 228, - "end": 232, - "loc": { - "start": { - "line": 8, - "column": 25 - }, - "end": { - "line": 8, - "column": 29 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 233, - "end": 238, - "loc": { - "start": { - "line": 8, - "column": 30 - }, - "end": { - "line": 8, - "column": 35 - }, - "identifierName": "match" - }, - "name": "match" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 239, - "end": 260, - "loc": { - "start": { - "line": 8, - "column": 36 - }, - "end": { - "line": 8, - "column": 57 - } - }, - "extra": { - "raw": "/errorLines=([\\d,]+)/" - }, - "pattern": "errorLines=([\\d,]+)", - "flags": "" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 265, - "end": 507, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 17, - "column": 3 - } - }, - "test": { - "type": "Identifier", - "start": 269, - "end": 276, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 13 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "consequent": { - "type": "BlockStatement", - "start": 278, - "end": 507, - "loc": { - "start": { - "line": 9, - "column": 15 - }, - "end": { - "line": 17, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 284, - "end": 318, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 38 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 288, - "end": 317, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 37 - } - }, - "id": { - "type": "Identifier", - "start": 288, - "end": 293, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 13 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "init": { - "type": "CallExpression", - "start": 296, - "end": 317, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 37 - } - }, - "callee": { - "type": "MemberExpression", - "start": 296, - "end": 312, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "object": { - "type": "MemberExpression", - "start": 296, - "end": 306, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 296, - "end": 303, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 23 - }, - "identifierName": "matched" - }, - "name": "matched" - }, - "property": { - "type": "NumericLiteral", - "start": 304, - "end": 305, - "loc": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 307, - "end": 312, - "loc": { - "start": { - "line": 10, - "column": 27 - }, - "end": { - "line": 10, - "column": 32 - }, - "identifierName": "split" - }, - "name": "split" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 313, - "end": 316, - "loc": { - "start": { - "line": 10, - "column": 33 - }, - "end": { - "line": 10, - "column": 36 - } - }, - "extra": { - "rawValue": ",", - "raw": "','" - }, - "value": "," - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 323, - "end": 491, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 15, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 328, - "end": 337, - "loc": { - "start": { - "line": 11, - "column": 9 - }, - "end": { - "line": 11, - "column": 18 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 332, - "end": 337, - "loc": { - "start": { - "line": 11, - "column": 13 - }, - "end": { - "line": 11, - "column": 18 - } - }, - "id": { - "type": "Identifier", - "start": 332, - "end": 333, - "loc": { - "start": { - "line": 11, - "column": 13 - }, - "end": { - "line": 11, - "column": 14 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 336, - "end": 337, - "loc": { - "start": { - "line": 11, - "column": 17 - }, - "end": { - "line": 11, - "column": 18 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 339, - "end": 355, - "loc": { - "start": { - "line": 11, - "column": 20 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "left": { - "type": "Identifier", - "start": 339, - "end": 340, - "loc": { - "start": { - "line": 11, - "column": 20 - }, - "end": { - "line": 11, - "column": 21 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 343, - "end": 355, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 343, - "end": 348, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 29 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "property": { - "type": "Identifier", - "start": 349, - "end": 355, - "loc": { - "start": { - "line": 11, - "column": 30 - }, - "end": { - "line": 11, - "column": 36 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 357, - "end": 360, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 11, - "column": 41 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 357, - "end": 358, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 11, - "column": 39 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 362, - "end": 491, - "loc": { - "start": { - "line": 11, - "column": 43 - }, - "end": { - "line": 15, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 370, - "end": 404, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 40 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 374, - "end": 403, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 39 - } - }, - "id": { - "type": "Identifier", - "start": 374, - "end": 376, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 12 - }, - "identifierName": "id" - }, - "name": "id" - }, - "init": { - "type": "BinaryExpression", - "start": 379, - "end": 403, - "loc": { - "start": { - "line": 12, - "column": 15 - }, - "end": { - "line": 12, - "column": 39 - } - }, - "left": { - "type": "StringLiteral", - "start": 379, - "end": 392, - "loc": { - "start": { - "line": 12, - "column": 15 - }, - "end": { - "line": 12, - "column": 28 - } - }, - "extra": { - "rawValue": "#lineNumber", - "raw": "'#lineNumber'" - }, - "value": "#lineNumber" - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 395, - "end": 403, - "loc": { - "start": { - "line": 12, - "column": 31 - }, - "end": { - "line": 12, - "column": 39 - } - }, - "object": { - "type": "Identifier", - "start": 395, - "end": 400, - "loc": { - "start": { - "line": 12, - "column": 31 - }, - "end": { - "line": 12, - "column": 36 - }, - "identifierName": "lines" - }, - "name": "lines" - }, - "property": { - "type": "Identifier", - "start": 401, - "end": 402, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 38 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - } - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 411, - "end": 447, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 42 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 415, - "end": 446, - "loc": { - "start": { - "line": 13, - "column": 10 - }, - "end": { - "line": 13, - "column": 41 - } - }, - "id": { - "type": "Identifier", - "start": 415, - "end": 417, - "loc": { - "start": { - "line": 13, - "column": 10 - }, - "end": { - "line": 13, - "column": 12 - }, - "identifierName": "el" - }, - "name": "el" - }, - "init": { - "type": "CallExpression", - "start": 420, - "end": 446, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 41 - } - }, - "callee": { - "type": "MemberExpression", - "start": 420, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 37 - } - }, - "object": { - "type": "Identifier", - "start": 420, - "end": 428, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 23 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 429, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 24 - }, - "end": { - "line": 13, - "column": 37 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 443, - "end": 445, - "loc": { - "start": { - "line": 13, - "column": 38 - }, - "end": { - "line": 13, - "column": 40 - }, - "identifierName": "id" - }, - "name": "id" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 454, - "end": 485, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 37 - } - }, - "expression": { - "type": "CallExpression", - "start": 454, - "end": 484, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 454, - "end": 470, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 22 - } - }, - "object": { - "type": "MemberExpression", - "start": 454, - "end": 466, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 454, - "end": 456, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 8 - }, - "identifierName": "el" - }, - "name": "el" - }, - "property": { - "type": "Identifier", - "start": 457, - "end": 466, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 18 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 467, - "end": 470, - "loc": { - "start": { - "line": 14, - "column": 19 - }, - "end": { - "line": 14, - "column": 22 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 471, - "end": 483, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 35 - } - }, - "extra": { - "rawValue": "error-line", - "raw": "'error-line'" - }, - "value": "error-line" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "ReturnStatement", - "start": 496, - "end": 503, - "loc": { - "start": { - "line": 16, - "column": 4 - }, - "end": { - "line": 16, - "column": 11 - } - }, - "argument": null - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 511, - "end": 754, - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 24, - "column": 3 - } - }, - "test": { - "type": "MemberExpression", - "start": 515, - "end": 528, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 515, - "end": 523, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 14 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 524, - "end": 528, - "loc": { - "start": { - "line": 19, - "column": 15 - }, - "end": { - "line": 19, - "column": 19 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "consequent": { - "type": "BlockStatement", - "start": 530, - "end": 754, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 24, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 606, - "end": 663, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 61 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 610, - "end": 662, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 60 - } - }, - "id": { - "type": "Identifier", - "start": 610, - "end": 612, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 10 - }, - "identifierName": "id" - }, - "name": "id", - "leadingComments": null - }, - "init": { - "type": "CallExpression", - "start": 615, - "end": 662, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 60 - } - }, - "callee": { - "type": "MemberExpression", - "start": 615, - "end": 636, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 34 - } - }, - "object": { - "type": "MemberExpression", - "start": 615, - "end": 628, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 615, - "end": 623, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 21 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 624, - "end": 628, - "loc": { - "start": { - "line": 21, - "column": 22 - }, - "end": { - "line": 21, - "column": 26 - }, - "identifierName": "hash" - }, - "name": "hash" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 629, - "end": 636, - "loc": { - "start": { - "line": 21, - "column": 27 - }, - "end": { - "line": 21, - "column": 34 - }, - "identifierName": "replace" - }, - "name": "replace" - }, - "computed": false - }, - "arguments": [ - { - "type": "RegExpLiteral", - "start": 637, - "end": 653, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 51 - } - }, - "extra": { - "raw": "/([\\[\\].'\"@$])/g" - }, - "pattern": "([\\[\\].'\"@$])", - "flags": "g" - }, - { - "type": "StringLiteral", - "start": 655, - "end": 661, - "loc": { - "start": { - "line": 21, - "column": 53 - }, - "end": { - "line": 21, - "column": 59 - } - }, - "extra": { - "rawValue": "\\$1", - "raw": "'\\\\$1'" - }, - "value": "\\$1" - } - ] - }, - "leadingComments": null - } - ], - "kind": "var", - "leadingComments": [ - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 536, - "end": 601, - "loc": { - "start": { - "line": 20, - "column": 4 - }, - "end": { - "line": 20, - "column": 69 - } - } - } - ] - }, - { - "type": "VariableDeclaration", - "start": 668, - "end": 706, - "loc": { - "start": { - "line": 22, - "column": 4 - }, - "end": { - "line": 22, - "column": 42 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 672, - "end": 705, - "loc": { - "start": { - "line": 22, - "column": 8 - }, - "end": { - "line": 22, - "column": 41 - } - }, - "id": { - "type": "Identifier", - "start": 672, - "end": 676, - "loc": { - "start": { - "line": 22, - "column": 8 - }, - "end": { - "line": 22, - "column": 12 - }, - "identifierName": "line" - }, - "name": "line" - }, - "init": { - "type": "CallExpression", - "start": 679, - "end": 705, - "loc": { - "start": { - "line": 22, - "column": 15 - }, - "end": { - "line": 22, - "column": 41 - } - }, - "callee": { - "type": "MemberExpression", - "start": 679, - "end": 701, - "loc": { - "start": { - "line": 22, - "column": 15 - }, - "end": { - "line": 22, - "column": 37 - } - }, - "object": { - "type": "Identifier", - "start": 679, - "end": 687, - "loc": { - "start": { - "line": 22, - "column": 15 - }, - "end": { - "line": 22, - "column": 23 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 688, - "end": 701, - "loc": { - "start": { - "line": 22, - "column": 24 - }, - "end": { - "line": 22, - "column": 37 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 702, - "end": 704, - "loc": { - "start": { - "line": 22, - "column": 38 - }, - "end": { - "line": 22, - "column": 40 - }, - "identifierName": "id" - }, - "name": "id" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 711, - "end": 750, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 43 - } - }, - "test": { - "type": "Identifier", - "start": 715, - "end": 719, - "loc": { - "start": { - "line": 23, - "column": 8 - }, - "end": { - "line": 23, - "column": 12 - }, - "identifierName": "line" - }, - "name": "line" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 721, - "end": 750, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 43 - } - }, - "expression": { - "type": "CallExpression", - "start": 721, - "end": 749, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 721, - "end": 739, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 32 - } - }, - "object": { - "type": "MemberExpression", - "start": 721, - "end": 735, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 721, - "end": 725, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 18 - }, - "identifierName": "line" - }, - "name": "line" - }, - "property": { - "type": "Identifier", - "start": 726, - "end": 735, - "loc": { - "start": { - "line": 23, - "column": 19 - }, - "end": { - "line": 23, - "column": 28 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 736, - "end": 739, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 32 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 740, - "end": 748, - "loc": { - "start": { - "line": 23, - "column": 33 - }, - "end": { - "line": 23, - "column": 41 - } - }, - "extra": { - "rawValue": "active", - "raw": "'active'" - }, - "value": "active" - } - ] - } - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [ - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 536, - "end": 601, - "loc": { - "start": { - "line": 20, - "column": 4 - }, - "end": { - "line": 20, - "column": 69 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prettyPrint", - "start": 17, - "end": 28, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 28, - "end": 29, - "loc": { - "start": { - "line": 2, - "column": 13 - }, - "end": { - "line": 2, - "column": 14 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 29, - "end": 30, - "loc": { - "start": { - "line": 2, - "column": 14 - }, - "end": { - "line": 2, - "column": 15 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 30, - "end": 31, - "loc": { - "start": { - "line": 2, - "column": 15 - }, - "end": { - "line": 2, - "column": 16 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 34, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 38, - "end": 43, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 44, - "end": 45, - "loc": { - "start": { - "line": 3, - "column": 12 - }, - "end": { - "line": 3, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 46, - "end": 54, - "loc": { - "start": { - "line": 3, - "column": 14 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 54, - "end": 55, - "loc": { - "start": { - "line": 3, - "column": 22 - }, - "end": { - "line": 3, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 55, - "end": 71, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 39 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 71, - "end": 72, - "loc": { - "start": { - "line": 3, - "column": 39 - }, - "end": { - "line": 3, - "column": 40 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".prettyprint.linenums li[class^=\"L\"]", - "start": 72, - "end": 110, - "loc": { - "start": { - "line": 3, - "column": 40 - }, - "end": { - "line": 3, - "column": 78 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 110, - "end": 111, - "loc": { - "start": { - "line": 3, - "column": 78 - }, - "end": { - "line": 3, - "column": 79 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 111, - "end": 112, - "loc": { - "start": { - "line": 3, - "column": 79 - }, - "end": { - "line": 3, - "column": 80 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 115, - "end": 118, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 119, - "end": 120, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 7 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 120, - "end": 123, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 124, - "end": 125, - "loc": { - "start": { - "line": 4, - "column": 11 - }, - "end": { - "line": 4, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 126, - "end": 127, - "loc": { - "start": { - "line": 4, - "column": 13 - }, - "end": { - "line": 4, - "column": 14 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 128, - "end": 129, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 129, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 16 - }, - "end": { - "line": 4, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 131, - "end": 132, - "loc": { - "start": { - "line": 4, - "column": 18 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 133, - "end": 134, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 135, - "end": 140, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 140, - "end": 141, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 141, - "end": 147, - "loc": { - "start": { - "line": 4, - "column": 28 - }, - "end": { - "line": 4, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 147, - "end": 148, - "loc": { - "start": { - "line": 4, - "column": 34 - }, - "end": { - "line": 4, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 149, - "end": 150, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 37 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 150, - "end": 152, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 152, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 39 - }, - "end": { - "line": 4, - "column": 40 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 154, - "end": 155, - "loc": { - "start": { - "line": 4, - "column": 41 - }, - "end": { - "line": 4, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 160, - "end": 165, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 9 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 165, - "end": 166, - "loc": { - "start": { - "line": 5, - "column": 9 - }, - "end": { - "line": 5, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 166, - "end": 167, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 168, - "end": 169, - "loc": { - "start": { - "line": 5, - "column": 12 - }, - "end": { - "line": 5, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 169, - "end": 171, - "loc": { - "start": { - "line": 5, - "column": 13 - }, - "end": { - "line": 5, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 172, - "end": 173, - "loc": { - "start": { - "line": 5, - "column": 16 - }, - "end": { - "line": 5, - "column": 17 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "lineNumber", - "start": 174, - "end": 186, - "loc": { - "start": { - "line": 5, - "column": 18 - }, - "end": { - "line": 5, - "column": 30 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 187, - "end": 188, - "loc": { - "start": { - "line": 5, - "column": 31 - }, - "end": { - "line": 5, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 189, - "end": 190, - "loc": { - "start": { - "line": 5, - "column": 33 - }, - "end": { - "line": 5, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 190, - "end": 191, - "loc": { - "start": { - "line": 5, - "column": 34 - }, - "end": { - "line": 5, - "column": 35 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 192, - "end": 193, - "loc": { - "start": { - "line": 5, - "column": 36 - }, - "end": { - "line": 5, - "column": 37 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 194, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 38 - }, - "end": { - "line": 5, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 195, - "end": 196, - "loc": { - "start": { - "line": 5, - "column": 39 - }, - "end": { - "line": 5, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 196, - "end": 197, - "loc": { - "start": { - "line": 5, - "column": 40 - }, - "end": { - "line": 5, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 200, - "end": 201, - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 3 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 205, - "end": 208, - "loc": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 209, - "end": 216, - "loc": { - "start": { - "line": 8, - "column": 6 - }, - "end": { - "line": 8, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 217, - "end": 218, - "loc": { - "start": { - "line": 8, - "column": 14 - }, - "end": { - "line": 8, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 219, - "end": 227, - "loc": { - "start": { - "line": 8, - "column": 16 - }, - "end": { - "line": 8, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 227, - "end": 228, - "loc": { - "start": { - "line": 8, - "column": 24 - }, - "end": { - "line": 8, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 228, - "end": 232, - "loc": { - "start": { - "line": 8, - "column": 25 - }, - "end": { - "line": 8, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 232, - "end": 233, - "loc": { - "start": { - "line": 8, - "column": 29 - }, - "end": { - "line": 8, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "match", - "start": 233, - "end": 238, - "loc": { - "start": { - "line": 8, - "column": 30 - }, - "end": { - "line": 8, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 238, - "end": 239, - "loc": { - "start": { - "line": 8, - "column": 35 - }, - "end": { - "line": 8, - "column": 36 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "errorLines=([\\d,]+)", - "flags": "" - }, - "start": 239, - "end": 260, - "loc": { - "start": { - "line": 8, - "column": 36 - }, - "end": { - "line": 8, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 260, - "end": 261, - "loc": { - "start": { - "line": 8, - "column": 57 - }, - "end": { - "line": 8, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 261, - "end": 262, - "loc": { - "start": { - "line": 8, - "column": 58 - }, - "end": { - "line": 8, - "column": 59 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 265, - "end": 267, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 268, - "end": 269, - "loc": { - "start": { - "line": 9, - "column": 5 - }, - "end": { - "line": 9, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 269, - "end": 276, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 13 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 276, - "end": 277, - "loc": { - "start": { - "line": 9, - "column": 13 - }, - "end": { - "line": 9, - "column": 14 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 278, - "end": 279, - "loc": { - "start": { - "line": 9, - "column": 15 - }, - "end": { - "line": 9, - "column": 16 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 284, - "end": 287, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 288, - "end": 293, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 294, - "end": 295, - "loc": { - "start": { - "line": 10, - "column": 14 - }, - "end": { - "line": 10, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "matched", - "start": 296, - "end": 303, - "loc": { - "start": { - "line": 10, - "column": 16 - }, - "end": { - "line": 10, - "column": 23 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 303, - "end": 304, - "loc": { - "start": { - "line": 10, - "column": 23 - }, - "end": { - "line": 10, - "column": 24 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 304, - "end": 305, - "loc": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 305, - "end": 306, - "loc": { - "start": { - "line": 10, - "column": 25 - }, - "end": { - "line": 10, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 306, - "end": 307, - "loc": { - "start": { - "line": 10, - "column": 26 - }, - "end": { - "line": 10, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "split", - "start": 307, - "end": 312, - "loc": { - "start": { - "line": 10, - "column": 27 - }, - "end": { - "line": 10, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 312, - "end": 313, - "loc": { - "start": { - "line": 10, - "column": 32 - }, - "end": { - "line": 10, - "column": 33 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ",", - "start": 313, - "end": 316, - "loc": { - "start": { - "line": 10, - "column": 33 - }, - "end": { - "line": 10, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 316, - "end": 317, - "loc": { - "start": { - "line": 10, - "column": 36 - }, - "end": { - "line": 10, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 317, - "end": 318, - "loc": { - "start": { - "line": 10, - "column": 37 - }, - "end": { - "line": 10, - "column": 38 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 323, - "end": 326, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 327, - "end": 328, - "loc": { - "start": { - "line": 11, - "column": 8 - }, - "end": { - "line": 11, - "column": 9 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 328, - "end": 331, - "loc": { - "start": { - "line": 11, - "column": 9 - }, - "end": { - "line": 11, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 332, - "end": 333, - "loc": { - "start": { - "line": 11, - "column": 13 - }, - "end": { - "line": 11, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 334, - "end": 335, - "loc": { - "start": { - "line": 11, - "column": 15 - }, - "end": { - "line": 11, - "column": 16 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 336, - "end": 337, - "loc": { - "start": { - "line": 11, - "column": 17 - }, - "end": { - "line": 11, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 337, - "end": 338, - "loc": { - "start": { - "line": 11, - "column": 18 - }, - "end": { - "line": 11, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 339, - "end": 340, - "loc": { - "start": { - "line": 11, - "column": 20 - }, - "end": { - "line": 11, - "column": 21 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 341, - "end": 342, - "loc": { - "start": { - "line": 11, - "column": 22 - }, - "end": { - "line": 11, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 343, - "end": 348, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 348, - "end": 349, - "loc": { - "start": { - "line": 11, - "column": 29 - }, - "end": { - "line": 11, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 349, - "end": 355, - "loc": { - "start": { - "line": 11, - "column": 30 - }, - "end": { - "line": 11, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 355, - "end": 356, - "loc": { - "start": { - "line": 11, - "column": 36 - }, - "end": { - "line": 11, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 357, - "end": 358, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 11, - "column": 39 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 358, - "end": 360, - "loc": { - "start": { - "line": 11, - "column": 39 - }, - "end": { - "line": 11, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 360, - "end": 361, - "loc": { - "start": { - "line": 11, - "column": 41 - }, - "end": { - "line": 11, - "column": 42 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 362, - "end": 363, - "loc": { - "start": { - "line": 11, - "column": 43 - }, - "end": { - "line": 11, - "column": 44 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 370, - "end": 373, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 374, - "end": 376, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 377, - "end": 378, - "loc": { - "start": { - "line": 12, - "column": 13 - }, - "end": { - "line": 12, - "column": 14 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "#lineNumber", - "start": 379, - "end": 392, - "loc": { - "start": { - "line": 12, - "column": 15 - }, - "end": { - "line": 12, - "column": 28 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 393, - "end": 394, - "loc": { - "start": { - "line": 12, - "column": 29 - }, - "end": { - "line": 12, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "lines", - "start": 395, - "end": 400, - "loc": { - "start": { - "line": 12, - "column": 31 - }, - "end": { - "line": 12, - "column": 36 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 400, - "end": 401, - "loc": { - "start": { - "line": 12, - "column": 36 - }, - "end": { - "line": 12, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 401, - "end": 402, - "loc": { - "start": { - "line": 12, - "column": 37 - }, - "end": { - "line": 12, - "column": 38 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 402, - "end": 403, - "loc": { - "start": { - "line": 12, - "column": 38 - }, - "end": { - "line": 12, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 403, - "end": 404, - "loc": { - "start": { - "line": 12, - "column": 39 - }, - "end": { - "line": 12, - "column": 40 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 411, - "end": 414, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 415, - "end": 417, - "loc": { - "start": { - "line": 13, - "column": 10 - }, - "end": { - "line": 13, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 418, - "end": 419, - "loc": { - "start": { - "line": 13, - "column": 13 - }, - "end": { - "line": 13, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 420, - "end": 428, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 428, - "end": 429, - "loc": { - "start": { - "line": 13, - "column": 23 - }, - "end": { - "line": 13, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 429, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 24 - }, - "end": { - "line": 13, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 442, - "end": 443, - "loc": { - "start": { - "line": 13, - "column": 37 - }, - "end": { - "line": 13, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 443, - "end": 445, - "loc": { - "start": { - "line": 13, - "column": 38 - }, - "end": { - "line": 13, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 445, - "end": 446, - "loc": { - "start": { - "line": 13, - "column": 40 - }, - "end": { - "line": 13, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 446, - "end": 447, - "loc": { - "start": { - "line": 13, - "column": 41 - }, - "end": { - "line": 13, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "el", - "start": 454, - "end": 456, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 456, - "end": 457, - "loc": { - "start": { - "line": 14, - "column": 8 - }, - "end": { - "line": 14, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 457, - "end": 466, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 466, - "end": 467, - "loc": { - "start": { - "line": 14, - "column": 18 - }, - "end": { - "line": 14, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 467, - "end": 470, - "loc": { - "start": { - "line": 14, - "column": 19 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 470, - "end": 471, - "loc": { - "start": { - "line": 14, - "column": 22 - }, - "end": { - "line": 14, - "column": 23 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "error-line", - "start": 471, - "end": 483, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 483, - "end": 484, - "loc": { - "start": { - "line": 14, - "column": 35 - }, - "end": { - "line": 14, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 484, - "end": 485, - "loc": { - "start": { - "line": 14, - "column": 36 - }, - "end": { - "line": 14, - "column": 37 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 490, - "end": 491, - "loc": { - "start": { - "line": 15, - "column": 4 - }, - "end": { - "line": 15, - "column": 5 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 496, - "end": 502, - "loc": { - "start": { - "line": 16, - "column": 4 - }, - "end": { - "line": 16, - "column": 10 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 502, - "end": 503, - "loc": { - "start": { - "line": 16, - "column": 10 - }, - "end": { - "line": 16, - "column": 11 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 506, - "end": 507, - "loc": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 3 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 511, - "end": 513, - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 514, - "end": 515, - "loc": { - "start": { - "line": 19, - "column": 5 - }, - "end": { - "line": 19, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 515, - "end": 523, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 523, - "end": 524, - "loc": { - "start": { - "line": 19, - "column": 14 - }, - "end": { - "line": 19, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 524, - "end": 528, - "loc": { - "start": { - "line": 19, - "column": 15 - }, - "end": { - "line": 19, - "column": 19 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 528, - "end": 529, - "loc": { - "start": { - "line": 19, - "column": 19 - }, - "end": { - "line": 19, - "column": 20 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 530, - "end": 531, - "loc": { - "start": { - "line": 19, - "column": 21 - }, - "end": { - "line": 19, - "column": 22 - } - } - }, - { - "type": "CommentLine", - "value": " ``[ ] . ' \" @`` are not valid in DOM id. so must escape these.", - "start": 536, - "end": 601, - "loc": { - "start": { - "line": 20, - "column": 4 - }, - "end": { - "line": 20, - "column": 69 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 606, - "end": 609, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 610, - "end": 612, - "loc": { - "start": { - "line": 21, - "column": 8 - }, - "end": { - "line": 21, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 613, - "end": 614, - "loc": { - "start": { - "line": 21, - "column": 11 - }, - "end": { - "line": 21, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 615, - "end": 623, - "loc": { - "start": { - "line": 21, - "column": 13 - }, - "end": { - "line": 21, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 623, - "end": 624, - "loc": { - "start": { - "line": 21, - "column": 21 - }, - "end": { - "line": 21, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "hash", - "start": 624, - "end": 628, - "loc": { - "start": { - "line": 21, - "column": 22 - }, - "end": { - "line": 21, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 628, - "end": 629, - "loc": { - "start": { - "line": 21, - "column": 26 - }, - "end": { - "line": 21, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "replace", - "start": 629, - "end": 636, - "loc": { - "start": { - "line": 21, - "column": 27 - }, - "end": { - "line": 21, - "column": 34 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 636, - "end": 637, - "loc": { - "start": { - "line": 21, - "column": 34 - }, - "end": { - "line": 21, - "column": 35 - } - } - }, - { - "type": { - "label": "regexp", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": { - "pattern": "([\\[\\].'\"@$])", - "flags": "g" - }, - "start": 637, - "end": 653, - "loc": { - "start": { - "line": 21, - "column": 35 - }, - "end": { - "line": 21, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 653, - "end": 654, - "loc": { - "start": { - "line": 21, - "column": 51 - }, - "end": { - "line": 21, - "column": 52 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\\$1", - "start": 655, - "end": 661, - "loc": { - "start": { - "line": 21, - "column": 53 - }, - "end": { - "line": 21, - "column": 59 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 661, - "end": 662, - "loc": { - "start": { - "line": 21, - "column": 59 - }, - "end": { - "line": 21, - "column": 60 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 662, - "end": 663, - "loc": { - "start": { - "line": 21, - "column": 60 - }, - "end": { - "line": 21, - "column": 61 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 668, - "end": 671, - "loc": { - "start": { - "line": 22, - "column": 4 - }, - "end": { - "line": 22, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "line", - "start": 672, - "end": 676, - "loc": { - "start": { - "line": 22, - "column": 8 - }, - "end": { - "line": 22, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 677, - "end": 678, - "loc": { - "start": { - "line": 22, - "column": 13 - }, - "end": { - "line": 22, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 679, - "end": 687, - "loc": { - "start": { - "line": 22, - "column": 15 - }, - "end": { - "line": 22, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 687, - "end": 688, - "loc": { - "start": { - "line": 22, - "column": 23 - }, - "end": { - "line": 22, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 688, - "end": 701, - "loc": { - "start": { - "line": 22, - "column": 24 - }, - "end": { - "line": 22, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 701, - "end": 702, - "loc": { - "start": { - "line": 22, - "column": 37 - }, - "end": { - "line": 22, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 702, - "end": 704, - "loc": { - "start": { - "line": 22, - "column": 38 - }, - "end": { - "line": 22, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 704, - "end": 705, - "loc": { - "start": { - "line": 22, - "column": 40 - }, - "end": { - "line": 22, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 705, - "end": 706, - "loc": { - "start": { - "line": 22, - "column": 41 - }, - "end": { - "line": 22, - "column": 42 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 711, - "end": 713, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 714, - "end": 715, - "loc": { - "start": { - "line": 23, - "column": 7 - }, - "end": { - "line": 23, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "line", - "start": 715, - "end": 719, - "loc": { - "start": { - "line": 23, - "column": 8 - }, - "end": { - "line": 23, - "column": 12 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 719, - "end": 720, - "loc": { - "start": { - "line": 23, - "column": 12 - }, - "end": { - "line": 23, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "line", - "start": 721, - "end": 725, - "loc": { - "start": { - "line": 23, - "column": 14 - }, - "end": { - "line": 23, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 23, - "column": 18 - }, - "end": { - "line": 23, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 726, - "end": 735, - "loc": { - "start": { - "line": 23, - "column": 19 - }, - "end": { - "line": 23, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 735, - "end": 736, - "loc": { - "start": { - "line": 23, - "column": 28 - }, - "end": { - "line": 23, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 736, - "end": 739, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 739, - "end": 740, - "loc": { - "start": { - "line": 23, - "column": 32 - }, - "end": { - "line": 23, - "column": 33 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "active", - "start": 740, - "end": 748, - "loc": { - "start": { - "line": 23, - "column": 33 - }, - "end": { - "line": 23, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 748, - "end": 749, - "loc": { - "start": { - "line": 23, - "column": 41 - }, - "end": { - "line": 23, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 749, - "end": 750, - "loc": { - "start": { - "line": 23, - "column": 42 - }, - "end": { - "line": 23, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 753, - "end": 754, - "loc": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 24, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 755, - "end": 756, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 756, - "end": 757, - "loc": { - "start": { - "line": 25, - "column": 1 - }, - "end": { - "line": 25, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 757, - "end": 758, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 25, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 758, - "end": 759, - "loc": { - "start": { - "line": 25, - "column": 3 - }, - "end": { - "line": 25, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 759, - "end": 760, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 760, - "end": 760, - "loc": { - "start": { - "line": 25, - "column": 5 - }, - "end": { - "line": 25, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/search.js.json b/docs/ast/source/doc/script/search.js.json deleted file mode 100644 index f7f7ca6f..00000000 --- a/docs/ast/source/doc/script/search.js.json +++ /dev/null @@ -1,29621 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 3553, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 116, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 3553, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 116, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 3553, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 116, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 3552, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 116, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 3549, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 116, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 3549, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 116, - "column": 1 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 17, - "end": 59, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 44 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 21, - "end": 58, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 43 - } - }, - "id": { - "type": "Identifier", - "start": 21, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 17 - }, - "identifierName": "searchIndex" - }, - "name": "searchIndex" - }, - "init": { - "type": "MemberExpression", - "start": 35, - "end": 58, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 43 - } - }, - "object": { - "type": "Identifier", - "start": 35, - "end": 41, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 26 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 42, - "end": 58, - "loc": { - "start": { - "line": 2, - "column": 27 - }, - "end": { - "line": 2, - "column": 43 - }, - "identifierName": "esdocSearchIndex" - }, - "name": "esdocSearchIndex" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 62, - "end": 116, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 56 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 66, - "end": 115, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 55 - } - }, - "id": { - "type": "Identifier", - "start": 66, - "end": 75, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 15 - }, - "identifierName": "searchBox" - }, - "name": "searchBox" - }, - "init": { - "type": "CallExpression", - "start": 78, - "end": 115, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 55 - } - }, - "callee": { - "type": "MemberExpression", - "start": 78, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 78, - "end": 86, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 26 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 87, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 27 - }, - "end": { - "line": 3, - "column": 40 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 101, - "end": 114, - "loc": { - "start": { - "line": 3, - "column": 41 - }, - "end": { - "line": 3, - "column": 54 - } - }, - "extra": { - "rawValue": ".search-box", - "raw": "'.search-box'" - }, - "value": ".search-box" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 119, - "end": 171, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 54 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 123, - "end": 170, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 53 - } - }, - "id": { - "type": "Identifier", - "start": 123, - "end": 128, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 11 - }, - "identifierName": "input" - }, - "name": "input" - }, - "init": { - "type": "CallExpression", - "start": 131, - "end": 170, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 53 - } - }, - "callee": { - "type": "MemberExpression", - "start": 131, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 131, - "end": 139, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 22 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 140, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 23 - }, - "end": { - "line": 4, - "column": 36 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 154, - "end": 169, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 52 - } - }, - "extra": { - "rawValue": ".search-input", - "raw": "'.search-input'" - }, - "value": ".search-input" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 174, - "end": 228, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 56 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 178, - "end": 227, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 55 - } - }, - "id": { - "type": "Identifier", - "start": 178, - "end": 184, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 12 - }, - "identifierName": "result" - }, - "name": "result" - }, - "init": { - "type": "CallExpression", - "start": 187, - "end": 227, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 55 - } - }, - "callee": { - "type": "MemberExpression", - "start": 187, - "end": 209, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 37 - } - }, - "object": { - "type": "Identifier", - "start": 187, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 23 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 196, - "end": 209, - "loc": { - "start": { - "line": 5, - "column": 24 - }, - "end": { - "line": 5, - "column": 37 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 210, - "end": 226, - "loc": { - "start": { - "line": 5, - "column": 38 - }, - "end": { - "line": 5, - "column": 54 - } - }, - "extra": { - "rawValue": ".search-result", - "raw": "'.search-result'" - }, - "value": ".search-result" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 231, - "end": 254, - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 25 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 235, - "end": 253, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 24 - } - }, - "id": { - "type": "Identifier", - "start": 235, - "end": 248, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 19 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "init": { - "type": "UnaryExpression", - "start": 251, - "end": 253, - "loc": { - "start": { - "line": 6, - "column": 22 - }, - "end": { - "line": 6, - "column": 24 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 252, - "end": 253, - "loc": { - "start": { - "line": 6, - "column": 23 - }, - "end": { - "line": 6, - "column": 24 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 257, - "end": 270, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 15 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 261, - "end": 269, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 14 - } - }, - "id": { - "type": "Identifier", - "start": 261, - "end": 269, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 14 - }, - "identifierName": "prevText" - }, - "name": "prevText" - }, - "init": null - } - ], - "kind": "var", - "trailingComments": [ - { - "type": "CommentLine", - "value": " active search box and focus when mouse enter on search box.", - "start": 274, - "end": 336, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 64 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 339, - "end": 457, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 13, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 339, - "end": 456, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "callee": { - "type": "MemberExpression", - "start": 339, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 339, - "end": 348, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 11 - }, - "identifierName": "searchBox" - }, - "name": "searchBox", - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 349, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 28 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false, - "leadingComments": null - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 366, - "end": 378, - "loc": { - "start": { - "line": 10, - "column": 29 - }, - "end": { - "line": 10, - "column": 41 - } - }, - "extra": { - "rawValue": "mouseenter", - "raw": "'mouseenter'" - }, - "value": "mouseenter" - }, - { - "type": "FunctionExpression", - "start": 380, - "end": 455, - "loc": { - "start": { - "line": 10, - "column": 43 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 392, - "end": 455, - "loc": { - "start": { - "line": 10, - "column": 55 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 398, - "end": 432, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 38 - } - }, - "expression": { - "type": "CallExpression", - "start": 398, - "end": 431, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 37 - } - }, - "callee": { - "type": "MemberExpression", - "start": 398, - "end": 421, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 27 - } - }, - "object": { - "type": "MemberExpression", - "start": 398, - "end": 417, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 23 - } - }, - "object": { - "type": "Identifier", - "start": 398, - "end": 407, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 13 - }, - "identifierName": "searchBox" - }, - "name": "searchBox" - }, - "property": { - "type": "Identifier", - "start": 408, - "end": 417, - "loc": { - "start": { - "line": 11, - "column": 14 - }, - "end": { - "line": 11, - "column": 23 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 418, - "end": 421, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 27 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 422, - "end": 430, - "loc": { - "start": { - "line": 11, - "column": 28 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "extra": { - "rawValue": "active", - "raw": "'active'" - }, - "value": "active" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 437, - "end": 451, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 18 - } - }, - "expression": { - "type": "CallExpression", - "start": 437, - "end": 450, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 17 - } - }, - "callee": { - "type": "MemberExpression", - "start": 437, - "end": 448, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 15 - } - }, - "object": { - "type": "Identifier", - "start": 437, - "end": 442, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 9 - }, - "identifierName": "input" - }, - "name": "input" - }, - "property": { - "type": "Identifier", - "start": 443, - "end": 448, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 15 - }, - "identifierName": "focus" - }, - "name": "focus" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - } - } - ], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " active search box and focus when mouse enter on search box.", - "start": 274, - "end": 336, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 64 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " search with text when key is upped.", - "start": 461, - "end": 499, - "loc": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 40 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 502, - "end": 1502, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 502, - "end": 1501, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 47, - "column": 4 - } - }, - "callee": { - "type": "MemberExpression", - "start": 502, - "end": 524, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 502, - "end": 507, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 7 - }, - "identifierName": "input" - }, - "name": "input", - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 508, - "end": 524, - "loc": { - "start": { - "line": 16, - "column": 8 - }, - "end": { - "line": 16, - "column": 24 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false, - "leadingComments": null - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 525, - "end": 532, - "loc": { - "start": { - "line": 16, - "column": 25 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "extra": { - "rawValue": "keyup", - "raw": "'keyup'" - }, - "value": "keyup" - }, - { - "type": "FunctionExpression", - "start": 534, - "end": 1500, - "loc": { - "start": { - "line": 16, - "column": 34 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 544, - "end": 546, - "loc": { - "start": { - "line": 16, - "column": 44 - }, - "end": { - "line": 16, - "column": 46 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 548, - "end": 1500, - "loc": { - "start": { - "line": 16, - "column": 48 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 554, - "end": 595, - "loc": { - "start": { - "line": 17, - "column": 4 - }, - "end": { - "line": 17, - "column": 45 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 558, - "end": 594, - "loc": { - "start": { - "line": 17, - "column": 8 - }, - "end": { - "line": 17, - "column": 44 - } - }, - "id": { - "type": "Identifier", - "start": 558, - "end": 562, - "loc": { - "start": { - "line": 17, - "column": 8 - }, - "end": { - "line": 17, - "column": 12 - }, - "identifierName": "text" - }, - "name": "text" - }, - "init": { - "type": "CallExpression", - "start": 565, - "end": 594, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 44 - } - }, - "callee": { - "type": "MemberExpression", - "start": 565, - "end": 592, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 42 - } - }, - "object": { - "type": "MemberExpression", - "start": 565, - "end": 580, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "object": { - "type": "MemberExpression", - "start": 565, - "end": 574, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 565, - "end": 567, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 17 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 568, - "end": 574, - "loc": { - "start": { - "line": 17, - "column": 18 - }, - "end": { - "line": 17, - "column": 24 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 575, - "end": 580, - "loc": { - "start": { - "line": 17, - "column": 25 - }, - "end": { - "line": 17, - "column": 30 - }, - "identifierName": "value" - }, - "name": "value" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 581, - "end": 592, - "loc": { - "start": { - "line": 17, - "column": 31 - }, - "end": { - "line": 17, - "column": 42 - }, - "identifierName": "toLowerCase" - }, - "name": "toLowerCase" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 600, - "end": 698, - "loc": { - "start": { - "line": 18, - "column": 4 - }, - "end": { - "line": 22, - "column": 5 - } - }, - "test": { - "type": "UnaryExpression", - "start": 604, - "end": 609, - "loc": { - "start": { - "line": 18, - "column": 8 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 605, - "end": 609, - "loc": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 13 - }, - "identifierName": "text" - }, - "name": "text" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 611, - "end": 698, - "loc": { - "start": { - "line": 18, - "column": 15 - }, - "end": { - "line": 22, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 619, - "end": 649, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 36 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 619, - "end": 648, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 35 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 619, - "end": 639, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 26 - } - }, - "object": { - "type": "MemberExpression", - "start": 619, - "end": 631, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 619, - "end": 625, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 626, - "end": 631, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 18 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 632, - "end": 639, - "loc": { - "start": { - "line": 19, - "column": 19 - }, - "end": { - "line": 19, - "column": 26 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 642, - "end": 648, - "loc": { - "start": { - "line": 19, - "column": 29 - }, - "end": { - "line": 19, - "column": 35 - } - }, - "extra": { - "rawValue": "none", - "raw": "'none'" - }, - "value": "none" - } - } - }, - { - "type": "ExpressionStatement", - "start": 656, - "end": 678, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 656, - "end": 677, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 656, - "end": 672, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 656, - "end": 662, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 12 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 663, - "end": 672, - "loc": { - "start": { - "line": 20, - "column": 13 - }, - "end": { - "line": 20, - "column": 22 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 675, - "end": 677, - "loc": { - "start": { - "line": 20, - "column": 25 - }, - "end": { - "line": 20, - "column": 27 - } - }, - "extra": { - "rawValue": "", - "raw": "''" - }, - "value": "" - } - } - }, - { - "type": "ReturnStatement", - "start": 685, - "end": 692, - "loc": { - "start": { - "line": 21, - "column": 6 - }, - "end": { - "line": 21, - "column": 13 - } - }, - "argument": null - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 704, - "end": 734, - "loc": { - "start": { - "line": 24, - "column": 4 - }, - "end": { - "line": 24, - "column": 34 - } - }, - "test": { - "type": "BinaryExpression", - "start": 708, - "end": 725, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 25 - } - }, - "left": { - "type": "Identifier", - "start": 708, - "end": 712, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 12 - }, - "identifierName": "text" - }, - "name": "text" - }, - "operator": "===", - "right": { - "type": "Identifier", - "start": 717, - "end": 725, - "loc": { - "start": { - "line": 24, - "column": 17 - }, - "end": { - "line": 24, - "column": 25 - }, - "identifierName": "prevText" - }, - "name": "prevText" - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 727, - "end": 734, - "loc": { - "start": { - "line": 24, - "column": 27 - }, - "end": { - "line": 24, - "column": 34 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 739, - "end": 755, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 20 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 739, - "end": 754, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 19 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 739, - "end": 747, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 12 - }, - "identifierName": "prevText" - }, - "name": "prevText" - }, - "right": { - "type": "Identifier", - "start": 750, - "end": 754, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 19 - }, - "identifierName": "text" - }, - "name": "text" - } - } - }, - { - "type": "VariableDeclaration", - "start": 761, - "end": 899, - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 27, - "column": 142 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 765, - "end": 898, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 27, - "column": 141 - } - }, - "id": { - "type": "Identifier", - "start": 765, - "end": 769, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 27, - "column": 12 - }, - "identifierName": "html" - }, - "name": "html" - }, - "init": { - "type": "ObjectExpression", - "start": 772, - "end": 898, - "loc": { - "start": { - "line": 27, - "column": 15 - }, - "end": { - "line": 27, - "column": 141 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 774, - "end": 783, - "loc": { - "start": { - "line": 27, - "column": 17 - }, - "end": { - "line": 27, - "column": 26 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 774, - "end": 779, - "loc": { - "start": { - "line": 27, - "column": 17 - }, - "end": { - "line": 27, - "column": 22 - }, - "identifierName": "class" - }, - "name": "class" - }, - "value": { - "type": "ArrayExpression", - "start": 781, - "end": 783, - "loc": { - "start": { - "line": 27, - "column": 24 - }, - "end": { - "line": 27, - "column": 26 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 785, - "end": 795, - "loc": { - "start": { - "line": 27, - "column": 28 - }, - "end": { - "line": 27, - "column": 38 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 785, - "end": 791, - "loc": { - "start": { - "line": 27, - "column": 28 - }, - "end": { - "line": 27, - "column": 34 - }, - "identifierName": "method" - }, - "name": "method" - }, - "value": { - "type": "ArrayExpression", - "start": 793, - "end": 795, - "loc": { - "start": { - "line": 27, - "column": 36 - }, - "end": { - "line": 27, - "column": 38 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 797, - "end": 807, - "loc": { - "start": { - "line": 27, - "column": 40 - }, - "end": { - "line": 27, - "column": 50 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 797, - "end": 803, - "loc": { - "start": { - "line": 27, - "column": 40 - }, - "end": { - "line": 27, - "column": 46 - }, - "identifierName": "member" - }, - "name": "member" - }, - "value": { - "type": "ArrayExpression", - "start": 805, - "end": 807, - "loc": { - "start": { - "line": 27, - "column": 48 - }, - "end": { - "line": 27, - "column": 50 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 809, - "end": 821, - "loc": { - "start": { - "line": 27, - "column": 52 - }, - "end": { - "line": 27, - "column": 64 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 809, - "end": 817, - "loc": { - "start": { - "line": 27, - "column": 52 - }, - "end": { - "line": 27, - "column": 60 - }, - "identifierName": "function" - }, - "name": "function" - }, - "value": { - "type": "ArrayExpression", - "start": 819, - "end": 821, - "loc": { - "start": { - "line": 27, - "column": 62 - }, - "end": { - "line": 27, - "column": 64 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 823, - "end": 835, - "loc": { - "start": { - "line": 27, - "column": 66 - }, - "end": { - "line": 27, - "column": 78 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 823, - "end": 831, - "loc": { - "start": { - "line": 27, - "column": 66 - }, - "end": { - "line": 27, - "column": 74 - }, - "identifierName": "variable" - }, - "name": "variable" - }, - "value": { - "type": "ArrayExpression", - "start": 833, - "end": 835, - "loc": { - "start": { - "line": 27, - "column": 76 - }, - "end": { - "line": 27, - "column": 78 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 837, - "end": 848, - "loc": { - "start": { - "line": 27, - "column": 80 - }, - "end": { - "line": 27, - "column": 91 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 837, - "end": 844, - "loc": { - "start": { - "line": 27, - "column": 80 - }, - "end": { - "line": 27, - "column": 87 - }, - "identifierName": "typedef" - }, - "name": "typedef" - }, - "value": { - "type": "ArrayExpression", - "start": 846, - "end": 848, - "loc": { - "start": { - "line": 27, - "column": 89 - }, - "end": { - "line": 27, - "column": 91 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 850, - "end": 862, - "loc": { - "start": { - "line": 27, - "column": 93 - }, - "end": { - "line": 27, - "column": 105 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 850, - "end": 858, - "loc": { - "start": { - "line": 27, - "column": 93 - }, - "end": { - "line": 27, - "column": 101 - }, - "identifierName": "external" - }, - "name": "external" - }, - "value": { - "type": "ArrayExpression", - "start": 860, - "end": 862, - "loc": { - "start": { - "line": 27, - "column": 103 - }, - "end": { - "line": 27, - "column": 105 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 864, - "end": 872, - "loc": { - "start": { - "line": 27, - "column": 107 - }, - "end": { - "line": 27, - "column": 115 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 864, - "end": 868, - "loc": { - "start": { - "line": 27, - "column": 107 - }, - "end": { - "line": 27, - "column": 111 - }, - "identifierName": "file" - }, - "name": "file" - }, - "value": { - "type": "ArrayExpression", - "start": 870, - "end": 872, - "loc": { - "start": { - "line": 27, - "column": 113 - }, - "end": { - "line": 27, - "column": 115 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 874, - "end": 882, - "loc": { - "start": { - "line": 27, - "column": 117 - }, - "end": { - "line": 27, - "column": 125 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 874, - "end": 878, - "loc": { - "start": { - "line": 27, - "column": 117 - }, - "end": { - "line": 27, - "column": 121 - }, - "identifierName": "test" - }, - "name": "test" - }, - "value": { - "type": "ArrayExpression", - "start": 880, - "end": 882, - "loc": { - "start": { - "line": 27, - "column": 123 - }, - "end": { - "line": 27, - "column": 125 - } - }, - "elements": [] - } - }, - { - "type": "ObjectProperty", - "start": 884, - "end": 896, - "loc": { - "start": { - "line": 27, - "column": 127 - }, - "end": { - "line": 27, - "column": 139 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 884, - "end": 892, - "loc": { - "start": { - "line": 27, - "column": 127 - }, - "end": { - "line": 27, - "column": 135 - }, - "identifierName": "testFile" - }, - "name": "testFile" - }, - "value": { - "type": "ArrayExpression", - "start": 894, - "end": 896, - "loc": { - "start": { - "line": 27, - "column": 137 - }, - "end": { - "line": 27, - "column": 139 - } - }, - "elements": [] - } - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 904, - "end": 933, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 33 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 908, - "end": 932, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "id": { - "type": "Identifier", - "start": 908, - "end": 911, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 11 - }, - "identifierName": "len" - }, - "name": "len" - }, - "init": { - "type": "MemberExpression", - "start": 914, - "end": 932, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "object": { - "type": "Identifier", - "start": 914, - "end": 925, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 25 - }, - "identifierName": "searchIndex" - }, - "name": "searchIndex" - }, - "property": { - "type": "Identifier", - "start": 926, - "end": 932, - "loc": { - "start": { - "line": 28, - "column": 26 - }, - "end": { - "line": 28, - "column": 32 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 938, - "end": 947, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 13 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 942, - "end": 946, - "loc": { - "start": { - "line": 29, - "column": 8 - }, - "end": { - "line": 29, - "column": 12 - } - }, - "id": { - "type": "Identifier", - "start": 942, - "end": 946, - "loc": { - "start": { - "line": 29, - "column": 8 - }, - "end": { - "line": 29, - "column": 12 - }, - "identifierName": "kind" - }, - "name": "kind" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 952, - "end": 1179, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 36, - "column": 5 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 957, - "end": 966, - "loc": { - "start": { - "line": 30, - "column": 9 - }, - "end": { - "line": 30, - "column": 18 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 961, - "end": 966, - "loc": { - "start": { - "line": 30, - "column": 13 - }, - "end": { - "line": 30, - "column": 18 - } - }, - "id": { - "type": "Identifier", - "start": 961, - "end": 962, - "loc": { - "start": { - "line": 30, - "column": 13 - }, - "end": { - "line": 30, - "column": 14 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 965, - "end": 966, - "loc": { - "start": { - "line": 30, - "column": 17 - }, - "end": { - "line": 30, - "column": 18 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 968, - "end": 975, - "loc": { - "start": { - "line": 30, - "column": 20 - }, - "end": { - "line": 30, - "column": 27 - } - }, - "left": { - "type": "Identifier", - "start": 968, - "end": 969, - "loc": { - "start": { - "line": 30, - "column": 20 - }, - "end": { - "line": 30, - "column": 21 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "Identifier", - "start": 972, - "end": 975, - "loc": { - "start": { - "line": 30, - "column": 24 - }, - "end": { - "line": 30, - "column": 27 - }, - "identifierName": "len" - }, - "name": "len" - } - }, - "update": { - "type": "UpdateExpression", - "start": 977, - "end": 980, - "loc": { - "start": { - "line": 30, - "column": 29 - }, - "end": { - "line": 30, - "column": 32 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 977, - "end": 978, - "loc": { - "start": { - "line": 30, - "column": 29 - }, - "end": { - "line": 30, - "column": 30 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 982, - "end": 1179, - "loc": { - "start": { - "line": 30, - "column": 34 - }, - "end": { - "line": 36, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 990, - "end": 1016, - "loc": { - "start": { - "line": 31, - "column": 6 - }, - "end": { - "line": 31, - "column": 32 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 994, - "end": 1015, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 31 - } - }, - "id": { - "type": "Identifier", - "start": 994, - "end": 998, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 14 - }, - "identifierName": "pair" - }, - "name": "pair" - }, - "init": { - "type": "MemberExpression", - "start": 1001, - "end": 1015, - "loc": { - "start": { - "line": 31, - "column": 17 - }, - "end": { - "line": 31, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 1001, - "end": 1012, - "loc": { - "start": { - "line": 31, - "column": 17 - }, - "end": { - "line": 31, - "column": 28 - }, - "identifierName": "searchIndex" - }, - "name": "searchIndex" - }, - "property": { - "type": "Identifier", - "start": 1013, - "end": 1014, - "loc": { - "start": { - "line": 31, - "column": 29 - }, - "end": { - "line": 31, - "column": 30 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 1023, - "end": 1173, - "loc": { - "start": { - "line": 32, - "column": 6 - }, - "end": { - "line": 35, - "column": 7 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1027, - "end": 1055, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 38 - } - }, - "left": { - "type": "CallExpression", - "start": 1027, - "end": 1048, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 31 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1027, - "end": 1042, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "object": { - "type": "MemberExpression", - "start": 1027, - "end": 1034, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 17 - } - }, - "object": { - "type": "Identifier", - "start": 1027, - "end": 1031, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 14 - }, - "identifierName": "pair" - }, - "name": "pair" - }, - "property": { - "type": "NumericLiteral", - "start": 1032, - "end": 1033, - "loc": { - "start": { - "line": 32, - "column": 15 - }, - "end": { - "line": 32, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 1035, - "end": 1042, - "loc": { - "start": { - "line": 32, - "column": 18 - }, - "end": { - "line": 32, - "column": 25 - }, - "identifierName": "indexOf" - }, - "name": "indexOf" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 1043, - "end": 1047, - "loc": { - "start": { - "line": 32, - "column": 26 - }, - "end": { - "line": 32, - "column": 30 - }, - "identifierName": "text" - }, - "name": "text" - } - ] - }, - "operator": "!==", - "right": { - "type": "UnaryExpression", - "start": 1053, - "end": 1055, - "loc": { - "start": { - "line": 32, - "column": 36 - }, - "end": { - "line": 32, - "column": 38 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1054, - "end": 1055, - "loc": { - "start": { - "line": 32, - "column": 37 - }, - "end": { - "line": 32, - "column": 38 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - }, - "consequent": { - "type": "BlockStatement", - "start": 1057, - "end": 1173, - "loc": { - "start": { - "line": 32, - "column": 40 - }, - "end": { - "line": 35, - "column": 7 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1067, - "end": 1082, - "loc": { - "start": { - "line": 33, - "column": 8 - }, - "end": { - "line": 33, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1067, - "end": 1081, - "loc": { - "start": { - "line": 33, - "column": 8 - }, - "end": { - "line": 33, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1067, - "end": 1071, - "loc": { - "start": { - "line": 33, - "column": 8 - }, - "end": { - "line": 33, - "column": 12 - }, - "identifierName": "kind" - }, - "name": "kind" - }, - "right": { - "type": "MemberExpression", - "start": 1074, - "end": 1081, - "loc": { - "start": { - "line": 33, - "column": 15 - }, - "end": { - "line": 33, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 1074, - "end": 1078, - "loc": { - "start": { - "line": 33, - "column": 15 - }, - "end": { - "line": 33, - "column": 19 - }, - "identifierName": "pair" - }, - "name": "pair" - }, - "property": { - "type": "NumericLiteral", - "start": 1079, - "end": 1080, - "loc": { - "start": { - "line": 33, - "column": 20 - }, - "end": { - "line": 33, - "column": 21 - } - }, - "extra": { - "rawValue": 3, - "raw": "3" - }, - "value": 3 - }, - "computed": true - } - } - }, - { - "type": "ExpressionStatement", - "start": 1091, - "end": 1165, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 82 - } - }, - "expression": { - "type": "CallExpression", - "start": 1091, - "end": 1164, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 81 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1091, - "end": 1106, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 23 - } - }, - "object": { - "type": "MemberExpression", - "start": 1091, - "end": 1101, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 1091, - "end": 1095, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 12 - }, - "identifierName": "html" - }, - "name": "html" - }, - "property": { - "type": "Identifier", - "start": 1096, - "end": 1100, - "loc": { - "start": { - "line": 34, - "column": 13 - }, - "end": { - "line": 34, - "column": 17 - }, - "identifierName": "kind" - }, - "name": "kind" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 1102, - "end": 1106, - "loc": { - "start": { - "line": 34, - "column": 19 - }, - "end": { - "line": 34, - "column": 23 - }, - "identifierName": "push" - }, - "name": "push" - }, - "computed": false - }, - "arguments": [ - { - "type": "BinaryExpression", - "start": 1107, - "end": 1163, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 80 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1107, - "end": 1149, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 66 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1107, - "end": 1139, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 56 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1107, - "end": 1132, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 49 - } - }, - "left": { - "type": "StringLiteral", - "start": 1107, - "end": 1122, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "extra": { - "rawValue": "
  • ", - "raw": "'\">'" - }, - "value": "\">" - } - }, - "operator": "+", - "right": { - "type": "MemberExpression", - "start": 1142, - "end": 1149, - "loc": { - "start": { - "line": 34, - "column": 59 - }, - "end": { - "line": 34, - "column": 66 - } - }, - "object": { - "type": "Identifier", - "start": 1142, - "end": 1146, - "loc": { - "start": { - "line": 34, - "column": 59 - }, - "end": { - "line": 34, - "column": 63 - }, - "identifierName": "pair" - }, - "name": "pair" - }, - "property": { - "type": "NumericLiteral", - "start": 1147, - "end": 1148, - "loc": { - "start": { - "line": 34, - "column": 64 - }, - "end": { - "line": 34, - "column": 65 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - }, - "computed": true - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 1152, - "end": 1163, - "loc": { - "start": { - "line": 34, - "column": 69 - }, - "end": { - "line": 34, - "column": 80 - } - }, - "extra": { - "rawValue": "
  • ", - "raw": "''" - }, - "value": "" - } - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 1185, - "end": 1204, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 23 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1189, - "end": 1203, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 1189, - "end": 1198, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 17 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "init": { - "type": "StringLiteral", - "start": 1201, - "end": 1203, - "loc": { - "start": { - "line": 38, - "column": 20 - }, - "end": { - "line": 38, - "column": 22 - } - }, - "extra": { - "rawValue": "", - "raw": "''" - }, - "value": "" - } - } - ], - "kind": "var" - }, - { - "type": "ForInStatement", - "start": 1209, - "end": 1387, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "left": { - "type": "Identifier", - "start": 1214, - "end": 1218, - "loc": { - "start": { - "line": 39, - "column": 9 - }, - "end": { - "line": 39, - "column": 13 - }, - "identifierName": "kind" - }, - "name": "kind" - }, - "right": { - "type": "Identifier", - "start": 1222, - "end": 1226, - "loc": { - "start": { - "line": 39, - "column": 17 - }, - "end": { - "line": 39, - "column": 21 - }, - "identifierName": "html" - }, - "name": "html" - }, - "body": { - "type": "BlockStatement", - "start": 1228, - "end": 1387, - "loc": { - "start": { - "line": 39, - "column": 23 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 1236, - "end": 1258, - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1240, - "end": 1257, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 27 - } - }, - "id": { - "type": "Identifier", - "start": 1240, - "end": 1244, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 14 - }, - "identifierName": "list" - }, - "name": "list" - }, - "init": { - "type": "MemberExpression", - "start": 1247, - "end": 1257, - "loc": { - "start": { - "line": 40, - "column": 17 - }, - "end": { - "line": 40, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 1247, - "end": 1251, - "loc": { - "start": { - "line": 40, - "column": 17 - }, - "end": { - "line": 40, - "column": 21 - }, - "identifierName": "html" - }, - "name": "html" - }, - "property": { - "type": "Identifier", - "start": 1252, - "end": 1256, - "loc": { - "start": { - "line": 40, - "column": 22 - }, - "end": { - "line": 40, - "column": 26 - }, - "identifierName": "kind" - }, - "name": "kind" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 1265, - "end": 1292, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 33 - } - }, - "test": { - "type": "UnaryExpression", - "start": 1269, - "end": 1281, - "loc": { - "start": { - "line": 41, - "column": 10 - }, - "end": { - "line": 41, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "MemberExpression", - "start": 1270, - "end": 1281, - "loc": { - "start": { - "line": 41, - "column": 11 - }, - "end": { - "line": 41, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 1270, - "end": 1274, - "loc": { - "start": { - "line": 41, - "column": 11 - }, - "end": { - "line": 41, - "column": 15 - }, - "identifierName": "list" - }, - "name": "list" - }, - "property": { - "type": "Identifier", - "start": 1275, - "end": 1281, - "loc": { - "start": { - "line": 41, - "column": 16 - }, - "end": { - "line": 41, - "column": 22 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "ContinueStatement", - "start": 1283, - "end": 1292, - "loc": { - "start": { - "line": 41, - "column": 24 - }, - "end": { - "line": 41, - "column": 33 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 1299, - "end": 1381, - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 42, - "column": 88 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1299, - "end": 1380, - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 42, - "column": 87 - } - }, - "operator": "+=", - "left": { - "type": "Identifier", - "start": 1299, - "end": 1308, - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "right": { - "type": "BinaryExpression", - "start": 1312, - "end": 1380, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 87 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1312, - "end": 1362, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 69 - } - }, - "left": { - "type": "BinaryExpression", - "start": 1312, - "end": 1350, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 57 - } - }, - "left": { - "type": "StringLiteral", - "start": 1312, - "end": 1343, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 50 - } - }, - "extra": { - "rawValue": "
  • ", - "raw": "'
  • '" - }, - "value": "
  • " - }, - "operator": "+", - "right": { - "type": "Identifier", - "start": 1346, - "end": 1350, - "loc": { - "start": { - "line": 42, - "column": 53 - }, - "end": { - "line": 42, - "column": 57 - }, - "identifierName": "kind" - }, - "name": "kind" - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 1353, - "end": 1362, - "loc": { - "start": { - "line": 42, - "column": 60 - }, - "end": { - "line": 42, - "column": 69 - } - }, - "extra": { - "rawValue": "
  • \n", - "raw": "'\\n'" - }, - "value": "\n" - } - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 1365, - "end": 1380, - "loc": { - "start": { - "line": 42, - "column": 72 - }, - "end": { - "line": 42, - "column": 87 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1365, - "end": 1374, - "loc": { - "start": { - "line": 42, - "column": 72 - }, - "end": { - "line": 42, - "column": 81 - } - }, - "object": { - "type": "Identifier", - "start": 1365, - "end": 1369, - "loc": { - "start": { - "line": 42, - "column": 72 - }, - "end": { - "line": 42, - "column": 76 - }, - "identifierName": "list" - }, - "name": "list" - }, - "property": { - "type": "Identifier", - "start": 1370, - "end": 1374, - "loc": { - "start": { - "line": 42, - "column": 77 - }, - "end": { - "line": 42, - "column": 81 - }, - "identifierName": "join" - }, - "name": "join" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1375, - "end": 1379, - "loc": { - "start": { - "line": 42, - "column": 82 - }, - "end": { - "line": 42, - "column": 86 - } - }, - "extra": { - "rawValue": "\n", - "raw": "'\\n'" - }, - "value": "\n" - } - ] - } - } - } - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 1392, - "end": 1421, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 33 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1392, - "end": 1420, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 32 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1392, - "end": 1408, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 1392, - "end": 1398, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 10 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 1399, - "end": 1408, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 20 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 1411, - "end": 1420, - "loc": { - "start": { - "line": 44, - "column": 23 - }, - "end": { - "line": 44, - "column": 32 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - } - } - }, - { - "type": "IfStatement", - "start": 1426, - "end": 1472, - "loc": { - "start": { - "line": 45, - "column": 4 - }, - "end": { - "line": 45, - "column": 50 - } - }, - "test": { - "type": "Identifier", - "start": 1430, - "end": 1439, - "loc": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 17 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 1441, - "end": 1472, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 50 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1441, - "end": 1471, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 49 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1441, - "end": 1461, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 39 - } - }, - "object": { - "type": "MemberExpression", - "start": 1441, - "end": 1453, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 1441, - "end": 1447, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 25 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 1448, - "end": 1453, - "loc": { - "start": { - "line": 45, - "column": 26 - }, - "end": { - "line": 45, - "column": 31 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1454, - "end": 1461, - "loc": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 39 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 1464, - "end": 1471, - "loc": { - "start": { - "line": 45, - "column": 42 - }, - "end": { - "line": 45, - "column": 49 - } - }, - "extra": { - "rawValue": "block", - "raw": "'block'" - }, - "value": "block" - } - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 1477, - "end": 1496, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1477, - "end": 1495, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1477, - "end": 1490, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 17 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "right": { - "type": "UnaryExpression", - "start": 1493, - "end": 1495, - "loc": { - "start": { - "line": 46, - "column": 20 - }, - "end": { - "line": 46, - "column": 22 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 1494, - "end": 1495, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 22 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - } - ], - "directives": [] - } - } - ], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " search with text when key is upped.", - "start": 461, - "end": 499, - "loc": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 40 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " down, up and enter key are pressed, select search result.", - "start": 1506, - "end": 1566, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 49, - "column": 62 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1569, - "end": 2876, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 91, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 1569, - "end": 2875, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 91, - "column": 4 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1569, - "end": 1591, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 1569, - "end": 1574, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 7 - }, - "identifierName": "input" - }, - "name": "input", - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1575, - "end": 1591, - "loc": { - "start": { - "line": 50, - "column": 8 - }, - "end": { - "line": 50, - "column": 24 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false, - "leadingComments": null - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1592, - "end": 1601, - "loc": { - "start": { - "line": 50, - "column": 25 - }, - "end": { - "line": 50, - "column": 34 - } - }, - "extra": { - "rawValue": "keydown", - "raw": "'keydown'" - }, - "value": "keydown" - }, - { - "type": "FunctionExpression", - "start": 1603, - "end": 2874, - "loc": { - "start": { - "line": 50, - "column": 36 - }, - "end": { - "line": 91, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 1613, - "end": 1615, - "loc": { - "start": { - "line": 50, - "column": 46 - }, - "end": { - "line": 50, - "column": 48 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 1617, - "end": 2874, - "loc": { - "start": { - "line": 50, - "column": 50 - }, - "end": { - "line": 91, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 1623, - "end": 2844, - "loc": { - "start": { - "line": 51, - "column": 4 - }, - "end": { - "line": 88, - "column": 5 - } - }, - "test": { - "type": "BinaryExpression", - "start": 1627, - "end": 1644, - "loc": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 25 - } - }, - "left": { - "type": "MemberExpression", - "start": 1627, - "end": 1637, - "loc": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 1627, - "end": 1629, - "loc": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 10 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 1630, - "end": 1637, - "loc": { - "start": { - "line": 51, - "column": 11 - }, - "end": { - "line": 51, - "column": 18 - }, - "identifierName": "keyCode" - }, - "name": "keyCode" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 1642, - "end": 1644, - "loc": { - "start": { - "line": 51, - "column": 23 - }, - "end": { - "line": 51, - "column": 25 - } - }, - "extra": { - "rawValue": 40, - "raw": "40" - }, - "value": 40 - } - }, - "consequent": { - "type": "BlockStatement", - "start": 1646, - "end": 2106, - "loc": { - "start": { - "line": 51, - "column": 27 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 1674, - "end": 1719, - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 53, - "column": 51 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1678, - "end": 1718, - "loc": { - "start": { - "line": 53, - "column": 10 - }, - "end": { - "line": 53, - "column": 50 - } - }, - "id": { - "type": "Identifier", - "start": 1678, - "end": 1685, - "loc": { - "start": { - "line": 53, - "column": 10 - }, - "end": { - "line": 53, - "column": 17 - }, - "identifierName": "current" - }, - "name": "current", - "leadingComments": null - }, - "init": { - "type": "MemberExpression", - "start": 1688, - "end": 1718, - "loc": { - "start": { - "line": 53, - "column": 20 - }, - "end": { - "line": 53, - "column": 50 - } - }, - "object": { - "type": "MemberExpression", - "start": 1688, - "end": 1703, - "loc": { - "start": { - "line": 53, - "column": 20 - }, - "end": { - "line": 53, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 1688, - "end": 1694, - "loc": { - "start": { - "line": 53, - "column": 20 - }, - "end": { - "line": 53, - "column": 26 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 1695, - "end": 1703, - "loc": { - "start": { - "line": 53, - "column": 27 - }, - "end": { - "line": 53, - "column": 35 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1704, - "end": 1717, - "loc": { - "start": { - "line": 53, - "column": 36 - }, - "end": { - "line": 53, - "column": 49 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "computed": true - }, - "leadingComments": null - } - ], - "kind": "var", - "leadingComments": [ - { - "type": "CommentLine", - "value": " arrow down", - "start": 1654, - "end": 1667, - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 52, - "column": 19 - } - } - } - ] - }, - { - "type": "VariableDeclaration", - "start": 1726, - "end": 1776, - "loc": { - "start": { - "line": 54, - "column": 6 - }, - "end": { - "line": 54, - "column": 56 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1730, - "end": 1775, - "loc": { - "start": { - "line": 54, - "column": 10 - }, - "end": { - "line": 54, - "column": 55 - } - }, - "id": { - "type": "Identifier", - "start": 1730, - "end": 1738, - "loc": { - "start": { - "line": 54, - "column": 10 - }, - "end": { - "line": 54, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "init": { - "type": "MemberExpression", - "start": 1741, - "end": 1775, - "loc": { - "start": { - "line": 54, - "column": 21 - }, - "end": { - "line": 54, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 1741, - "end": 1756, - "loc": { - "start": { - "line": 54, - "column": 21 - }, - "end": { - "line": 54, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 1741, - "end": 1747, - "loc": { - "start": { - "line": 54, - "column": 21 - }, - "end": { - "line": 54, - "column": 27 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 1748, - "end": 1756, - "loc": { - "start": { - "line": 54, - "column": 28 - }, - "end": { - "line": 54, - "column": 36 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "BinaryExpression", - "start": 1757, - "end": 1774, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "left": { - "type": "Identifier", - "start": 1757, - "end": 1770, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 50 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 1773, - "end": 1774, - "loc": { - "start": { - "line": 54, - "column": 53 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 1783, - "end": 1941, - "loc": { - "start": { - "line": 55, - "column": 6 - }, - "end": { - "line": 58, - "column": 7 - } - }, - "test": { - "type": "LogicalExpression", - "start": 1787, - "end": 1846, - "loc": { - "start": { - "line": 55, - "column": 10 - }, - "end": { - "line": 55, - "column": 69 - } - }, - "left": { - "type": "Identifier", - "start": 1787, - "end": 1795, - "loc": { - "start": { - "line": 55, - "column": 10 - }, - "end": { - "line": 55, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 1799, - "end": 1846, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 69 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1799, - "end": 1826, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 49 - } - }, - "object": { - "type": "MemberExpression", - "start": 1799, - "end": 1817, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 1799, - "end": 1807, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 30 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "property": { - "type": "Identifier", - "start": 1808, - "end": 1817, - "loc": { - "start": { - "line": 55, - "column": 31 - }, - "end": { - "line": 55, - "column": 40 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1818, - "end": 1826, - "loc": { - "start": { - "line": 55, - "column": 41 - }, - "end": { - "line": 55, - "column": 49 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1827, - "end": 1845, - "loc": { - "start": { - "line": 55, - "column": 50 - }, - "end": { - "line": 55, - "column": 68 - } - }, - "extra": { - "rawValue": "search-separator", - "raw": "'search-separator'" - }, - "value": "search-separator" - } - ] - } - }, - "consequent": { - "type": "BlockStatement", - "start": 1848, - "end": 1941, - "loc": { - "start": { - "line": 55, - "column": 71 - }, - "end": { - "line": 58, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 1858, - "end": 1908, - "loc": { - "start": { - "line": 56, - "column": 8 - }, - "end": { - "line": 56, - "column": 58 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1862, - "end": 1907, - "loc": { - "start": { - "line": 56, - "column": 12 - }, - "end": { - "line": 56, - "column": 57 - } - }, - "id": { - "type": "Identifier", - "start": 1862, - "end": 1870, - "loc": { - "start": { - "line": 56, - "column": 12 - }, - "end": { - "line": 56, - "column": 20 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "init": { - "type": "MemberExpression", - "start": 1873, - "end": 1907, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 57 - } - }, - "object": { - "type": "MemberExpression", - "start": 1873, - "end": 1888, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 1873, - "end": 1879, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 29 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 1880, - "end": 1888, - "loc": { - "start": { - "line": 56, - "column": 30 - }, - "end": { - "line": 56, - "column": 38 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "BinaryExpression", - "start": 1889, - "end": 1906, - "loc": { - "start": { - "line": 56, - "column": 39 - }, - "end": { - "line": 56, - "column": 56 - } - }, - "left": { - "type": "Identifier", - "start": 1889, - "end": 1902, - "loc": { - "start": { - "line": 56, - "column": 39 - }, - "end": { - "line": 56, - "column": 52 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 1905, - "end": 1906, - "loc": { - "start": { - "line": 56, - "column": 55 - }, - "end": { - "line": 56, - "column": 56 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 1917, - "end": 1933, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 24 - } - }, - "expression": { - "type": "UpdateExpression", - "start": 1917, - "end": 1932, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 23 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 1917, - "end": 1930, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 21 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 1949, - "end": 2100, - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 64, - "column": 7 - } - }, - "test": { - "type": "Identifier", - "start": 1953, - "end": 1961, - "loc": { - "start": { - "line": 60, - "column": 10 - }, - "end": { - "line": 60, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "consequent": { - "type": "BlockStatement", - "start": 1963, - "end": 2100, - "loc": { - "start": { - "line": 60, - "column": 20 - }, - "end": { - "line": 64, - "column": 7 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 1973, - "end": 2023, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 58 - } - }, - "test": { - "type": "Identifier", - "start": 1977, - "end": 1984, - "loc": { - "start": { - "line": 61, - "column": 12 - }, - "end": { - "line": 61, - "column": 19 - }, - "identifierName": "current" - }, - "name": "current" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 1986, - "end": 2023, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 58 - } - }, - "expression": { - "type": "CallExpression", - "start": 1986, - "end": 2022, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 57 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1986, - "end": 2010, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 45 - } - }, - "object": { - "type": "MemberExpression", - "start": 1986, - "end": 2003, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 1986, - "end": 1993, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 28 - }, - "identifierName": "current" - }, - "name": "current" - }, - "property": { - "type": "Identifier", - "start": 1994, - "end": 2003, - "loc": { - "start": { - "line": 61, - "column": 29 - }, - "end": { - "line": 61, - "column": 38 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2004, - "end": 2010, - "loc": { - "start": { - "line": 61, - "column": 39 - }, - "end": { - "line": 61, - "column": 45 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2011, - "end": 2021, - "loc": { - "start": { - "line": 61, - "column": 46 - }, - "end": { - "line": 61, - "column": 56 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 2032, - "end": 2048, - "loc": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 24 - } - }, - "expression": { - "type": "UpdateExpression", - "start": 2032, - "end": 2047, - "loc": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 23 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 2032, - "end": 2045, - "loc": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 21 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - } - } - }, - { - "type": "ExpressionStatement", - "start": 2057, - "end": 2092, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 43 - } - }, - "expression": { - "type": "CallExpression", - "start": 2057, - "end": 2091, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2057, - "end": 2079, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 30 - } - }, - "object": { - "type": "MemberExpression", - "start": 2057, - "end": 2075, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 2057, - "end": 2065, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 16 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "property": { - "type": "Identifier", - "start": 2066, - "end": 2075, - "loc": { - "start": { - "line": 63, - "column": 17 - }, - "end": { - "line": 63, - "column": 26 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2076, - "end": 2079, - "loc": { - "start": { - "line": 63, - "column": 27 - }, - "end": { - "line": 63, - "column": 30 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2080, - "end": 2090, - "loc": { - "start": { - "line": 63, - "column": 31 - }, - "end": { - "line": 63, - "column": 41 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": { - "type": "IfStatement", - "start": 2112, - "end": 2844, - "loc": { - "start": { - "line": 65, - "column": 11 - }, - "end": { - "line": 88, - "column": 5 - } - }, - "test": { - "type": "BinaryExpression", - "start": 2116, - "end": 2133, - "loc": { - "start": { - "line": 65, - "column": 15 - }, - "end": { - "line": 65, - "column": 32 - } - }, - "left": { - "type": "MemberExpression", - "start": 2116, - "end": 2126, - "loc": { - "start": { - "line": 65, - "column": 15 - }, - "end": { - "line": 65, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 2116, - "end": 2118, - "loc": { - "start": { - "line": 65, - "column": 15 - }, - "end": { - "line": 65, - "column": 17 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 2119, - "end": 2126, - "loc": { - "start": { - "line": 65, - "column": 18 - }, - "end": { - "line": 65, - "column": 25 - }, - "identifierName": "keyCode" - }, - "name": "keyCode" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 2131, - "end": 2133, - "loc": { - "start": { - "line": 65, - "column": 30 - }, - "end": { - "line": 65, - "column": 32 - } - }, - "extra": { - "rawValue": 38, - "raw": "38" - }, - "value": 38 - } - }, - "consequent": { - "type": "BlockStatement", - "start": 2135, - "end": 2593, - "loc": { - "start": { - "line": 65, - "column": 34 - }, - "end": { - "line": 79, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2161, - "end": 2206, - "loc": { - "start": { - "line": 67, - "column": 6 - }, - "end": { - "line": 67, - "column": 51 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2165, - "end": 2205, - "loc": { - "start": { - "line": 67, - "column": 10 - }, - "end": { - "line": 67, - "column": 50 - } - }, - "id": { - "type": "Identifier", - "start": 2165, - "end": 2172, - "loc": { - "start": { - "line": 67, - "column": 10 - }, - "end": { - "line": 67, - "column": 17 - }, - "identifierName": "current" - }, - "name": "current", - "leadingComments": null - }, - "init": { - "type": "MemberExpression", - "start": 2175, - "end": 2205, - "loc": { - "start": { - "line": 67, - "column": 20 - }, - "end": { - "line": 67, - "column": 50 - } - }, - "object": { - "type": "MemberExpression", - "start": 2175, - "end": 2190, - "loc": { - "start": { - "line": 67, - "column": 20 - }, - "end": { - "line": 67, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 2175, - "end": 2181, - "loc": { - "start": { - "line": 67, - "column": 20 - }, - "end": { - "line": 67, - "column": 26 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 2182, - "end": 2190, - "loc": { - "start": { - "line": 67, - "column": 27 - }, - "end": { - "line": 67, - "column": 35 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2191, - "end": 2204, - "loc": { - "start": { - "line": 67, - "column": 36 - }, - "end": { - "line": 67, - "column": 49 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "computed": true - }, - "leadingComments": null - } - ], - "kind": "var", - "leadingComments": [ - { - "type": "CommentLine", - "value": " arrow up", - "start": 2143, - "end": 2154, - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 66, - "column": 17 - } - } - } - ] - }, - { - "type": "VariableDeclaration", - "start": 2213, - "end": 2263, - "loc": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 68, - "column": 56 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2217, - "end": 2262, - "loc": { - "start": { - "line": 68, - "column": 10 - }, - "end": { - "line": 68, - "column": 55 - } - }, - "id": { - "type": "Identifier", - "start": 2217, - "end": 2225, - "loc": { - "start": { - "line": 68, - "column": 10 - }, - "end": { - "line": 68, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "init": { - "type": "MemberExpression", - "start": 2228, - "end": 2262, - "loc": { - "start": { - "line": 68, - "column": 21 - }, - "end": { - "line": 68, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 2228, - "end": 2243, - "loc": { - "start": { - "line": 68, - "column": 21 - }, - "end": { - "line": 68, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 2228, - "end": 2234, - "loc": { - "start": { - "line": 68, - "column": 21 - }, - "end": { - "line": 68, - "column": 27 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 2235, - "end": 2243, - "loc": { - "start": { - "line": 68, - "column": 28 - }, - "end": { - "line": 68, - "column": 36 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "BinaryExpression", - "start": 2244, - "end": 2261, - "loc": { - "start": { - "line": 68, - "column": 37 - }, - "end": { - "line": 68, - "column": 54 - } - }, - "left": { - "type": "Identifier", - "start": 2244, - "end": 2257, - "loc": { - "start": { - "line": 68, - "column": 37 - }, - "end": { - "line": 68, - "column": 50 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "operator": "-", - "right": { - "type": "NumericLiteral", - "start": 2260, - "end": 2261, - "loc": { - "start": { - "line": 68, - "column": 53 - }, - "end": { - "line": 68, - "column": 54 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 2270, - "end": 2428, - "loc": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 72, - "column": 7 - } - }, - "test": { - "type": "LogicalExpression", - "start": 2274, - "end": 2333, - "loc": { - "start": { - "line": 69, - "column": 10 - }, - "end": { - "line": 69, - "column": 69 - } - }, - "left": { - "type": "Identifier", - "start": 2274, - "end": 2282, - "loc": { - "start": { - "line": 69, - "column": 10 - }, - "end": { - "line": 69, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 2286, - "end": 2333, - "loc": { - "start": { - "line": 69, - "column": 22 - }, - "end": { - "line": 69, - "column": 69 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2286, - "end": 2313, - "loc": { - "start": { - "line": 69, - "column": 22 - }, - "end": { - "line": 69, - "column": 49 - } - }, - "object": { - "type": "MemberExpression", - "start": 2286, - "end": 2304, - "loc": { - "start": { - "line": 69, - "column": 22 - }, - "end": { - "line": 69, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 2286, - "end": 2294, - "loc": { - "start": { - "line": 69, - "column": 22 - }, - "end": { - "line": 69, - "column": 30 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "property": { - "type": "Identifier", - "start": 2295, - "end": 2304, - "loc": { - "start": { - "line": 69, - "column": 31 - }, - "end": { - "line": 69, - "column": 40 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2305, - "end": 2313, - "loc": { - "start": { - "line": 69, - "column": 41 - }, - "end": { - "line": 69, - "column": 49 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2314, - "end": 2332, - "loc": { - "start": { - "line": 69, - "column": 50 - }, - "end": { - "line": 69, - "column": 68 - } - }, - "extra": { - "rawValue": "search-separator", - "raw": "'search-separator'" - }, - "value": "search-separator" - } - ] - } - }, - "consequent": { - "type": "BlockStatement", - "start": 2335, - "end": 2428, - "loc": { - "start": { - "line": 69, - "column": 71 - }, - "end": { - "line": 72, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2345, - "end": 2395, - "loc": { - "start": { - "line": 70, - "column": 8 - }, - "end": { - "line": 70, - "column": 58 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2349, - "end": 2394, - "loc": { - "start": { - "line": 70, - "column": 12 - }, - "end": { - "line": 70, - "column": 57 - } - }, - "id": { - "type": "Identifier", - "start": 2349, - "end": 2357, - "loc": { - "start": { - "line": 70, - "column": 12 - }, - "end": { - "line": 70, - "column": 20 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "init": { - "type": "MemberExpression", - "start": 2360, - "end": 2394, - "loc": { - "start": { - "line": 70, - "column": 23 - }, - "end": { - "line": 70, - "column": 57 - } - }, - "object": { - "type": "MemberExpression", - "start": 2360, - "end": 2375, - "loc": { - "start": { - "line": 70, - "column": 23 - }, - "end": { - "line": 70, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 2360, - "end": 2366, - "loc": { - "start": { - "line": 70, - "column": 23 - }, - "end": { - "line": 70, - "column": 29 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 2367, - "end": 2375, - "loc": { - "start": { - "line": 70, - "column": 30 - }, - "end": { - "line": 70, - "column": 38 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "BinaryExpression", - "start": 2376, - "end": 2393, - "loc": { - "start": { - "line": 70, - "column": 39 - }, - "end": { - "line": 70, - "column": 56 - } - }, - "left": { - "type": "Identifier", - "start": 2376, - "end": 2389, - "loc": { - "start": { - "line": 70, - "column": 39 - }, - "end": { - "line": 70, - "column": 52 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "operator": "-", - "right": { - "type": "NumericLiteral", - "start": 2392, - "end": 2393, - "loc": { - "start": { - "line": 70, - "column": 55 - }, - "end": { - "line": 70, - "column": 56 - } - }, - "extra": { - "rawValue": 2, - "raw": "2" - }, - "value": 2 - } - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 2404, - "end": 2420, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 24 - } - }, - "expression": { - "type": "UpdateExpression", - "start": 2404, - "end": 2419, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 23 - } - }, - "operator": "--", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 2404, - "end": 2417, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 21 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 2436, - "end": 2587, - "loc": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 78, - "column": 7 - } - }, - "test": { - "type": "Identifier", - "start": 2440, - "end": 2448, - "loc": { - "start": { - "line": 74, - "column": 10 - }, - "end": { - "line": 74, - "column": 18 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "consequent": { - "type": "BlockStatement", - "start": 2450, - "end": 2587, - "loc": { - "start": { - "line": 74, - "column": 20 - }, - "end": { - "line": 78, - "column": 7 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 2460, - "end": 2510, - "loc": { - "start": { - "line": 75, - "column": 8 - }, - "end": { - "line": 75, - "column": 58 - } - }, - "test": { - "type": "Identifier", - "start": 2464, - "end": 2471, - "loc": { - "start": { - "line": 75, - "column": 12 - }, - "end": { - "line": 75, - "column": 19 - }, - "identifierName": "current" - }, - "name": "current" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 2473, - "end": 2510, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 58 - } - }, - "expression": { - "type": "CallExpression", - "start": 2473, - "end": 2509, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 57 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2473, - "end": 2497, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 45 - } - }, - "object": { - "type": "MemberExpression", - "start": 2473, - "end": 2490, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 2473, - "end": 2480, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 28 - }, - "identifierName": "current" - }, - "name": "current" - }, - "property": { - "type": "Identifier", - "start": 2481, - "end": 2490, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 75, - "column": 38 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2491, - "end": 2497, - "loc": { - "start": { - "line": 75, - "column": 39 - }, - "end": { - "line": 75, - "column": 45 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2498, - "end": 2508, - "loc": { - "start": { - "line": 75, - "column": 46 - }, - "end": { - "line": 75, - "column": 56 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 2519, - "end": 2535, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 24 - } - }, - "expression": { - "type": "UpdateExpression", - "start": 2519, - "end": 2534, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 23 - } - }, - "operator": "--", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 2519, - "end": 2532, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 21 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - } - } - }, - { - "type": "ExpressionStatement", - "start": 2544, - "end": 2579, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 43 - } - }, - "expression": { - "type": "CallExpression", - "start": 2544, - "end": 2578, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2544, - "end": 2566, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 30 - } - }, - "object": { - "type": "MemberExpression", - "start": 2544, - "end": 2562, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 2544, - "end": 2552, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 16 - }, - "identifierName": "selected" - }, - "name": "selected" - }, - "property": { - "type": "Identifier", - "start": 2553, - "end": 2562, - "loc": { - "start": { - "line": 77, - "column": 17 - }, - "end": { - "line": 77, - "column": 26 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2563, - "end": 2566, - "loc": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 30 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2567, - "end": 2577, - "loc": { - "start": { - "line": 77, - "column": 31 - }, - "end": { - "line": 77, - "column": 41 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": { - "type": "IfStatement", - "start": 2599, - "end": 2844, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 88, - "column": 5 - } - }, - "test": { - "type": "BinaryExpression", - "start": 2603, - "end": 2620, - "loc": { - "start": { - "line": 79, - "column": 15 - }, - "end": { - "line": 79, - "column": 32 - } - }, - "left": { - "type": "MemberExpression", - "start": 2603, - "end": 2613, - "loc": { - "start": { - "line": 79, - "column": 15 - }, - "end": { - "line": 79, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 2603, - "end": 2605, - "loc": { - "start": { - "line": 79, - "column": 15 - }, - "end": { - "line": 79, - "column": 17 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 2606, - "end": 2613, - "loc": { - "start": { - "line": 79, - "column": 18 - }, - "end": { - "line": 79, - "column": 25 - }, - "identifierName": "keyCode" - }, - "name": "keyCode" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 2618, - "end": 2620, - "loc": { - "start": { - "line": 79, - "column": 30 - }, - "end": { - "line": 79, - "column": 32 - } - }, - "extra": { - "rawValue": 13, - "raw": "13" - }, - "value": 13 - } - }, - "consequent": { - "type": "BlockStatement", - "start": 2622, - "end": 2817, - "loc": { - "start": { - "line": 79, - "column": 34 - }, - "end": { - "line": 86, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2645, - "end": 2690, - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 81, - "column": 51 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2649, - "end": 2689, - "loc": { - "start": { - "line": 81, - "column": 10 - }, - "end": { - "line": 81, - "column": 50 - } - }, - "id": { - "type": "Identifier", - "start": 2649, - "end": 2656, - "loc": { - "start": { - "line": 81, - "column": 10 - }, - "end": { - "line": 81, - "column": 17 - }, - "identifierName": "current" - }, - "name": "current", - "leadingComments": null - }, - "init": { - "type": "MemberExpression", - "start": 2659, - "end": 2689, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 50 - } - }, - "object": { - "type": "MemberExpression", - "start": 2659, - "end": 2674, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 2659, - "end": 2665, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 26 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 2666, - "end": 2674, - "loc": { - "start": { - "line": 81, - "column": 27 - }, - "end": { - "line": 81, - "column": 35 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2675, - "end": 2688, - "loc": { - "start": { - "line": 81, - "column": 36 - }, - "end": { - "line": 81, - "column": 49 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "computed": true - }, - "leadingComments": null - } - ], - "kind": "var", - "leadingComments": [ - { - "type": "CommentLine", - "value": " enter", - "start": 2630, - "end": 2638, - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 80, - "column": 14 - } - } - } - ] - }, - { - "type": "IfStatement", - "start": 2697, - "end": 2811, - "loc": { - "start": { - "line": 82, - "column": 6 - }, - "end": { - "line": 85, - "column": 7 - } - }, - "test": { - "type": "Identifier", - "start": 2701, - "end": 2708, - "loc": { - "start": { - "line": 82, - "column": 10 - }, - "end": { - "line": 82, - "column": 17 - }, - "identifierName": "current" - }, - "name": "current" - }, - "consequent": { - "type": "BlockStatement", - "start": 2710, - "end": 2811, - "loc": { - "start": { - "line": 82, - "column": 19 - }, - "end": { - "line": 85, - "column": 7 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2720, - "end": 2758, - "loc": { - "start": { - "line": 83, - "column": 8 - }, - "end": { - "line": 83, - "column": 46 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 2724, - "end": 2757, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 45 - } - }, - "id": { - "type": "Identifier", - "start": 2724, - "end": 2728, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 16 - }, - "identifierName": "link" - }, - "name": "link" - }, - "init": { - "type": "CallExpression", - "start": 2731, - "end": 2757, - "loc": { - "start": { - "line": 83, - "column": 19 - }, - "end": { - "line": 83, - "column": 45 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2731, - "end": 2752, - "loc": { - "start": { - "line": 83, - "column": 19 - }, - "end": { - "line": 83, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 2731, - "end": 2738, - "loc": { - "start": { - "line": 83, - "column": 19 - }, - "end": { - "line": 83, - "column": 26 - }, - "identifierName": "current" - }, - "name": "current" - }, - "property": { - "type": "Identifier", - "start": 2739, - "end": 2752, - "loc": { - "start": { - "line": 83, - "column": 27 - }, - "end": { - "line": 83, - "column": 40 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2753, - "end": 2756, - "loc": { - "start": { - "line": 83, - "column": 41 - }, - "end": { - "line": 83, - "column": 44 - } - }, - "extra": { - "rawValue": "a", - "raw": "'a'" - }, - "value": "a" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 2767, - "end": 2803, - "loc": { - "start": { - "line": 84, - "column": 8 - }, - "end": { - "line": 84, - "column": 44 - } - }, - "test": { - "type": "Identifier", - "start": 2771, - "end": 2775, - "loc": { - "start": { - "line": 84, - "column": 12 - }, - "end": { - "line": 84, - "column": 16 - }, - "identifierName": "link" - }, - "name": "link" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 2777, - "end": 2803, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 44 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2777, - "end": 2802, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 43 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2777, - "end": 2790, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 2777, - "end": 2785, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 26 - }, - "identifierName": "location" - }, - "name": "location" - }, - "property": { - "type": "Identifier", - "start": 2786, - "end": 2790, - "loc": { - "start": { - "line": 84, - "column": 27 - }, - "end": { - "line": 84, - "column": 31 - }, - "identifierName": "href" - }, - "name": "href" - }, - "computed": false - }, - "right": { - "type": "MemberExpression", - "start": 2793, - "end": 2802, - "loc": { - "start": { - "line": 84, - "column": 34 - }, - "end": { - "line": 84, - "column": 43 - } - }, - "object": { - "type": "Identifier", - "start": 2793, - "end": 2797, - "loc": { - "start": { - "line": 84, - "column": 34 - }, - "end": { - "line": 84, - "column": 38 - }, - "identifierName": "link" - }, - "name": "link" - }, - "property": { - "type": "Identifier", - "start": 2798, - "end": 2802, - "loc": { - "start": { - "line": 84, - "column": 39 - }, - "end": { - "line": 84, - "column": 43 - }, - "identifierName": "href" - }, - "name": "href" - }, - "computed": false - } - } - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": { - "type": "BlockStatement", - "start": 2823, - "end": 2844, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 88, - "column": 5 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2831, - "end": 2838, - "loc": { - "start": { - "line": 87, - "column": 6 - }, - "end": { - "line": 87, - "column": 13 - } - }, - "argument": null - } - ], - "directives": [] - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 2850, - "end": 2870, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 24 - } - }, - "expression": { - "type": "CallExpression", - "start": 2850, - "end": 2869, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 23 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2850, - "end": 2867, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 21 - } - }, - "object": { - "type": "Identifier", - "start": 2850, - "end": 2852, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 6 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 2853, - "end": 2867, - "loc": { - "start": { - "line": 90, - "column": 7 - }, - "end": { - "line": 90, - "column": 21 - }, - "identifierName": "preventDefault" - }, - "name": "preventDefault" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - } - } - ], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " down, up and enter key are pressed, select search result.", - "start": 1506, - "end": 1566, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 49, - "column": 62 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " select search result when search result is mouse over.", - "start": 2880, - "end": 2937, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 93, - "column": 59 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 2940, - "end": 3349, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 108, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 2940, - "end": 3348, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 108, - "column": 4 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2940, - "end": 2963, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 94, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 2940, - "end": 2946, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 94, - "column": 8 - }, - "identifierName": "result" - }, - "name": "result", - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 2947, - "end": 2963, - "loc": { - "start": { - "line": 94, - "column": 9 - }, - "end": { - "line": 94, - "column": 25 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false, - "leadingComments": null - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 2964, - "end": 2975, - "loc": { - "start": { - "line": 94, - "column": 26 - }, - "end": { - "line": 94, - "column": 37 - } - }, - "extra": { - "rawValue": "mousemove", - "raw": "'mousemove'" - }, - "value": "mousemove" - }, - { - "type": "FunctionExpression", - "start": 2977, - "end": 3347, - "loc": { - "start": { - "line": 94, - "column": 39 - }, - "end": { - "line": 108, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 2987, - "end": 2989, - "loc": { - "start": { - "line": 94, - "column": 49 - }, - "end": { - "line": 94, - "column": 51 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 2991, - "end": 3347, - "loc": { - "start": { - "line": 94, - "column": 53 - }, - "end": { - "line": 108, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 2997, - "end": 3042, - "loc": { - "start": { - "line": 95, - "column": 4 - }, - "end": { - "line": 95, - "column": 49 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3001, - "end": 3041, - "loc": { - "start": { - "line": 95, - "column": 8 - }, - "end": { - "line": 95, - "column": 48 - } - }, - "id": { - "type": "Identifier", - "start": 3001, - "end": 3008, - "loc": { - "start": { - "line": 95, - "column": 8 - }, - "end": { - "line": 95, - "column": 15 - }, - "identifierName": "current" - }, - "name": "current" - }, - "init": { - "type": "MemberExpression", - "start": 3011, - "end": 3041, - "loc": { - "start": { - "line": 95, - "column": 18 - }, - "end": { - "line": 95, - "column": 48 - } - }, - "object": { - "type": "MemberExpression", - "start": 3011, - "end": 3026, - "loc": { - "start": { - "line": 95, - "column": 18 - }, - "end": { - "line": 95, - "column": 33 - } - }, - "object": { - "type": "Identifier", - "start": 3011, - "end": 3017, - "loc": { - "start": { - "line": 95, - "column": 18 - }, - "end": { - "line": 95, - "column": 24 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 3018, - "end": 3026, - "loc": { - "start": { - "line": 95, - "column": 25 - }, - "end": { - "line": 95, - "column": 33 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3027, - "end": 3040, - "loc": { - "start": { - "line": 95, - "column": 34 - }, - "end": { - "line": 95, - "column": 47 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "computed": true - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 3047, - "end": 3097, - "loc": { - "start": { - "line": 96, - "column": 4 - }, - "end": { - "line": 96, - "column": 54 - } - }, - "test": { - "type": "Identifier", - "start": 3051, - "end": 3058, - "loc": { - "start": { - "line": 96, - "column": 8 - }, - "end": { - "line": 96, - "column": 15 - }, - "identifierName": "current" - }, - "name": "current" - }, - "consequent": { - "type": "ExpressionStatement", - "start": 3060, - "end": 3097, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 54 - } - }, - "expression": { - "type": "CallExpression", - "start": 3060, - "end": 3096, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 53 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3060, - "end": 3084, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 41 - } - }, - "object": { - "type": "MemberExpression", - "start": 3060, - "end": 3077, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 3060, - "end": 3067, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 24 - }, - "identifierName": "current" - }, - "name": "current" - }, - "property": { - "type": "Identifier", - "start": 3068, - "end": 3077, - "loc": { - "start": { - "line": 96, - "column": 25 - }, - "end": { - "line": 96, - "column": 34 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3078, - "end": 3084, - "loc": { - "start": { - "line": 96, - "column": 35 - }, - "end": { - "line": 96, - "column": 41 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 3085, - "end": 3095, - "loc": { - "start": { - "line": 96, - "column": 42 - }, - "end": { - "line": 96, - "column": 52 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 3103, - "end": 3122, - "loc": { - "start": { - "line": 98, - "column": 4 - }, - "end": { - "line": 98, - "column": 23 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3107, - "end": 3121, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 3107, - "end": 3109, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 10 - }, - "identifierName": "li" - }, - "name": "li" - }, - "init": { - "type": "MemberExpression", - "start": 3112, - "end": 3121, - "loc": { - "start": { - "line": 98, - "column": 13 - }, - "end": { - "line": 98, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 3112, - "end": 3114, - "loc": { - "start": { - "line": 98, - "column": 13 - }, - "end": { - "line": 98, - "column": 15 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 3115, - "end": 3121, - "loc": { - "start": { - "line": 98, - "column": 16 - }, - "end": { - "line": 98, - "column": 22 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "WhileStatement", - "start": 3127, - "end": 3213, - "loc": { - "start": { - "line": 99, - "column": 4 - }, - "end": { - "line": 102, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 3134, - "end": 3136, - "loc": { - "start": { - "line": 99, - "column": 11 - }, - "end": { - "line": 99, - "column": 13 - }, - "identifierName": "li" - }, - "name": "li" - }, - "body": { - "type": "BlockStatement", - "start": 3138, - "end": 3213, - "loc": { - "start": { - "line": 99, - "column": 15 - }, - "end": { - "line": 102, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 3146, - "end": 3178, - "loc": { - "start": { - "line": 100, - "column": 6 - }, - "end": { - "line": 100, - "column": 38 - } - }, - "test": { - "type": "BinaryExpression", - "start": 3150, - "end": 3170, - "loc": { - "start": { - "line": 100, - "column": 10 - }, - "end": { - "line": 100, - "column": 30 - } - }, - "left": { - "type": "MemberExpression", - "start": 3150, - "end": 3161, - "loc": { - "start": { - "line": 100, - "column": 10 - }, - "end": { - "line": 100, - "column": 21 - } - }, - "object": { - "type": "Identifier", - "start": 3150, - "end": 3152, - "loc": { - "start": { - "line": 100, - "column": 10 - }, - "end": { - "line": 100, - "column": 12 - }, - "identifierName": "li" - }, - "name": "li" - }, - "property": { - "type": "Identifier", - "start": 3153, - "end": 3161, - "loc": { - "start": { - "line": 100, - "column": 13 - }, - "end": { - "line": 100, - "column": 21 - }, - "identifierName": "nodeName" - }, - "name": "nodeName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 3166, - "end": 3170, - "loc": { - "start": { - "line": 100, - "column": 26 - }, - "end": { - "line": 100, - "column": 30 - } - }, - "extra": { - "rawValue": "LI", - "raw": "'LI'" - }, - "value": "LI" - } - }, - "consequent": { - "type": "BreakStatement", - "start": 3172, - "end": 3178, - "loc": { - "start": { - "line": 100, - "column": 32 - }, - "end": { - "line": 100, - "column": 38 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 3185, - "end": 3207, - "loc": { - "start": { - "line": 101, - "column": 6 - }, - "end": { - "line": 101, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3185, - "end": 3206, - "loc": { - "start": { - "line": 101, - "column": 6 - }, - "end": { - "line": 101, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3185, - "end": 3187, - "loc": { - "start": { - "line": 101, - "column": 6 - }, - "end": { - "line": 101, - "column": 8 - }, - "identifierName": "li" - }, - "name": "li" - }, - "right": { - "type": "MemberExpression", - "start": 3190, - "end": 3206, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 3190, - "end": 3192, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 13 - }, - "identifierName": "li" - }, - "name": "li" - }, - "property": { - "type": "Identifier", - "start": 3193, - "end": 3206, - "loc": { - "start": { - "line": 101, - "column": 14 - }, - "end": { - "line": 101, - "column": 27 - }, - "identifierName": "parentElement" - }, - "name": "parentElement" - }, - "computed": false - } - } - } - ], - "directives": [] - } - }, - { - "type": "IfStatement", - "start": 3219, - "end": 3343, - "loc": { - "start": { - "line": 104, - "column": 4 - }, - "end": { - "line": 107, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 3223, - "end": 3225, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 10 - }, - "identifierName": "li" - }, - "name": "li" - }, - "consequent": { - "type": "BlockStatement", - "start": 3227, - "end": 3343, - "loc": { - "start": { - "line": 104, - "column": 12 - }, - "end": { - "line": 107, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 3235, - "end": 3301, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 72 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3235, - "end": 3300, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 71 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3235, - "end": 3248, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 19 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "right": { - "type": "CallExpression", - "start": 3251, - "end": 3300, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 71 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3251, - "end": 3279, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 50 - } - }, - "object": { - "type": "MemberExpression", - "start": 3251, - "end": 3274, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 45 - } - }, - "object": { - "type": "MemberExpression", - "start": 3251, - "end": 3266, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 37 - } - }, - "object": { - "type": "Identifier", - "start": 3251, - "end": 3256, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 27 - }, - "identifierName": "Array" - }, - "name": "Array" - }, - "property": { - "type": "Identifier", - "start": 3257, - "end": 3266, - "loc": { - "start": { - "line": 105, - "column": 28 - }, - "end": { - "line": 105, - "column": 37 - }, - "identifierName": "prototype" - }, - "name": "prototype" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3267, - "end": 3274, - "loc": { - "start": { - "line": 105, - "column": 38 - }, - "end": { - "line": 105, - "column": 45 - }, - "identifierName": "indexOf" - }, - "name": "indexOf" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3275, - "end": 3279, - "loc": { - "start": { - "line": 105, - "column": 46 - }, - "end": { - "line": 105, - "column": 50 - }, - "identifierName": "call" - }, - "name": "call" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3280, - "end": 3295, - "loc": { - "start": { - "line": 105, - "column": 51 - }, - "end": { - "line": 105, - "column": 66 - } - }, - "object": { - "type": "Identifier", - "start": 3280, - "end": 3286, - "loc": { - "start": { - "line": 105, - "column": 51 - }, - "end": { - "line": 105, - "column": 57 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 3287, - "end": 3295, - "loc": { - "start": { - "line": 105, - "column": 58 - }, - "end": { - "line": 105, - "column": 66 - }, - "identifierName": "children" - }, - "name": "children" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 3297, - "end": 3299, - "loc": { - "start": { - "line": 105, - "column": 68 - }, - "end": { - "line": 105, - "column": 70 - }, - "identifierName": "li" - }, - "name": "li" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 3308, - "end": 3337, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 35 - } - }, - "expression": { - "type": "CallExpression", - "start": 3308, - "end": 3336, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 34 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3308, - "end": 3324, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 22 - } - }, - "object": { - "type": "MemberExpression", - "start": 3308, - "end": 3320, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 18 - } - }, - "object": { - "type": "Identifier", - "start": 3308, - "end": 3310, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 8 - }, - "identifierName": "li" - }, - "name": "li" - }, - "property": { - "type": "Identifier", - "start": 3311, - "end": 3320, - "loc": { - "start": { - "line": 106, - "column": 9 - }, - "end": { - "line": 106, - "column": 18 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3321, - "end": 3324, - "loc": { - "start": { - "line": 106, - "column": 19 - }, - "end": { - "line": 106, - "column": 22 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 3325, - "end": 3335, - "loc": { - "start": { - "line": 106, - "column": 23 - }, - "end": { - "line": 106, - "column": 33 - } - }, - "extra": { - "rawValue": "selected", - "raw": "'selected'" - }, - "value": "selected" - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - } - } - ], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " select search result when search result is mouse over.", - "start": 2880, - "end": 2937, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 93, - "column": 59 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " clear search result when body is clicked.", - "start": 3353, - "end": 3397, - "loc": { - "start": { - "line": 110, - "column": 2 - }, - "end": { - "line": 110, - "column": 46 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 3400, - "end": 3547, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 115, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 3400, - "end": 3546, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 115, - "column": 4 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3400, - "end": 3430, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 111, - "column": 32 - } - }, - "object": { - "type": "MemberExpression", - "start": 3400, - "end": 3413, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 111, - "column": 15 - } - }, - "object": { - "type": "Identifier", - "start": 3400, - "end": 3408, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 111, - "column": 10 - }, - "identifierName": "document" - }, - "name": "document", - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 3409, - "end": 3413, - "loc": { - "start": { - "line": 111, - "column": 11 - }, - "end": { - "line": 111, - "column": 15 - }, - "identifierName": "body" - }, - "name": "body" - }, - "computed": false, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 3414, - "end": 3430, - "loc": { - "start": { - "line": 111, - "column": 16 - }, - "end": { - "line": 111, - "column": 32 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false, - "leadingComments": null - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 3431, - "end": 3438, - "loc": { - "start": { - "line": 111, - "column": 33 - }, - "end": { - "line": 111, - "column": 40 - } - }, - "extra": { - "rawValue": "click", - "raw": "'click'" - }, - "value": "click" - }, - { - "type": "FunctionExpression", - "start": 3440, - "end": 3545, - "loc": { - "start": { - "line": 111, - "column": 42 - }, - "end": { - "line": 115, - "column": 3 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3450, - "end": 3452, - "loc": { - "start": { - "line": 111, - "column": 52 - }, - "end": { - "line": 111, - "column": 54 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 3454, - "end": 3545, - "loc": { - "start": { - "line": 111, - "column": 56 - }, - "end": { - "line": 115, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 3460, - "end": 3479, - "loc": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3460, - "end": 3478, - "loc": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3460, - "end": 3473, - "loc": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 17 - }, - "identifierName": "selectedIndex" - }, - "name": "selectedIndex" - }, - "right": { - "type": "UnaryExpression", - "start": 3476, - "end": 3478, - "loc": { - "start": { - "line": 112, - "column": 20 - }, - "end": { - "line": 112, - "column": 22 - } - }, - "operator": "-", - "prefix": true, - "argument": { - "type": "NumericLiteral", - "start": 3477, - "end": 3478, - "loc": { - "start": { - "line": 112, - "column": 21 - }, - "end": { - "line": 112, - "column": 22 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - }, - "extra": { - "parenthesizedArgument": false - } - } - } - }, - { - "type": "ExpressionStatement", - "start": 3484, - "end": 3514, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 34 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3484, - "end": 3513, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 33 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3484, - "end": 3504, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 24 - } - }, - "object": { - "type": "MemberExpression", - "start": 3484, - "end": 3496, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 16 - } - }, - "object": { - "type": "Identifier", - "start": 3484, - "end": 3490, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 10 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 3491, - "end": 3496, - "loc": { - "start": { - "line": 113, - "column": 11 - }, - "end": { - "line": 113, - "column": 16 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3497, - "end": 3504, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 24 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 3507, - "end": 3513, - "loc": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 33 - } - }, - "extra": { - "rawValue": "none", - "raw": "'none'" - }, - "value": "none" - } - } - }, - { - "type": "ExpressionStatement", - "start": 3519, - "end": 3541, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 26 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3519, - "end": 3540, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 25 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 3519, - "end": 3535, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 20 - } - }, - "object": { - "type": "Identifier", - "start": 3519, - "end": 3525, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 10 - }, - "identifierName": "result" - }, - "name": "result" - }, - "property": { - "type": "Identifier", - "start": 3526, - "end": 3535, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 20 - }, - "identifierName": "innerHTML" - }, - "name": "innerHTML" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 3538, - "end": 3540, - "loc": { - "start": { - "line": 114, - "column": 23 - }, - "end": { - "line": 114, - "column": 25 - } - }, - "extra": { - "rawValue": "", - "raw": "''" - }, - "value": "" - } - } - } - ], - "directives": [] - } - } - ], - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " clear search result when body is clicked.", - "start": 3353, - "end": 3397, - "loc": { - "start": { - "line": 110, - "column": 2 - }, - "end": { - "line": 110, - "column": 46 - } - } - } - ] - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [ - { - "type": "CommentLine", - "value": " active search box and focus when mouse enter on search box.", - "start": 274, - "end": 336, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 64 - } - } - }, - { - "type": "CommentLine", - "value": " search with text when key is upped.", - "start": 461, - "end": 499, - "loc": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 40 - } - } - }, - { - "type": "CommentLine", - "value": " down, up and enter key are pressed, select search result.", - "start": 1506, - "end": 1566, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 49, - "column": 62 - } - } - }, - { - "type": "CommentLine", - "value": " arrow down", - "start": 1654, - "end": 1667, - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 52, - "column": 19 - } - } - }, - { - "type": "CommentLine", - "value": " arrow up", - "start": 2143, - "end": 2154, - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 66, - "column": 17 - } - } - }, - { - "type": "CommentLine", - "value": " enter", - "start": 2630, - "end": 2638, - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 80, - "column": 14 - } - } - }, - { - "type": "CommentLine", - "value": " select search result when search result is mouse over.", - "start": 2880, - "end": 2937, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 93, - "column": 59 - } - } - }, - { - "type": "CommentLine", - "value": " clear search result when body is clicked.", - "start": 3353, - "end": 3397, - "loc": { - "start": { - "line": 110, - "column": 2 - }, - "end": { - "line": 110, - "column": 46 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 17, - "end": 20, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchIndex", - "start": 21, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 6 - }, - "end": { - "line": 2, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 33, - "end": 34, - "loc": { - "start": { - "line": 2, - "column": 18 - }, - "end": { - "line": 2, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 35, - "end": 41, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 41, - "end": 42, - "loc": { - "start": { - "line": 2, - "column": 26 - }, - "end": { - "line": 2, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "esdocSearchIndex", - "start": 42, - "end": 58, - "loc": { - "start": { - "line": 2, - "column": 27 - }, - "end": { - "line": 2, - "column": 43 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 58, - "end": 59, - "loc": { - "start": { - "line": 2, - "column": 43 - }, - "end": { - "line": 2, - "column": 44 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 62, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchBox", - "start": 66, - "end": 75, - "loc": { - "start": { - "line": 3, - "column": 6 - }, - "end": { - "line": 3, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 76, - "end": 77, - "loc": { - "start": { - "line": 3, - "column": 16 - }, - "end": { - "line": 3, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 78, - "end": 86, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 86, - "end": 87, - "loc": { - "start": { - "line": 3, - "column": 26 - }, - "end": { - "line": 3, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 87, - "end": 100, - "loc": { - "start": { - "line": 3, - "column": 27 - }, - "end": { - "line": 3, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 100, - "end": 101, - "loc": { - "start": { - "line": 3, - "column": 40 - }, - "end": { - "line": 3, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".search-box", - "start": 101, - "end": 114, - "loc": { - "start": { - "line": 3, - "column": 41 - }, - "end": { - "line": 3, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 114, - "end": 115, - "loc": { - "start": { - "line": 3, - "column": 54 - }, - "end": { - "line": 3, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 115, - "end": 116, - "loc": { - "start": { - "line": 3, - "column": 55 - }, - "end": { - "line": 3, - "column": 56 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 119, - "end": 122, - "loc": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "input", - "start": 123, - "end": 128, - "loc": { - "start": { - "line": 4, - "column": 6 - }, - "end": { - "line": 4, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 129, - "end": 130, - "loc": { - "start": { - "line": 4, - "column": 12 - }, - "end": { - "line": 4, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 131, - "end": 139, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 140, - "end": 153, - "loc": { - "start": { - "line": 4, - "column": 23 - }, - "end": { - "line": 4, - "column": 36 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 153, - "end": 154, - "loc": { - "start": { - "line": 4, - "column": 36 - }, - "end": { - "line": 4, - "column": 37 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".search-input", - "start": 154, - "end": 169, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 52 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 169, - "end": 170, - "loc": { - "start": { - "line": 4, - "column": 52 - }, - "end": { - "line": 4, - "column": 53 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 170, - "end": 171, - "loc": { - "start": { - "line": 4, - "column": 53 - }, - "end": { - "line": 4, - "column": 54 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 174, - "end": 177, - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 178, - "end": 184, - "loc": { - "start": { - "line": 5, - "column": 6 - }, - "end": { - "line": 5, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 185, - "end": 186, - "loc": { - "start": { - "line": 5, - "column": 13 - }, - "end": { - "line": 5, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 187, - "end": 195, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 195, - "end": 196, - "loc": { - "start": { - "line": 5, - "column": 23 - }, - "end": { - "line": 5, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 196, - "end": 209, - "loc": { - "start": { - "line": 5, - "column": 24 - }, - "end": { - "line": 5, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 209, - "end": 210, - "loc": { - "start": { - "line": 5, - "column": 37 - }, - "end": { - "line": 5, - "column": 38 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".search-result", - "start": 210, - "end": 226, - "loc": { - "start": { - "line": 5, - "column": 38 - }, - "end": { - "line": 5, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 226, - "end": 227, - "loc": { - "start": { - "line": 5, - "column": 54 - }, - "end": { - "line": 5, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 227, - "end": 228, - "loc": { - "start": { - "line": 5, - "column": 55 - }, - "end": { - "line": 5, - "column": 56 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 231, - "end": 234, - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 235, - "end": 248, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 249, - "end": 250, - "loc": { - "start": { - "line": 6, - "column": 20 - }, - "end": { - "line": 6, - "column": 21 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 251, - "end": 252, - "loc": { - "start": { - "line": 6, - "column": 22 - }, - "end": { - "line": 6, - "column": 23 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 252, - "end": 253, - "loc": { - "start": { - "line": 6, - "column": 23 - }, - "end": { - "line": 6, - "column": 24 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 253, - "end": 254, - "loc": { - "start": { - "line": 6, - "column": 24 - }, - "end": { - "line": 6, - "column": 25 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 257, - "end": 260, - "loc": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prevText", - "start": 261, - "end": 269, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 269, - "end": 270, - "loc": { - "start": { - "line": 7, - "column": 14 - }, - "end": { - "line": 7, - "column": 15 - } - } - }, - { - "type": "CommentLine", - "value": " active search box and focus when mouse enter on search box.", - "start": 274, - "end": 336, - "loc": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchBox", - "start": 339, - "end": 348, - "loc": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 11 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 348, - "end": 349, - "loc": { - "start": { - "line": 10, - "column": 11 - }, - "end": { - "line": 10, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 349, - "end": 365, - "loc": { - "start": { - "line": 10, - "column": 12 - }, - "end": { - "line": 10, - "column": 28 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 365, - "end": 366, - "loc": { - "start": { - "line": 10, - "column": 28 - }, - "end": { - "line": 10, - "column": 29 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "mouseenter", - "start": 366, - "end": 378, - "loc": { - "start": { - "line": 10, - "column": 29 - }, - "end": { - "line": 10, - "column": 41 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 378, - "end": 379, - "loc": { - "start": { - "line": 10, - "column": 41 - }, - "end": { - "line": 10, - "column": 42 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 380, - "end": 388, - "loc": { - "start": { - "line": 10, - "column": 43 - }, - "end": { - "line": 10, - "column": 51 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 389, - "end": 390, - "loc": { - "start": { - "line": 10, - "column": 52 - }, - "end": { - "line": 10, - "column": 53 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 390, - "end": 391, - "loc": { - "start": { - "line": 10, - "column": 53 - }, - "end": { - "line": 10, - "column": 54 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 392, - "end": 393, - "loc": { - "start": { - "line": 10, - "column": 55 - }, - "end": { - "line": 10, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchBox", - "start": 398, - "end": 407, - "loc": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 407, - "end": 408, - "loc": { - "start": { - "line": 11, - "column": 13 - }, - "end": { - "line": 11, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 408, - "end": 417, - "loc": { - "start": { - "line": 11, - "column": 14 - }, - "end": { - "line": 11, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 417, - "end": 418, - "loc": { - "start": { - "line": 11, - "column": 23 - }, - "end": { - "line": 11, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 418, - "end": 421, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 27 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 421, - "end": 422, - "loc": { - "start": { - "line": 11, - "column": 27 - }, - "end": { - "line": 11, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "active", - "start": 422, - "end": 430, - "loc": { - "start": { - "line": 11, - "column": 28 - }, - "end": { - "line": 11, - "column": 36 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 430, - "end": 431, - "loc": { - "start": { - "line": 11, - "column": 36 - }, - "end": { - "line": 11, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 431, - "end": 432, - "loc": { - "start": { - "line": 11, - "column": 37 - }, - "end": { - "line": 11, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "input", - "start": 437, - "end": 442, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 9 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 442, - "end": 443, - "loc": { - "start": { - "line": 12, - "column": 9 - }, - "end": { - "line": 12, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "focus", - "start": 443, - "end": 448, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 448, - "end": 449, - "loc": { - "start": { - "line": 12, - "column": 15 - }, - "end": { - "line": 12, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 449, - "end": 450, - "loc": { - "start": { - "line": 12, - "column": 16 - }, - "end": { - "line": 12, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 450, - "end": 451, - "loc": { - "start": { - "line": 12, - "column": 17 - }, - "end": { - "line": 12, - "column": 18 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 454, - "end": 455, - "loc": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 455, - "end": 456, - "loc": { - "start": { - "line": 13, - "column": 3 - }, - "end": { - "line": 13, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 456, - "end": 457, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 13, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " search with text when key is upped.", - "start": 461, - "end": 499, - "loc": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "input", - "start": 502, - "end": 507, - "loc": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 7 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 507, - "end": 508, - "loc": { - "start": { - "line": 16, - "column": 7 - }, - "end": { - "line": 16, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 508, - "end": 524, - "loc": { - "start": { - "line": 16, - "column": 8 - }, - "end": { - "line": 16, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 524, - "end": 525, - "loc": { - "start": { - "line": 16, - "column": 24 - }, - "end": { - "line": 16, - "column": 25 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "keyup", - "start": 525, - "end": 532, - "loc": { - "start": { - "line": 16, - "column": 25 - }, - "end": { - "line": 16, - "column": 32 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 532, - "end": 533, - "loc": { - "start": { - "line": 16, - "column": 32 - }, - "end": { - "line": 16, - "column": 33 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 534, - "end": 542, - "loc": { - "start": { - "line": 16, - "column": 34 - }, - "end": { - "line": 16, - "column": 42 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 543, - "end": 544, - "loc": { - "start": { - "line": 16, - "column": 43 - }, - "end": { - "line": 16, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 544, - "end": 546, - "loc": { - "start": { - "line": 16, - "column": 44 - }, - "end": { - "line": 16, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 546, - "end": 547, - "loc": { - "start": { - "line": 16, - "column": 46 - }, - "end": { - "line": 16, - "column": 47 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 548, - "end": 549, - "loc": { - "start": { - "line": 16, - "column": 48 - }, - "end": { - "line": 16, - "column": 49 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 554, - "end": 557, - "loc": { - "start": { - "line": 17, - "column": 4 - }, - "end": { - "line": 17, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "text", - "start": 558, - "end": 562, - "loc": { - "start": { - "line": 17, - "column": 8 - }, - "end": { - "line": 17, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 563, - "end": 564, - "loc": { - "start": { - "line": 17, - "column": 13 - }, - "end": { - "line": 17, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 565, - "end": 567, - "loc": { - "start": { - "line": 17, - "column": 15 - }, - "end": { - "line": 17, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 567, - "end": 568, - "loc": { - "start": { - "line": 17, - "column": 17 - }, - "end": { - "line": 17, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 568, - "end": 574, - "loc": { - "start": { - "line": 17, - "column": 18 - }, - "end": { - "line": 17, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 574, - "end": 575, - "loc": { - "start": { - "line": 17, - "column": 24 - }, - "end": { - "line": 17, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "value", - "start": 575, - "end": 580, - "loc": { - "start": { - "line": 17, - "column": 25 - }, - "end": { - "line": 17, - "column": 30 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 580, - "end": 581, - "loc": { - "start": { - "line": 17, - "column": 30 - }, - "end": { - "line": 17, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toLowerCase", - "start": 581, - "end": 592, - "loc": { - "start": { - "line": 17, - "column": 31 - }, - "end": { - "line": 17, - "column": 42 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 592, - "end": 593, - "loc": { - "start": { - "line": 17, - "column": 42 - }, - "end": { - "line": 17, - "column": 43 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 593, - "end": 594, - "loc": { - "start": { - "line": 17, - "column": 43 - }, - "end": { - "line": 17, - "column": 44 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 594, - "end": 595, - "loc": { - "start": { - "line": 17, - "column": 44 - }, - "end": { - "line": 17, - "column": 45 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 600, - "end": 602, - "loc": { - "start": { - "line": 18, - "column": 4 - }, - "end": { - "line": 18, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 603, - "end": 604, - "loc": { - "start": { - "line": 18, - "column": 7 - }, - "end": { - "line": 18, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 604, - "end": 605, - "loc": { - "start": { - "line": 18, - "column": 8 - }, - "end": { - "line": 18, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "text", - "start": 605, - "end": 609, - "loc": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 13 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 609, - "end": 610, - "loc": { - "start": { - "line": 18, - "column": 13 - }, - "end": { - "line": 18, - "column": 14 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 611, - "end": 612, - "loc": { - "start": { - "line": 18, - "column": 15 - }, - "end": { - "line": 18, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 619, - "end": 625, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 625, - "end": 626, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 626, - "end": 631, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 631, - "end": 632, - "loc": { - "start": { - "line": 19, - "column": 18 - }, - "end": { - "line": 19, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 632, - "end": 639, - "loc": { - "start": { - "line": 19, - "column": 19 - }, - "end": { - "line": 19, - "column": 26 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 640, - "end": 641, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "none", - "start": 642, - "end": 648, - "loc": { - "start": { - "line": 19, - "column": 29 - }, - "end": { - "line": 19, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 648, - "end": 649, - "loc": { - "start": { - "line": 19, - "column": 35 - }, - "end": { - "line": 19, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 656, - "end": 662, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 662, - "end": 663, - "loc": { - "start": { - "line": 20, - "column": 12 - }, - "end": { - "line": 20, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 663, - "end": 672, - "loc": { - "start": { - "line": 20, - "column": 13 - }, - "end": { - "line": 20, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 673, - "end": 674, - "loc": { - "start": { - "line": 20, - "column": 23 - }, - "end": { - "line": 20, - "column": 24 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 675, - "end": 677, - "loc": { - "start": { - "line": 20, - "column": 25 - }, - "end": { - "line": 20, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 677, - "end": 678, - "loc": { - "start": { - "line": 20, - "column": 27 - }, - "end": { - "line": 20, - "column": 28 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 685, - "end": 691, - "loc": { - "start": { - "line": 21, - "column": 6 - }, - "end": { - "line": 21, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 691, - "end": 692, - "loc": { - "start": { - "line": 21, - "column": 12 - }, - "end": { - "line": 21, - "column": 13 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 697, - "end": 698, - "loc": { - "start": { - "line": 22, - "column": 4 - }, - "end": { - "line": 22, - "column": 5 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 704, - "end": 706, - "loc": { - "start": { - "line": 24, - "column": 4 - }, - "end": { - "line": 24, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 707, - "end": 708, - "loc": { - "start": { - "line": 24, - "column": 7 - }, - "end": { - "line": 24, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "text", - "start": 708, - "end": 712, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 12 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 713, - "end": 716, - "loc": { - "start": { - "line": 24, - "column": 13 - }, - "end": { - "line": 24, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prevText", - "start": 717, - "end": 725, - "loc": { - "start": { - "line": 24, - "column": 17 - }, - "end": { - "line": 24, - "column": 25 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 24, - "column": 25 - }, - "end": { - "line": 24, - "column": 26 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 727, - "end": 733, - "loc": { - "start": { - "line": 24, - "column": 27 - }, - "end": { - "line": 24, - "column": 33 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 733, - "end": 734, - "loc": { - "start": { - "line": 24, - "column": 33 - }, - "end": { - "line": 24, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prevText", - "start": 739, - "end": 747, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 748, - "end": 749, - "loc": { - "start": { - "line": 25, - "column": 13 - }, - "end": { - "line": 25, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "text", - "start": 750, - "end": 754, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 19 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 754, - "end": 755, - "loc": { - "start": { - "line": 25, - "column": 19 - }, - "end": { - "line": 25, - "column": 20 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 761, - "end": 764, - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 27, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "html", - "start": 765, - "end": 769, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 27, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 770, - "end": 771, - "loc": { - "start": { - "line": 27, - "column": 13 - }, - "end": { - "line": 27, - "column": 14 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 772, - "end": 773, - "loc": { - "start": { - "line": 27, - "column": 15 - }, - "end": { - "line": 27, - "column": 16 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 774, - "end": 779, - "loc": { - "start": { - "line": 27, - "column": 17 - }, - "end": { - "line": 27, - "column": 22 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 779, - "end": 780, - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 23 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 781, - "end": 782, - "loc": { - "start": { - "line": 27, - "column": 24 - }, - "end": { - "line": 27, - "column": 25 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 782, - "end": 783, - "loc": { - "start": { - "line": 27, - "column": 25 - }, - "end": { - "line": 27, - "column": 26 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 783, - "end": 784, - "loc": { - "start": { - "line": 27, - "column": 26 - }, - "end": { - "line": 27, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "method", - "start": 785, - "end": 791, - "loc": { - "start": { - "line": 27, - "column": 28 - }, - "end": { - "line": 27, - "column": 34 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 791, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 34 - }, - "end": { - "line": 27, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 793, - "end": 794, - "loc": { - "start": { - "line": 27, - "column": 36 - }, - "end": { - "line": 27, - "column": 37 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 794, - "end": 795, - "loc": { - "start": { - "line": 27, - "column": 37 - }, - "end": { - "line": 27, - "column": 38 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 795, - "end": 796, - "loc": { - "start": { - "line": 27, - "column": 38 - }, - "end": { - "line": 27, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "member", - "start": 797, - "end": 803, - "loc": { - "start": { - "line": 27, - "column": 40 - }, - "end": { - "line": 27, - "column": 46 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 803, - "end": 804, - "loc": { - "start": { - "line": 27, - "column": 46 - }, - "end": { - "line": 27, - "column": 47 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 805, - "end": 806, - "loc": { - "start": { - "line": 27, - "column": 48 - }, - "end": { - "line": 27, - "column": 49 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 806, - "end": 807, - "loc": { - "start": { - "line": 27, - "column": 49 - }, - "end": { - "line": 27, - "column": 50 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 807, - "end": 808, - "loc": { - "start": { - "line": 27, - "column": 50 - }, - "end": { - "line": 27, - "column": 51 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 809, - "end": 817, - "loc": { - "start": { - "line": 27, - "column": 52 - }, - "end": { - "line": 27, - "column": 60 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 817, - "end": 818, - "loc": { - "start": { - "line": 27, - "column": 60 - }, - "end": { - "line": 27, - "column": 61 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 819, - "end": 820, - "loc": { - "start": { - "line": 27, - "column": 62 - }, - "end": { - "line": 27, - "column": 63 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 820, - "end": 821, - "loc": { - "start": { - "line": 27, - "column": 63 - }, - "end": { - "line": 27, - "column": 64 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 821, - "end": 822, - "loc": { - "start": { - "line": 27, - "column": 64 - }, - "end": { - "line": 27, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "variable", - "start": 823, - "end": 831, - "loc": { - "start": { - "line": 27, - "column": 66 - }, - "end": { - "line": 27, - "column": 74 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 831, - "end": 832, - "loc": { - "start": { - "line": 27, - "column": 74 - }, - "end": { - "line": 27, - "column": 75 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 833, - "end": 834, - "loc": { - "start": { - "line": 27, - "column": 76 - }, - "end": { - "line": 27, - "column": 77 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 834, - "end": 835, - "loc": { - "start": { - "line": 27, - "column": 77 - }, - "end": { - "line": 27, - "column": 78 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 835, - "end": 836, - "loc": { - "start": { - "line": 27, - "column": 78 - }, - "end": { - "line": 27, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "typedef", - "start": 837, - "end": 844, - "loc": { - "start": { - "line": 27, - "column": 80 - }, - "end": { - "line": 27, - "column": 87 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 844, - "end": 845, - "loc": { - "start": { - "line": 27, - "column": 87 - }, - "end": { - "line": 27, - "column": 88 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 846, - "end": 847, - "loc": { - "start": { - "line": 27, - "column": 89 - }, - "end": { - "line": 27, - "column": 90 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 847, - "end": 848, - "loc": { - "start": { - "line": 27, - "column": 90 - }, - "end": { - "line": 27, - "column": 91 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 848, - "end": 849, - "loc": { - "start": { - "line": 27, - "column": 91 - }, - "end": { - "line": 27, - "column": 92 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "external", - "start": 850, - "end": 858, - "loc": { - "start": { - "line": 27, - "column": 93 - }, - "end": { - "line": 27, - "column": 101 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 858, - "end": 859, - "loc": { - "start": { - "line": 27, - "column": 101 - }, - "end": { - "line": 27, - "column": 102 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 860, - "end": 861, - "loc": { - "start": { - "line": 27, - "column": 103 - }, - "end": { - "line": 27, - "column": 104 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 861, - "end": 862, - "loc": { - "start": { - "line": 27, - "column": 104 - }, - "end": { - "line": 27, - "column": 105 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 862, - "end": 863, - "loc": { - "start": { - "line": 27, - "column": 105 - }, - "end": { - "line": 27, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "file", - "start": 864, - "end": 868, - "loc": { - "start": { - "line": 27, - "column": 107 - }, - "end": { - "line": 27, - "column": 111 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 868, - "end": 869, - "loc": { - "start": { - "line": 27, - "column": 111 - }, - "end": { - "line": 27, - "column": 112 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 870, - "end": 871, - "loc": { - "start": { - "line": 27, - "column": 113 - }, - "end": { - "line": 27, - "column": 114 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 871, - "end": 872, - "loc": { - "start": { - "line": 27, - "column": 114 - }, - "end": { - "line": 27, - "column": 115 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 872, - "end": 873, - "loc": { - "start": { - "line": 27, - "column": 115 - }, - "end": { - "line": 27, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "test", - "start": 874, - "end": 878, - "loc": { - "start": { - "line": 27, - "column": 117 - }, - "end": { - "line": 27, - "column": 121 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 878, - "end": 879, - "loc": { - "start": { - "line": 27, - "column": 121 - }, - "end": { - "line": 27, - "column": 122 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 880, - "end": 881, - "loc": { - "start": { - "line": 27, - "column": 123 - }, - "end": { - "line": 27, - "column": 124 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 881, - "end": 882, - "loc": { - "start": { - "line": 27, - "column": 124 - }, - "end": { - "line": 27, - "column": 125 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 882, - "end": 883, - "loc": { - "start": { - "line": 27, - "column": 125 - }, - "end": { - "line": 27, - "column": 126 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "testFile", - "start": 884, - "end": 892, - "loc": { - "start": { - "line": 27, - "column": 127 - }, - "end": { - "line": 27, - "column": 135 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 892, - "end": 893, - "loc": { - "start": { - "line": 27, - "column": 135 - }, - "end": { - "line": 27, - "column": 136 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 894, - "end": 895, - "loc": { - "start": { - "line": 27, - "column": 137 - }, - "end": { - "line": 27, - "column": 138 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 895, - "end": 896, - "loc": { - "start": { - "line": 27, - "column": 138 - }, - "end": { - "line": 27, - "column": 139 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 897, - "end": 898, - "loc": { - "start": { - "line": 27, - "column": 140 - }, - "end": { - "line": 27, - "column": 141 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 898, - "end": 899, - "loc": { - "start": { - "line": 27, - "column": 141 - }, - "end": { - "line": 27, - "column": 142 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 904, - "end": 907, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "len", - "start": 908, - "end": 911, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 912, - "end": 913, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchIndex", - "start": 914, - "end": 925, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 925, - "end": 926, - "loc": { - "start": { - "line": 28, - "column": 25 - }, - "end": { - "line": 28, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 926, - "end": 932, - "loc": { - "start": { - "line": 28, - "column": 26 - }, - "end": { - "line": 28, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 932, - "end": 933, - "loc": { - "start": { - "line": 28, - "column": 32 - }, - "end": { - "line": 28, - "column": 33 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 938, - "end": 941, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 942, - "end": 946, - "loc": { - "start": { - "line": 29, - "column": 8 - }, - "end": { - "line": 29, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 946, - "end": 947, - "loc": { - "start": { - "line": 29, - "column": 12 - }, - "end": { - "line": 29, - "column": 13 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 952, - "end": 955, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 956, - "end": 957, - "loc": { - "start": { - "line": 30, - "column": 8 - }, - "end": { - "line": 30, - "column": 9 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 957, - "end": 960, - "loc": { - "start": { - "line": 30, - "column": 9 - }, - "end": { - "line": 30, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 961, - "end": 962, - "loc": { - "start": { - "line": 30, - "column": 13 - }, - "end": { - "line": 30, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 963, - "end": 964, - "loc": { - "start": { - "line": 30, - "column": 15 - }, - "end": { - "line": 30, - "column": 16 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 965, - "end": 966, - "loc": { - "start": { - "line": 30, - "column": 17 - }, - "end": { - "line": 30, - "column": 18 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 966, - "end": 967, - "loc": { - "start": { - "line": 30, - "column": 18 - }, - "end": { - "line": 30, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 968, - "end": 969, - "loc": { - "start": { - "line": 30, - "column": 20 - }, - "end": { - "line": 30, - "column": 21 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 970, - "end": 971, - "loc": { - "start": { - "line": 30, - "column": 22 - }, - "end": { - "line": 30, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "len", - "start": 972, - "end": 975, - "loc": { - "start": { - "line": 30, - "column": 24 - }, - "end": { - "line": 30, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 975, - "end": 976, - "loc": { - "start": { - "line": 30, - "column": 27 - }, - "end": { - "line": 30, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 977, - "end": 978, - "loc": { - "start": { - "line": 30, - "column": 29 - }, - "end": { - "line": 30, - "column": 30 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 978, - "end": 980, - "loc": { - "start": { - "line": 30, - "column": 30 - }, - "end": { - "line": 30, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 980, - "end": 981, - "loc": { - "start": { - "line": 30, - "column": 32 - }, - "end": { - "line": 30, - "column": 33 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 982, - "end": 983, - "loc": { - "start": { - "line": 30, - "column": 34 - }, - "end": { - "line": 30, - "column": 35 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 990, - "end": 993, - "loc": { - "start": { - "line": 31, - "column": 6 - }, - "end": { - "line": 31, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "pair", - "start": 994, - "end": 998, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 999, - "end": 1000, - "loc": { - "start": { - "line": 31, - "column": 15 - }, - "end": { - "line": 31, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "searchIndex", - "start": 1001, - "end": 1012, - "loc": { - "start": { - "line": 31, - "column": 17 - }, - "end": { - "line": 31, - "column": 28 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1012, - "end": 1013, - "loc": { - "start": { - "line": 31, - "column": 28 - }, - "end": { - "line": 31, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1013, - "end": 1014, - "loc": { - "start": { - "line": 31, - "column": 29 - }, - "end": { - "line": 31, - "column": 30 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1014, - "end": 1015, - "loc": { - "start": { - "line": 31, - "column": 30 - }, - "end": { - "line": 31, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1015, - "end": 1016, - "loc": { - "start": { - "line": 31, - "column": 31 - }, - "end": { - "line": 31, - "column": 32 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1023, - "end": 1025, - "loc": { - "start": { - "line": 32, - "column": 6 - }, - "end": { - "line": 32, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1026, - "end": 1027, - "loc": { - "start": { - "line": 32, - "column": 9 - }, - "end": { - "line": 32, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "pair", - "start": 1027, - "end": 1031, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 14 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1031, - "end": 1032, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 15 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1032, - "end": 1033, - "loc": { - "start": { - "line": 32, - "column": 15 - }, - "end": { - "line": 32, - "column": 16 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1033, - "end": 1034, - "loc": { - "start": { - "line": 32, - "column": 16 - }, - "end": { - "line": 32, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1034, - "end": 1035, - "loc": { - "start": { - "line": 32, - "column": 17 - }, - "end": { - "line": 32, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "indexOf", - "start": 1035, - "end": 1042, - "loc": { - "start": { - "line": 32, - "column": 18 - }, - "end": { - "line": 32, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1042, - "end": 1043, - "loc": { - "start": { - "line": 32, - "column": 25 - }, - "end": { - "line": 32, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "text", - "start": 1043, - "end": 1047, - "loc": { - "start": { - "line": 32, - "column": 26 - }, - "end": { - "line": 32, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1047, - "end": 1048, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 32, - "column": 31 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 1049, - "end": 1052, - "loc": { - "start": { - "line": 32, - "column": 32 - }, - "end": { - "line": 32, - "column": 35 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1053, - "end": 1054, - "loc": { - "start": { - "line": 32, - "column": 36 - }, - "end": { - "line": 32, - "column": 37 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1054, - "end": 1055, - "loc": { - "start": { - "line": 32, - "column": 37 - }, - "end": { - "line": 32, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1055, - "end": 1056, - "loc": { - "start": { - "line": 32, - "column": 38 - }, - "end": { - "line": 32, - "column": 39 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1057, - "end": 1058, - "loc": { - "start": { - "line": 32, - "column": 40 - }, - "end": { - "line": 32, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 1067, - "end": 1071, - "loc": { - "start": { - "line": 33, - "column": 8 - }, - "end": { - "line": 33, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1072, - "end": 1073, - "loc": { - "start": { - "line": 33, - "column": 13 - }, - "end": { - "line": 33, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "pair", - "start": 1074, - "end": 1078, - "loc": { - "start": { - "line": 33, - "column": 15 - }, - "end": { - "line": 33, - "column": 19 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1078, - "end": 1079, - "loc": { - "start": { - "line": 33, - "column": 19 - }, - "end": { - "line": 33, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 3, - "start": 1079, - "end": 1080, - "loc": { - "start": { - "line": 33, - "column": 20 - }, - "end": { - "line": 33, - "column": 21 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1080, - "end": 1081, - "loc": { - "start": { - "line": 33, - "column": 21 - }, - "end": { - "line": 33, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1081, - "end": 1082, - "loc": { - "start": { - "line": 33, - "column": 22 - }, - "end": { - "line": 33, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "html", - "start": 1091, - "end": 1095, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 12 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1095, - "end": 1096, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 1096, - "end": 1100, - "loc": { - "start": { - "line": 34, - "column": 13 - }, - "end": { - "line": 34, - "column": 17 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1100, - "end": 1101, - "loc": { - "start": { - "line": 34, - "column": 17 - }, - "end": { - "line": 34, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1101, - "end": 1102, - "loc": { - "start": { - "line": 34, - "column": 18 - }, - "end": { - "line": 34, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "push", - "start": 1102, - "end": 1106, - "loc": { - "start": { - "line": 34, - "column": 19 - }, - "end": { - "line": 34, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1106, - "end": 1107, - "loc": { - "start": { - "line": 34, - "column": 23 - }, - "end": { - "line": 34, - "column": 24 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "
  • ", - "start": 1135, - "end": 1139, - "loc": { - "start": { - "line": 34, - "column": 52 - }, - "end": { - "line": 34, - "column": 56 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1140, - "end": 1141, - "loc": { - "start": { - "line": 34, - "column": 57 - }, - "end": { - "line": 34, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "pair", - "start": 1142, - "end": 1146, - "loc": { - "start": { - "line": 34, - "column": 59 - }, - "end": { - "line": 34, - "column": 63 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1146, - "end": 1147, - "loc": { - "start": { - "line": 34, - "column": 63 - }, - "end": { - "line": 34, - "column": 64 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 1147, - "end": 1148, - "loc": { - "start": { - "line": 34, - "column": 64 - }, - "end": { - "line": 34, - "column": 65 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1148, - "end": 1149, - "loc": { - "start": { - "line": 34, - "column": 65 - }, - "end": { - "line": 34, - "column": 66 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1150, - "end": 1151, - "loc": { - "start": { - "line": 34, - "column": 67 - }, - "end": { - "line": 34, - "column": 68 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "
  • ", - "start": 1152, - "end": 1163, - "loc": { - "start": { - "line": 34, - "column": 69 - }, - "end": { - "line": 34, - "column": 80 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1163, - "end": 1164, - "loc": { - "start": { - "line": 34, - "column": 80 - }, - "end": { - "line": 34, - "column": 81 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1164, - "end": 1165, - "loc": { - "start": { - "line": 34, - "column": 81 - }, - "end": { - "line": 34, - "column": 82 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1172, - "end": 1173, - "loc": { - "start": { - "line": 35, - "column": 6 - }, - "end": { - "line": 35, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1178, - "end": 1179, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 5 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1185, - "end": 1188, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 1189, - "end": 1198, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1199, - "end": 1200, - "loc": { - "start": { - "line": 38, - "column": 18 - }, - "end": { - "line": 38, - "column": 19 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 1201, - "end": 1203, - "loc": { - "start": { - "line": 38, - "column": 20 - }, - "end": { - "line": 38, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1203, - "end": 1204, - "loc": { - "start": { - "line": 38, - "column": 22 - }, - "end": { - "line": 38, - "column": 23 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1209, - "end": 1212, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1213, - "end": 1214, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 1214, - "end": 1218, - "loc": { - "start": { - "line": 39, - "column": 9 - }, - "end": { - "line": 39, - "column": 13 - } - } - }, - { - "type": { - "label": "in", - "keyword": "in", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "in", - "start": 1219, - "end": 1221, - "loc": { - "start": { - "line": 39, - "column": 14 - }, - "end": { - "line": 39, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "html", - "start": 1222, - "end": 1226, - "loc": { - "start": { - "line": 39, - "column": 17 - }, - "end": { - "line": 39, - "column": 21 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1226, - "end": 1227, - "loc": { - "start": { - "line": 39, - "column": 21 - }, - "end": { - "line": 39, - "column": 22 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1228, - "end": 1229, - "loc": { - "start": { - "line": 39, - "column": 23 - }, - "end": { - "line": 39, - "column": 24 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1236, - "end": 1239, - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 40, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "list", - "start": 1240, - "end": 1244, - "loc": { - "start": { - "line": 40, - "column": 10 - }, - "end": { - "line": 40, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1245, - "end": 1246, - "loc": { - "start": { - "line": 40, - "column": 15 - }, - "end": { - "line": 40, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "html", - "start": 1247, - "end": 1251, - "loc": { - "start": { - "line": 40, - "column": 17 - }, - "end": { - "line": 40, - "column": 21 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1251, - "end": 1252, - "loc": { - "start": { - "line": 40, - "column": 21 - }, - "end": { - "line": 40, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 1252, - "end": 1256, - "loc": { - "start": { - "line": 40, - "column": 22 - }, - "end": { - "line": 40, - "column": 26 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1256, - "end": 1257, - "loc": { - "start": { - "line": 40, - "column": 26 - }, - "end": { - "line": 40, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1257, - "end": 1258, - "loc": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1265, - "end": 1267, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1268, - "end": 1269, - "loc": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 1269, - "end": 1270, - "loc": { - "start": { - "line": 41, - "column": 10 - }, - "end": { - "line": 41, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "list", - "start": 1270, - "end": 1274, - "loc": { - "start": { - "line": 41, - "column": 11 - }, - "end": { - "line": 41, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1274, - "end": 1275, - "loc": { - "start": { - "line": 41, - "column": 15 - }, - "end": { - "line": 41, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1275, - "end": 1281, - "loc": { - "start": { - "line": 41, - "column": 16 - }, - "end": { - "line": 41, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1281, - "end": 1282, - "loc": { - "start": { - "line": 41, - "column": 22 - }, - "end": { - "line": 41, - "column": 23 - } - } - }, - { - "type": { - "label": "continue", - "keyword": "continue", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "continue", - "start": 1283, - "end": 1291, - "loc": { - "start": { - "line": 41, - "column": 24 - }, - "end": { - "line": 41, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1291, - "end": 1292, - "loc": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 1299, - "end": 1308, - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 1309, - "end": 1311, - "loc": { - "start": { - "line": 42, - "column": 16 - }, - "end": { - "line": 42, - "column": 18 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "
  • ", - "start": 1312, - "end": 1343, - "loc": { - "start": { - "line": 42, - "column": 19 - }, - "end": { - "line": 42, - "column": 50 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1344, - "end": 1345, - "loc": { - "start": { - "line": 42, - "column": 51 - }, - "end": { - "line": 42, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "kind", - "start": 1346, - "end": 1350, - "loc": { - "start": { - "line": 42, - "column": 53 - }, - "end": { - "line": 42, - "column": 57 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1351, - "end": 1352, - "loc": { - "start": { - "line": 42, - "column": 58 - }, - "end": { - "line": 42, - "column": 59 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "
  • \n", - "start": 1353, - "end": 1362, - "loc": { - "start": { - "line": 42, - "column": 60 - }, - "end": { - "line": 42, - "column": 69 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1363, - "end": 1364, - "loc": { - "start": { - "line": 42, - "column": 70 - }, - "end": { - "line": 42, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "list", - "start": 1365, - "end": 1369, - "loc": { - "start": { - "line": 42, - "column": 72 - }, - "end": { - "line": 42, - "column": 76 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1369, - "end": 1370, - "loc": { - "start": { - "line": 42, - "column": 76 - }, - "end": { - "line": 42, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "join", - "start": 1370, - "end": 1374, - "loc": { - "start": { - "line": 42, - "column": 77 - }, - "end": { - "line": 42, - "column": 81 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1374, - "end": 1375, - "loc": { - "start": { - "line": 42, - "column": 81 - }, - "end": { - "line": 42, - "column": 82 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "\n", - "start": 1375, - "end": 1379, - "loc": { - "start": { - "line": 42, - "column": 82 - }, - "end": { - "line": 42, - "column": 86 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1379, - "end": 1380, - "loc": { - "start": { - "line": 42, - "column": 86 - }, - "end": { - "line": 42, - "column": 87 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1380, - "end": 1381, - "loc": { - "start": { - "line": 42, - "column": 87 - }, - "end": { - "line": 42, - "column": 88 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1386, - "end": 1387, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 1392, - "end": 1398, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1398, - "end": 1399, - "loc": { - "start": { - "line": 44, - "column": 10 - }, - "end": { - "line": 44, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 1399, - "end": 1408, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1409, - "end": 1410, - "loc": { - "start": { - "line": 44, - "column": 21 - }, - "end": { - "line": 44, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 1411, - "end": 1420, - "loc": { - "start": { - "line": 44, - "column": 23 - }, - "end": { - "line": 44, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1420, - "end": 1421, - "loc": { - "start": { - "line": 44, - "column": 32 - }, - "end": { - "line": 44, - "column": 33 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1426, - "end": 1428, - "loc": { - "start": { - "line": 45, - "column": 4 - }, - "end": { - "line": 45, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1429, - "end": 1430, - "loc": { - "start": { - "line": 45, - "column": 7 - }, - "end": { - "line": 45, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 1430, - "end": 1439, - "loc": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1439, - "end": 1440, - "loc": { - "start": { - "line": 45, - "column": 17 - }, - "end": { - "line": 45, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 1441, - "end": 1447, - "loc": { - "start": { - "line": 45, - "column": 19 - }, - "end": { - "line": 45, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1447, - "end": 1448, - "loc": { - "start": { - "line": 45, - "column": 25 - }, - "end": { - "line": 45, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 1448, - "end": 1453, - "loc": { - "start": { - "line": 45, - "column": 26 - }, - "end": { - "line": 45, - "column": 31 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1453, - "end": 1454, - "loc": { - "start": { - "line": 45, - "column": 31 - }, - "end": { - "line": 45, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 1454, - "end": 1461, - "loc": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 39 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1462, - "end": 1463, - "loc": { - "start": { - "line": 45, - "column": 40 - }, - "end": { - "line": 45, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "block", - "start": 1464, - "end": 1471, - "loc": { - "start": { - "line": 45, - "column": 42 - }, - "end": { - "line": 45, - "column": 49 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1471, - "end": 1472, - "loc": { - "start": { - "line": 45, - "column": 49 - }, - "end": { - "line": 45, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 1477, - "end": 1490, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1491, - "end": 1492, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 1493, - "end": 1494, - "loc": { - "start": { - "line": 46, - "column": 20 - }, - "end": { - "line": 46, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1494, - "end": 1495, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1495, - "end": 1496, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 23 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1499, - "end": 1500, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1500, - "end": 1501, - "loc": { - "start": { - "line": 47, - "column": 3 - }, - "end": { - "line": 47, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1501, - "end": 1502, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " down, up and enter key are pressed, select search result.", - "start": 1506, - "end": 1566, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 49, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "input", - "start": 1569, - "end": 1574, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 7 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1574, - "end": 1575, - "loc": { - "start": { - "line": 50, - "column": 7 - }, - "end": { - "line": 50, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 1575, - "end": 1591, - "loc": { - "start": { - "line": 50, - "column": 8 - }, - "end": { - "line": 50, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1591, - "end": 1592, - "loc": { - "start": { - "line": 50, - "column": 24 - }, - "end": { - "line": 50, - "column": 25 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "keydown", - "start": 1592, - "end": 1601, - "loc": { - "start": { - "line": 50, - "column": 25 - }, - "end": { - "line": 50, - "column": 34 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1601, - "end": 1602, - "loc": { - "start": { - "line": 50, - "column": 34 - }, - "end": { - "line": 50, - "column": 35 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1603, - "end": 1611, - "loc": { - "start": { - "line": 50, - "column": 36 - }, - "end": { - "line": 50, - "column": 44 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1612, - "end": 1613, - "loc": { - "start": { - "line": 50, - "column": 45 - }, - "end": { - "line": 50, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 1613, - "end": 1615, - "loc": { - "start": { - "line": 50, - "column": 46 - }, - "end": { - "line": 50, - "column": 48 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1615, - "end": 1616, - "loc": { - "start": { - "line": 50, - "column": 48 - }, - "end": { - "line": 50, - "column": 49 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1617, - "end": 1618, - "loc": { - "start": { - "line": 50, - "column": 50 - }, - "end": { - "line": 50, - "column": 51 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1623, - "end": 1625, - "loc": { - "start": { - "line": 51, - "column": 4 - }, - "end": { - "line": 51, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1626, - "end": 1627, - "loc": { - "start": { - "line": 51, - "column": 7 - }, - "end": { - "line": 51, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 1627, - "end": 1629, - "loc": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1629, - "end": 1630, - "loc": { - "start": { - "line": 51, - "column": 10 - }, - "end": { - "line": 51, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keyCode", - "start": 1630, - "end": 1637, - "loc": { - "start": { - "line": 51, - "column": 11 - }, - "end": { - "line": 51, - "column": 18 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 1638, - "end": 1641, - "loc": { - "start": { - "line": 51, - "column": 19 - }, - "end": { - "line": 51, - "column": 22 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 40, - "start": 1642, - "end": 1644, - "loc": { - "start": { - "line": 51, - "column": 23 - }, - "end": { - "line": 51, - "column": 25 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1644, - "end": 1645, - "loc": { - "start": { - "line": 51, - "column": 25 - }, - "end": { - "line": 51, - "column": 26 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1646, - "end": 1647, - "loc": { - "start": { - "line": 51, - "column": 27 - }, - "end": { - "line": 51, - "column": 28 - } - } - }, - { - "type": "CommentLine", - "value": " arrow down", - "start": 1654, - "end": 1667, - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 52, - "column": 19 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1674, - "end": 1677, - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 53, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 1678, - "end": 1685, - "loc": { - "start": { - "line": 53, - "column": 10 - }, - "end": { - "line": 53, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1686, - "end": 1687, - "loc": { - "start": { - "line": 53, - "column": 18 - }, - "end": { - "line": 53, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 1688, - "end": 1694, - "loc": { - "start": { - "line": 53, - "column": 20 - }, - "end": { - "line": 53, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1694, - "end": 1695, - "loc": { - "start": { - "line": 53, - "column": 26 - }, - "end": { - "line": 53, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 1695, - "end": 1703, - "loc": { - "start": { - "line": 53, - "column": 27 - }, - "end": { - "line": 53, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1703, - "end": 1704, - "loc": { - "start": { - "line": 53, - "column": 35 - }, - "end": { - "line": 53, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 1704, - "end": 1717, - "loc": { - "start": { - "line": 53, - "column": 36 - }, - "end": { - "line": 53, - "column": 49 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1717, - "end": 1718, - "loc": { - "start": { - "line": 53, - "column": 49 - }, - "end": { - "line": 53, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1718, - "end": 1719, - "loc": { - "start": { - "line": 53, - "column": 50 - }, - "end": { - "line": 53, - "column": 51 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1726, - "end": 1729, - "loc": { - "start": { - "line": 54, - "column": 6 - }, - "end": { - "line": 54, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 1730, - "end": 1738, - "loc": { - "start": { - "line": 54, - "column": 10 - }, - "end": { - "line": 54, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1739, - "end": 1740, - "loc": { - "start": { - "line": 54, - "column": 19 - }, - "end": { - "line": 54, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 1741, - "end": 1747, - "loc": { - "start": { - "line": 54, - "column": 21 - }, - "end": { - "line": 54, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1747, - "end": 1748, - "loc": { - "start": { - "line": 54, - "column": 27 - }, - "end": { - "line": 54, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 1748, - "end": 1756, - "loc": { - "start": { - "line": 54, - "column": 28 - }, - "end": { - "line": 54, - "column": 36 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1756, - "end": 1757, - "loc": { - "start": { - "line": 54, - "column": 36 - }, - "end": { - "line": 54, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 1757, - "end": 1770, - "loc": { - "start": { - "line": 54, - "column": 37 - }, - "end": { - "line": 54, - "column": 50 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1771, - "end": 1772, - "loc": { - "start": { - "line": 54, - "column": 51 - }, - "end": { - "line": 54, - "column": 52 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1773, - "end": 1774, - "loc": { - "start": { - "line": 54, - "column": 53 - }, - "end": { - "line": 54, - "column": 54 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1774, - "end": 1775, - "loc": { - "start": { - "line": 54, - "column": 54 - }, - "end": { - "line": 54, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1775, - "end": 1776, - "loc": { - "start": { - "line": 54, - "column": 55 - }, - "end": { - "line": 54, - "column": 56 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1783, - "end": 1785, - "loc": { - "start": { - "line": 55, - "column": 6 - }, - "end": { - "line": 55, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1786, - "end": 1787, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 1787, - "end": 1795, - "loc": { - "start": { - "line": 55, - "column": 10 - }, - "end": { - "line": 55, - "column": 18 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1796, - "end": 1798, - "loc": { - "start": { - "line": 55, - "column": 19 - }, - "end": { - "line": 55, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 1799, - "end": 1807, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 30 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1807, - "end": 1808, - "loc": { - "start": { - "line": 55, - "column": 30 - }, - "end": { - "line": 55, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 1808, - "end": 1817, - "loc": { - "start": { - "line": 55, - "column": 31 - }, - "end": { - "line": 55, - "column": 40 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1817, - "end": 1818, - "loc": { - "start": { - "line": 55, - "column": 40 - }, - "end": { - "line": 55, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 1818, - "end": 1826, - "loc": { - "start": { - "line": 55, - "column": 41 - }, - "end": { - "line": 55, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1826, - "end": 1827, - "loc": { - "start": { - "line": 55, - "column": 49 - }, - "end": { - "line": 55, - "column": 50 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "search-separator", - "start": 1827, - "end": 1845, - "loc": { - "start": { - "line": 55, - "column": 50 - }, - "end": { - "line": 55, - "column": 68 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1845, - "end": 1846, - "loc": { - "start": { - "line": 55, - "column": 68 - }, - "end": { - "line": 55, - "column": 69 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1846, - "end": 1847, - "loc": { - "start": { - "line": 55, - "column": 69 - }, - "end": { - "line": 55, - "column": 70 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1848, - "end": 1849, - "loc": { - "start": { - "line": 55, - "column": 71 - }, - "end": { - "line": 55, - "column": 72 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1858, - "end": 1861, - "loc": { - "start": { - "line": 56, - "column": 8 - }, - "end": { - "line": 56, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 1862, - "end": 1870, - "loc": { - "start": { - "line": 56, - "column": 12 - }, - "end": { - "line": 56, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1871, - "end": 1872, - "loc": { - "start": { - "line": 56, - "column": 21 - }, - "end": { - "line": 56, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 1873, - "end": 1879, - "loc": { - "start": { - "line": 56, - "column": 23 - }, - "end": { - "line": 56, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1879, - "end": 1880, - "loc": { - "start": { - "line": 56, - "column": 29 - }, - "end": { - "line": 56, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 1880, - "end": 1888, - "loc": { - "start": { - "line": 56, - "column": 30 - }, - "end": { - "line": 56, - "column": 38 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1888, - "end": 1889, - "loc": { - "start": { - "line": 56, - "column": 38 - }, - "end": { - "line": 56, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 1889, - "end": 1902, - "loc": { - "start": { - "line": 56, - "column": 39 - }, - "end": { - "line": 56, - "column": 52 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 1903, - "end": 1904, - "loc": { - "start": { - "line": 56, - "column": 53 - }, - "end": { - "line": 56, - "column": 54 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 1905, - "end": 1906, - "loc": { - "start": { - "line": 56, - "column": 55 - }, - "end": { - "line": 56, - "column": 56 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1906, - "end": 1907, - "loc": { - "start": { - "line": 56, - "column": 56 - }, - "end": { - "line": 56, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1907, - "end": 1908, - "loc": { - "start": { - "line": 56, - "column": 57 - }, - "end": { - "line": 56, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 1917, - "end": 1930, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 21 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1930, - "end": 1932, - "loc": { - "start": { - "line": 57, - "column": 21 - }, - "end": { - "line": 57, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1932, - "end": 1933, - "loc": { - "start": { - "line": 57, - "column": 23 - }, - "end": { - "line": 57, - "column": 24 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1940, - "end": 1941, - "loc": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 58, - "column": 7 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1949, - "end": 1951, - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 60, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1952, - "end": 1953, - "loc": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 1953, - "end": 1961, - "loc": { - "start": { - "line": 60, - "column": 10 - }, - "end": { - "line": 60, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1961, - "end": 1962, - "loc": { - "start": { - "line": 60, - "column": 18 - }, - "end": { - "line": 60, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1963, - "end": 1964, - "loc": { - "start": { - "line": 60, - "column": 20 - }, - "end": { - "line": 60, - "column": 21 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1973, - "end": 1975, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1976, - "end": 1977, - "loc": { - "start": { - "line": 61, - "column": 11 - }, - "end": { - "line": 61, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 1977, - "end": 1984, - "loc": { - "start": { - "line": 61, - "column": 12 - }, - "end": { - "line": 61, - "column": 19 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1984, - "end": 1985, - "loc": { - "start": { - "line": 61, - "column": 19 - }, - "end": { - "line": 61, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 1986, - "end": 1993, - "loc": { - "start": { - "line": 61, - "column": 21 - }, - "end": { - "line": 61, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1993, - "end": 1994, - "loc": { - "start": { - "line": 61, - "column": 28 - }, - "end": { - "line": 61, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 1994, - "end": 2003, - "loc": { - "start": { - "line": 61, - "column": 29 - }, - "end": { - "line": 61, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2003, - "end": 2004, - "loc": { - "start": { - "line": 61, - "column": 38 - }, - "end": { - "line": 61, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 2004, - "end": 2010, - "loc": { - "start": { - "line": 61, - "column": 39 - }, - "end": { - "line": 61, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2010, - "end": 2011, - "loc": { - "start": { - "line": 61, - "column": 45 - }, - "end": { - "line": 61, - "column": 46 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 2011, - "end": 2021, - "loc": { - "start": { - "line": 61, - "column": 46 - }, - "end": { - "line": 61, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2021, - "end": 2022, - "loc": { - "start": { - "line": 61, - "column": 56 - }, - "end": { - "line": 61, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2022, - "end": 2023, - "loc": { - "start": { - "line": 61, - "column": 57 - }, - "end": { - "line": 61, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2032, - "end": 2045, - "loc": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 21 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 2045, - "end": 2047, - "loc": { - "start": { - "line": 62, - "column": 21 - }, - "end": { - "line": 62, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2047, - "end": 2048, - "loc": { - "start": { - "line": 62, - "column": 23 - }, - "end": { - "line": 62, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2057, - "end": 2065, - "loc": { - "start": { - "line": 63, - "column": 8 - }, - "end": { - "line": 63, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2065, - "end": 2066, - "loc": { - "start": { - "line": 63, - "column": 16 - }, - "end": { - "line": 63, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 2066, - "end": 2075, - "loc": { - "start": { - "line": 63, - "column": 17 - }, - "end": { - "line": 63, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2075, - "end": 2076, - "loc": { - "start": { - "line": 63, - "column": 26 - }, - "end": { - "line": 63, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 2076, - "end": 2079, - "loc": { - "start": { - "line": 63, - "column": 27 - }, - "end": { - "line": 63, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2079, - "end": 2080, - "loc": { - "start": { - "line": 63, - "column": 30 - }, - "end": { - "line": 63, - "column": 31 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 2080, - "end": 2090, - "loc": { - "start": { - "line": 63, - "column": 31 - }, - "end": { - "line": 63, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2090, - "end": 2091, - "loc": { - "start": { - "line": 63, - "column": 41 - }, - "end": { - "line": 63, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2091, - "end": 2092, - "loc": { - "start": { - "line": 63, - "column": 42 - }, - "end": { - "line": 63, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2099, - "end": 2100, - "loc": { - "start": { - "line": 64, - "column": 6 - }, - "end": { - "line": 64, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2105, - "end": 2106, - "loc": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 65, - "column": 5 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 2107, - "end": 2111, - "loc": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 65, - "column": 10 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2112, - "end": 2114, - "loc": { - "start": { - "line": 65, - "column": 11 - }, - "end": { - "line": 65, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2115, - "end": 2116, - "loc": { - "start": { - "line": 65, - "column": 14 - }, - "end": { - "line": 65, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 2116, - "end": 2118, - "loc": { - "start": { - "line": 65, - "column": 15 - }, - "end": { - "line": 65, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2118, - "end": 2119, - "loc": { - "start": { - "line": 65, - "column": 17 - }, - "end": { - "line": 65, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keyCode", - "start": 2119, - "end": 2126, - "loc": { - "start": { - "line": 65, - "column": 18 - }, - "end": { - "line": 65, - "column": 25 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 2127, - "end": 2130, - "loc": { - "start": { - "line": 65, - "column": 26 - }, - "end": { - "line": 65, - "column": 29 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 38, - "start": 2131, - "end": 2133, - "loc": { - "start": { - "line": 65, - "column": 30 - }, - "end": { - "line": 65, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2133, - "end": 2134, - "loc": { - "start": { - "line": 65, - "column": 32 - }, - "end": { - "line": 65, - "column": 33 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2135, - "end": 2136, - "loc": { - "start": { - "line": 65, - "column": 34 - }, - "end": { - "line": 65, - "column": 35 - } - } - }, - { - "type": "CommentLine", - "value": " arrow up", - "start": 2143, - "end": 2154, - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 66, - "column": 17 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2161, - "end": 2164, - "loc": { - "start": { - "line": 67, - "column": 6 - }, - "end": { - "line": 67, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2165, - "end": 2172, - "loc": { - "start": { - "line": 67, - "column": 10 - }, - "end": { - "line": 67, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2173, - "end": 2174, - "loc": { - "start": { - "line": 67, - "column": 18 - }, - "end": { - "line": 67, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 2175, - "end": 2181, - "loc": { - "start": { - "line": 67, - "column": 20 - }, - "end": { - "line": 67, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2181, - "end": 2182, - "loc": { - "start": { - "line": 67, - "column": 26 - }, - "end": { - "line": 67, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 2182, - "end": 2190, - "loc": { - "start": { - "line": 67, - "column": 27 - }, - "end": { - "line": 67, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2190, - "end": 2191, - "loc": { - "start": { - "line": 67, - "column": 35 - }, - "end": { - "line": 67, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2191, - "end": 2204, - "loc": { - "start": { - "line": 67, - "column": 36 - }, - "end": { - "line": 67, - "column": 49 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2204, - "end": 2205, - "loc": { - "start": { - "line": 67, - "column": 49 - }, - "end": { - "line": 67, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2205, - "end": 2206, - "loc": { - "start": { - "line": 67, - "column": 50 - }, - "end": { - "line": 67, - "column": 51 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2213, - "end": 2216, - "loc": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 68, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2217, - "end": 2225, - "loc": { - "start": { - "line": 68, - "column": 10 - }, - "end": { - "line": 68, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2226, - "end": 2227, - "loc": { - "start": { - "line": 68, - "column": 19 - }, - "end": { - "line": 68, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 2228, - "end": 2234, - "loc": { - "start": { - "line": 68, - "column": 21 - }, - "end": { - "line": 68, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2234, - "end": 2235, - "loc": { - "start": { - "line": 68, - "column": 27 - }, - "end": { - "line": 68, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 2235, - "end": 2243, - "loc": { - "start": { - "line": 68, - "column": 28 - }, - "end": { - "line": 68, - "column": 36 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2243, - "end": 2244, - "loc": { - "start": { - "line": 68, - "column": 36 - }, - "end": { - "line": 68, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2244, - "end": 2257, - "loc": { - "start": { - "line": 68, - "column": 37 - }, - "end": { - "line": 68, - "column": 50 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 2258, - "end": 2259, - "loc": { - "start": { - "line": 68, - "column": 51 - }, - "end": { - "line": 68, - "column": 52 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 2260, - "end": 2261, - "loc": { - "start": { - "line": 68, - "column": 53 - }, - "end": { - "line": 68, - "column": 54 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2261, - "end": 2262, - "loc": { - "start": { - "line": 68, - "column": 54 - }, - "end": { - "line": 68, - "column": 55 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2262, - "end": 2263, - "loc": { - "start": { - "line": 68, - "column": 55 - }, - "end": { - "line": 68, - "column": 56 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2270, - "end": 2272, - "loc": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 69, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2273, - "end": 2274, - "loc": { - "start": { - "line": 69, - "column": 9 - }, - "end": { - "line": 69, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2274, - "end": 2282, - "loc": { - "start": { - "line": 69, - "column": 10 - }, - "end": { - "line": 69, - "column": 18 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 2283, - "end": 2285, - "loc": { - "start": { - "line": 69, - "column": 19 - }, - "end": { - "line": 69, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2286, - "end": 2294, - "loc": { - "start": { - "line": 69, - "column": 22 - }, - "end": { - "line": 69, - "column": 30 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2294, - "end": 2295, - "loc": { - "start": { - "line": 69, - "column": 30 - }, - "end": { - "line": 69, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 2295, - "end": 2304, - "loc": { - "start": { - "line": 69, - "column": 31 - }, - "end": { - "line": 69, - "column": 40 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2304, - "end": 2305, - "loc": { - "start": { - "line": 69, - "column": 40 - }, - "end": { - "line": 69, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 2305, - "end": 2313, - "loc": { - "start": { - "line": 69, - "column": 41 - }, - "end": { - "line": 69, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2313, - "end": 2314, - "loc": { - "start": { - "line": 69, - "column": 49 - }, - "end": { - "line": 69, - "column": 50 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "search-separator", - "start": 2314, - "end": 2332, - "loc": { - "start": { - "line": 69, - "column": 50 - }, - "end": { - "line": 69, - "column": 68 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2332, - "end": 2333, - "loc": { - "start": { - "line": 69, - "column": 68 - }, - "end": { - "line": 69, - "column": 69 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2333, - "end": 2334, - "loc": { - "start": { - "line": 69, - "column": 69 - }, - "end": { - "line": 69, - "column": 70 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2335, - "end": 2336, - "loc": { - "start": { - "line": 69, - "column": 71 - }, - "end": { - "line": 69, - "column": 72 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2345, - "end": 2348, - "loc": { - "start": { - "line": 70, - "column": 8 - }, - "end": { - "line": 70, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2349, - "end": 2357, - "loc": { - "start": { - "line": 70, - "column": 12 - }, - "end": { - "line": 70, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2358, - "end": 2359, - "loc": { - "start": { - "line": 70, - "column": 21 - }, - "end": { - "line": 70, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 2360, - "end": 2366, - "loc": { - "start": { - "line": 70, - "column": 23 - }, - "end": { - "line": 70, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2366, - "end": 2367, - "loc": { - "start": { - "line": 70, - "column": 29 - }, - "end": { - "line": 70, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 2367, - "end": 2375, - "loc": { - "start": { - "line": 70, - "column": 30 - }, - "end": { - "line": 70, - "column": 38 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2375, - "end": 2376, - "loc": { - "start": { - "line": 70, - "column": 38 - }, - "end": { - "line": 70, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2376, - "end": 2389, - "loc": { - "start": { - "line": 70, - "column": 39 - }, - "end": { - "line": 70, - "column": 52 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 2390, - "end": 2391, - "loc": { - "start": { - "line": 70, - "column": 53 - }, - "end": { - "line": 70, - "column": 54 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 2, - "start": 2392, - "end": 2393, - "loc": { - "start": { - "line": 70, - "column": 55 - }, - "end": { - "line": 70, - "column": 56 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2393, - "end": 2394, - "loc": { - "start": { - "line": 70, - "column": 56 - }, - "end": { - "line": 70, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2394, - "end": 2395, - "loc": { - "start": { - "line": 70, - "column": 57 - }, - "end": { - "line": 70, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2404, - "end": 2417, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 21 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "--", - "start": 2417, - "end": 2419, - "loc": { - "start": { - "line": 71, - "column": 21 - }, - "end": { - "line": 71, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2419, - "end": 2420, - "loc": { - "start": { - "line": 71, - "column": 23 - }, - "end": { - "line": 71, - "column": 24 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2427, - "end": 2428, - "loc": { - "start": { - "line": 72, - "column": 6 - }, - "end": { - "line": 72, - "column": 7 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2436, - "end": 2438, - "loc": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 74, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2439, - "end": 2440, - "loc": { - "start": { - "line": 74, - "column": 9 - }, - "end": { - "line": 74, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2440, - "end": 2448, - "loc": { - "start": { - "line": 74, - "column": 10 - }, - "end": { - "line": 74, - "column": 18 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2448, - "end": 2449, - "loc": { - "start": { - "line": 74, - "column": 18 - }, - "end": { - "line": 74, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2450, - "end": 2451, - "loc": { - "start": { - "line": 74, - "column": 20 - }, - "end": { - "line": 74, - "column": 21 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2460, - "end": 2462, - "loc": { - "start": { - "line": 75, - "column": 8 - }, - "end": { - "line": 75, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2463, - "end": 2464, - "loc": { - "start": { - "line": 75, - "column": 11 - }, - "end": { - "line": 75, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2464, - "end": 2471, - "loc": { - "start": { - "line": 75, - "column": 12 - }, - "end": { - "line": 75, - "column": 19 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2471, - "end": 2472, - "loc": { - "start": { - "line": 75, - "column": 19 - }, - "end": { - "line": 75, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2473, - "end": 2480, - "loc": { - "start": { - "line": 75, - "column": 21 - }, - "end": { - "line": 75, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2480, - "end": 2481, - "loc": { - "start": { - "line": 75, - "column": 28 - }, - "end": { - "line": 75, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 2481, - "end": 2490, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 75, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2490, - "end": 2491, - "loc": { - "start": { - "line": 75, - "column": 38 - }, - "end": { - "line": 75, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 2491, - "end": 2497, - "loc": { - "start": { - "line": 75, - "column": 39 - }, - "end": { - "line": 75, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2497, - "end": 2498, - "loc": { - "start": { - "line": 75, - "column": 45 - }, - "end": { - "line": 75, - "column": 46 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 2498, - "end": 2508, - "loc": { - "start": { - "line": 75, - "column": 46 - }, - "end": { - "line": 75, - "column": 56 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2508, - "end": 2509, - "loc": { - "start": { - "line": 75, - "column": 56 - }, - "end": { - "line": 75, - "column": 57 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2509, - "end": 2510, - "loc": { - "start": { - "line": 75, - "column": 57 - }, - "end": { - "line": 75, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2519, - "end": 2532, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 21 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "--", - "start": 2532, - "end": 2534, - "loc": { - "start": { - "line": 76, - "column": 21 - }, - "end": { - "line": 76, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2534, - "end": 2535, - "loc": { - "start": { - "line": 76, - "column": 23 - }, - "end": { - "line": 76, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selected", - "start": 2544, - "end": 2552, - "loc": { - "start": { - "line": 77, - "column": 8 - }, - "end": { - "line": 77, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2552, - "end": 2553, - "loc": { - "start": { - "line": 77, - "column": 16 - }, - "end": { - "line": 77, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 2553, - "end": 2562, - "loc": { - "start": { - "line": 77, - "column": 17 - }, - "end": { - "line": 77, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2562, - "end": 2563, - "loc": { - "start": { - "line": 77, - "column": 26 - }, - "end": { - "line": 77, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 2563, - "end": 2566, - "loc": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2566, - "end": 2567, - "loc": { - "start": { - "line": 77, - "column": 30 - }, - "end": { - "line": 77, - "column": 31 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 2567, - "end": 2577, - "loc": { - "start": { - "line": 77, - "column": 31 - }, - "end": { - "line": 77, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2577, - "end": 2578, - "loc": { - "start": { - "line": 77, - "column": 41 - }, - "end": { - "line": 77, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2578, - "end": 2579, - "loc": { - "start": { - "line": 77, - "column": 42 - }, - "end": { - "line": 77, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2586, - "end": 2587, - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 78, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2592, - "end": 2593, - "loc": { - "start": { - "line": 79, - "column": 4 - }, - "end": { - "line": 79, - "column": 5 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 2594, - "end": 2598, - "loc": { - "start": { - "line": 79, - "column": 6 - }, - "end": { - "line": 79, - "column": 10 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2599, - "end": 2601, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2602, - "end": 2603, - "loc": { - "start": { - "line": 79, - "column": 14 - }, - "end": { - "line": 79, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 2603, - "end": 2605, - "loc": { - "start": { - "line": 79, - "column": 15 - }, - "end": { - "line": 79, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2605, - "end": 2606, - "loc": { - "start": { - "line": 79, - "column": 17 - }, - "end": { - "line": 79, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "keyCode", - "start": 2606, - "end": 2613, - "loc": { - "start": { - "line": 79, - "column": 18 - }, - "end": { - "line": 79, - "column": 25 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 2614, - "end": 2617, - "loc": { - "start": { - "line": 79, - "column": 26 - }, - "end": { - "line": 79, - "column": 29 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 13, - "start": 2618, - "end": 2620, - "loc": { - "start": { - "line": 79, - "column": 30 - }, - "end": { - "line": 79, - "column": 32 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2620, - "end": 2621, - "loc": { - "start": { - "line": 79, - "column": 32 - }, - "end": { - "line": 79, - "column": 33 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2622, - "end": 2623, - "loc": { - "start": { - "line": 79, - "column": 34 - }, - "end": { - "line": 79, - "column": 35 - } - } - }, - { - "type": "CommentLine", - "value": " enter", - "start": 2630, - "end": 2638, - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 80, - "column": 14 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2645, - "end": 2648, - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 81, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2649, - "end": 2656, - "loc": { - "start": { - "line": 81, - "column": 10 - }, - "end": { - "line": 81, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2657, - "end": 2658, - "loc": { - "start": { - "line": 81, - "column": 18 - }, - "end": { - "line": 81, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 2659, - "end": 2665, - "loc": { - "start": { - "line": 81, - "column": 20 - }, - "end": { - "line": 81, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2665, - "end": 2666, - "loc": { - "start": { - "line": 81, - "column": 26 - }, - "end": { - "line": 81, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 2666, - "end": 2674, - "loc": { - "start": { - "line": 81, - "column": 27 - }, - "end": { - "line": 81, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2674, - "end": 2675, - "loc": { - "start": { - "line": 81, - "column": 35 - }, - "end": { - "line": 81, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 2675, - "end": 2688, - "loc": { - "start": { - "line": 81, - "column": 36 - }, - "end": { - "line": 81, - "column": 49 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2688, - "end": 2689, - "loc": { - "start": { - "line": 81, - "column": 49 - }, - "end": { - "line": 81, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2689, - "end": 2690, - "loc": { - "start": { - "line": 81, - "column": 50 - }, - "end": { - "line": 81, - "column": 51 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2697, - "end": 2699, - "loc": { - "start": { - "line": 82, - "column": 6 - }, - "end": { - "line": 82, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2700, - "end": 2701, - "loc": { - "start": { - "line": 82, - "column": 9 - }, - "end": { - "line": 82, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2701, - "end": 2708, - "loc": { - "start": { - "line": 82, - "column": 10 - }, - "end": { - "line": 82, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2708, - "end": 2709, - "loc": { - "start": { - "line": 82, - "column": 17 - }, - "end": { - "line": 82, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2710, - "end": 2711, - "loc": { - "start": { - "line": 82, - "column": 19 - }, - "end": { - "line": 82, - "column": 20 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2720, - "end": 2723, - "loc": { - "start": { - "line": 83, - "column": 8 - }, - "end": { - "line": 83, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "link", - "start": 2724, - "end": 2728, - "loc": { - "start": { - "line": 83, - "column": 12 - }, - "end": { - "line": 83, - "column": 16 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2729, - "end": 2730, - "loc": { - "start": { - "line": 83, - "column": 17 - }, - "end": { - "line": 83, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 2731, - "end": 2738, - "loc": { - "start": { - "line": 83, - "column": 19 - }, - "end": { - "line": 83, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2738, - "end": 2739, - "loc": { - "start": { - "line": 83, - "column": 26 - }, - "end": { - "line": 83, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 2739, - "end": 2752, - "loc": { - "start": { - "line": 83, - "column": 27 - }, - "end": { - "line": 83, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2752, - "end": 2753, - "loc": { - "start": { - "line": 83, - "column": 40 - }, - "end": { - "line": 83, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "a", - "start": 2753, - "end": 2756, - "loc": { - "start": { - "line": 83, - "column": 41 - }, - "end": { - "line": 83, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2756, - "end": 2757, - "loc": { - "start": { - "line": 83, - "column": 44 - }, - "end": { - "line": 83, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2757, - "end": 2758, - "loc": { - "start": { - "line": 83, - "column": 45 - }, - "end": { - "line": 83, - "column": 46 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 2767, - "end": 2769, - "loc": { - "start": { - "line": 84, - "column": 8 - }, - "end": { - "line": 84, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2770, - "end": 2771, - "loc": { - "start": { - "line": 84, - "column": 11 - }, - "end": { - "line": 84, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "link", - "start": 2771, - "end": 2775, - "loc": { - "start": { - "line": 84, - "column": 12 - }, - "end": { - "line": 84, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2775, - "end": 2776, - "loc": { - "start": { - "line": 84, - "column": 16 - }, - "end": { - "line": 84, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "location", - "start": 2777, - "end": 2785, - "loc": { - "start": { - "line": 84, - "column": 18 - }, - "end": { - "line": 84, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2785, - "end": 2786, - "loc": { - "start": { - "line": 84, - "column": 26 - }, - "end": { - "line": 84, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "href", - "start": 2786, - "end": 2790, - "loc": { - "start": { - "line": 84, - "column": 27 - }, - "end": { - "line": 84, - "column": 31 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2791, - "end": 2792, - "loc": { - "start": { - "line": 84, - "column": 32 - }, - "end": { - "line": 84, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "link", - "start": 2793, - "end": 2797, - "loc": { - "start": { - "line": 84, - "column": 34 - }, - "end": { - "line": 84, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2797, - "end": 2798, - "loc": { - "start": { - "line": 84, - "column": 38 - }, - "end": { - "line": 84, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "href", - "start": 2798, - "end": 2802, - "loc": { - "start": { - "line": 84, - "column": 39 - }, - "end": { - "line": 84, - "column": 43 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2802, - "end": 2803, - "loc": { - "start": { - "line": 84, - "column": 43 - }, - "end": { - "line": 84, - "column": 44 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2810, - "end": 2811, - "loc": { - "start": { - "line": 85, - "column": 6 - }, - "end": { - "line": 85, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2816, - "end": 2817, - "loc": { - "start": { - "line": 86, - "column": 4 - }, - "end": { - "line": 86, - "column": 5 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 2818, - "end": 2822, - "loc": { - "start": { - "line": 86, - "column": 6 - }, - "end": { - "line": 86, - "column": 10 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2823, - "end": 2824, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 86, - "column": 12 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2831, - "end": 2837, - "loc": { - "start": { - "line": 87, - "column": 6 - }, - "end": { - "line": 87, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2837, - "end": 2838, - "loc": { - "start": { - "line": 87, - "column": 12 - }, - "end": { - "line": 87, - "column": 13 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2843, - "end": 2844, - "loc": { - "start": { - "line": 88, - "column": 4 - }, - "end": { - "line": 88, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 2850, - "end": 2852, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 6 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2852, - "end": 2853, - "loc": { - "start": { - "line": 90, - "column": 6 - }, - "end": { - "line": 90, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "preventDefault", - "start": 2853, - "end": 2867, - "loc": { - "start": { - "line": 90, - "column": 7 - }, - "end": { - "line": 90, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2867, - "end": 2868, - "loc": { - "start": { - "line": 90, - "column": 21 - }, - "end": { - "line": 90, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2868, - "end": 2869, - "loc": { - "start": { - "line": 90, - "column": 22 - }, - "end": { - "line": 90, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2869, - "end": 2870, - "loc": { - "start": { - "line": 90, - "column": 23 - }, - "end": { - "line": 90, - "column": 24 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2873, - "end": 2874, - "loc": { - "start": { - "line": 91, - "column": 2 - }, - "end": { - "line": 91, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2874, - "end": 2875, - "loc": { - "start": { - "line": 91, - "column": 3 - }, - "end": { - "line": 91, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2875, - "end": 2876, - "loc": { - "start": { - "line": 91, - "column": 4 - }, - "end": { - "line": 91, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " select search result when search result is mouse over.", - "start": 2880, - "end": 2937, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 93, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 2940, - "end": 2946, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 94, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2946, - "end": 2947, - "loc": { - "start": { - "line": 94, - "column": 8 - }, - "end": { - "line": 94, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 2947, - "end": 2963, - "loc": { - "start": { - "line": 94, - "column": 9 - }, - "end": { - "line": 94, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2963, - "end": 2964, - "loc": { - "start": { - "line": 94, - "column": 25 - }, - "end": { - "line": 94, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "mousemove", - "start": 2964, - "end": 2975, - "loc": { - "start": { - "line": 94, - "column": 26 - }, - "end": { - "line": 94, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2975, - "end": 2976, - "loc": { - "start": { - "line": 94, - "column": 37 - }, - "end": { - "line": 94, - "column": 38 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 2977, - "end": 2985, - "loc": { - "start": { - "line": 94, - "column": 39 - }, - "end": { - "line": 94, - "column": 47 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2986, - "end": 2987, - "loc": { - "start": { - "line": 94, - "column": 48 - }, - "end": { - "line": 94, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 2987, - "end": 2989, - "loc": { - "start": { - "line": 94, - "column": 49 - }, - "end": { - "line": 94, - "column": 51 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2989, - "end": 2990, - "loc": { - "start": { - "line": 94, - "column": 51 - }, - "end": { - "line": 94, - "column": 52 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2991, - "end": 2992, - "loc": { - "start": { - "line": 94, - "column": 53 - }, - "end": { - "line": 94, - "column": 54 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 2997, - "end": 3000, - "loc": { - "start": { - "line": 95, - "column": 4 - }, - "end": { - "line": 95, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 3001, - "end": 3008, - "loc": { - "start": { - "line": 95, - "column": 8 - }, - "end": { - "line": 95, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3009, - "end": 3010, - "loc": { - "start": { - "line": 95, - "column": 16 - }, - "end": { - "line": 95, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 3011, - "end": 3017, - "loc": { - "start": { - "line": 95, - "column": 18 - }, - "end": { - "line": 95, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3017, - "end": 3018, - "loc": { - "start": { - "line": 95, - "column": 24 - }, - "end": { - "line": 95, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 3018, - "end": 3026, - "loc": { - "start": { - "line": 95, - "column": 25 - }, - "end": { - "line": 95, - "column": 33 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3026, - "end": 3027, - "loc": { - "start": { - "line": 95, - "column": 33 - }, - "end": { - "line": 95, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 3027, - "end": 3040, - "loc": { - "start": { - "line": 95, - "column": 34 - }, - "end": { - "line": 95, - "column": 47 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3040, - "end": 3041, - "loc": { - "start": { - "line": 95, - "column": 47 - }, - "end": { - "line": 95, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3041, - "end": 3042, - "loc": { - "start": { - "line": 95, - "column": 48 - }, - "end": { - "line": 95, - "column": 49 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3047, - "end": 3049, - "loc": { - "start": { - "line": 96, - "column": 4 - }, - "end": { - "line": 96, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3050, - "end": 3051, - "loc": { - "start": { - "line": 96, - "column": 7 - }, - "end": { - "line": 96, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 3051, - "end": 3058, - "loc": { - "start": { - "line": 96, - "column": 8 - }, - "end": { - "line": 96, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3058, - "end": 3059, - "loc": { - "start": { - "line": 96, - "column": 15 - }, - "end": { - "line": 96, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "current", - "start": 3060, - "end": 3067, - "loc": { - "start": { - "line": 96, - "column": 17 - }, - "end": { - "line": 96, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3067, - "end": 3068, - "loc": { - "start": { - "line": 96, - "column": 24 - }, - "end": { - "line": 96, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 3068, - "end": 3077, - "loc": { - "start": { - "line": 96, - "column": 25 - }, - "end": { - "line": 96, - "column": 34 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3077, - "end": 3078, - "loc": { - "start": { - "line": 96, - "column": 34 - }, - "end": { - "line": 96, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 3078, - "end": 3084, - "loc": { - "start": { - "line": 96, - "column": 35 - }, - "end": { - "line": 96, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3084, - "end": 3085, - "loc": { - "start": { - "line": 96, - "column": 41 - }, - "end": { - "line": 96, - "column": 42 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 3085, - "end": 3095, - "loc": { - "start": { - "line": 96, - "column": 42 - }, - "end": { - "line": 96, - "column": 52 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3095, - "end": 3096, - "loc": { - "start": { - "line": 96, - "column": 52 - }, - "end": { - "line": 96, - "column": 53 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3096, - "end": 3097, - "loc": { - "start": { - "line": 96, - "column": 53 - }, - "end": { - "line": 96, - "column": 54 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3103, - "end": 3106, - "loc": { - "start": { - "line": 98, - "column": 4 - }, - "end": { - "line": 98, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3107, - "end": 3109, - "loc": { - "start": { - "line": 98, - "column": 8 - }, - "end": { - "line": 98, - "column": 10 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3110, - "end": 3111, - "loc": { - "start": { - "line": 98, - "column": 11 - }, - "end": { - "line": 98, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 3112, - "end": 3114, - "loc": { - "start": { - "line": 98, - "column": 13 - }, - "end": { - "line": 98, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3114, - "end": 3115, - "loc": { - "start": { - "line": 98, - "column": 15 - }, - "end": { - "line": 98, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 3115, - "end": 3121, - "loc": { - "start": { - "line": 98, - "column": 16 - }, - "end": { - "line": 98, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3121, - "end": 3122, - "loc": { - "start": { - "line": 98, - "column": 22 - }, - "end": { - "line": 98, - "column": 23 - } - } - }, - { - "type": { - "label": "while", - "keyword": "while", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "while", - "start": 3127, - "end": 3132, - "loc": { - "start": { - "line": 99, - "column": 4 - }, - "end": { - "line": 99, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3133, - "end": 3134, - "loc": { - "start": { - "line": 99, - "column": 10 - }, - "end": { - "line": 99, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3134, - "end": 3136, - "loc": { - "start": { - "line": 99, - "column": 11 - }, - "end": { - "line": 99, - "column": 13 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3136, - "end": 3137, - "loc": { - "start": { - "line": 99, - "column": 13 - }, - "end": { - "line": 99, - "column": 14 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3138, - "end": 3139, - "loc": { - "start": { - "line": 99, - "column": 15 - }, - "end": { - "line": 99, - "column": 16 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3146, - "end": 3148, - "loc": { - "start": { - "line": 100, - "column": 6 - }, - "end": { - "line": 100, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3149, - "end": 3150, - "loc": { - "start": { - "line": 100, - "column": 9 - }, - "end": { - "line": 100, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3150, - "end": 3152, - "loc": { - "start": { - "line": 100, - "column": 10 - }, - "end": { - "line": 100, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3152, - "end": 3153, - "loc": { - "start": { - "line": 100, - "column": 12 - }, - "end": { - "line": 100, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nodeName", - "start": 3153, - "end": 3161, - "loc": { - "start": { - "line": 100, - "column": 13 - }, - "end": { - "line": 100, - "column": 21 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 3162, - "end": 3165, - "loc": { - "start": { - "line": 100, - "column": 22 - }, - "end": { - "line": 100, - "column": 25 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "LI", - "start": 3166, - "end": 3170, - "loc": { - "start": { - "line": 100, - "column": 26 - }, - "end": { - "line": 100, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3170, - "end": 3171, - "loc": { - "start": { - "line": 100, - "column": 30 - }, - "end": { - "line": 100, - "column": 31 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 3172, - "end": 3177, - "loc": { - "start": { - "line": 100, - "column": 32 - }, - "end": { - "line": 100, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3177, - "end": 3178, - "loc": { - "start": { - "line": 100, - "column": 37 - }, - "end": { - "line": 100, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3185, - "end": 3187, - "loc": { - "start": { - "line": 101, - "column": 6 - }, - "end": { - "line": 101, - "column": 8 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3188, - "end": 3189, - "loc": { - "start": { - "line": 101, - "column": 9 - }, - "end": { - "line": 101, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3190, - "end": 3192, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3192, - "end": 3193, - "loc": { - "start": { - "line": 101, - "column": 13 - }, - "end": { - "line": 101, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentElement", - "start": 3193, - "end": 3206, - "loc": { - "start": { - "line": 101, - "column": 14 - }, - "end": { - "line": 101, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3206, - "end": 3207, - "loc": { - "start": { - "line": 101, - "column": 27 - }, - "end": { - "line": 101, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3212, - "end": 3213, - "loc": { - "start": { - "line": 102, - "column": 4 - }, - "end": { - "line": 102, - "column": 5 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3219, - "end": 3221, - "loc": { - "start": { - "line": 104, - "column": 4 - }, - "end": { - "line": 104, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3222, - "end": 3223, - "loc": { - "start": { - "line": 104, - "column": 7 - }, - "end": { - "line": 104, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3223, - "end": 3225, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3225, - "end": 3226, - "loc": { - "start": { - "line": 104, - "column": 10 - }, - "end": { - "line": 104, - "column": 11 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3227, - "end": 3228, - "loc": { - "start": { - "line": 104, - "column": 12 - }, - "end": { - "line": 104, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 3235, - "end": 3248, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3249, - "end": 3250, - "loc": { - "start": { - "line": 105, - "column": 20 - }, - "end": { - "line": 105, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Array", - "start": 3251, - "end": 3256, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3256, - "end": 3257, - "loc": { - "start": { - "line": 105, - "column": 27 - }, - "end": { - "line": 105, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "prototype", - "start": 3257, - "end": 3266, - "loc": { - "start": { - "line": 105, - "column": 28 - }, - "end": { - "line": 105, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3266, - "end": 3267, - "loc": { - "start": { - "line": 105, - "column": 37 - }, - "end": { - "line": 105, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "indexOf", - "start": 3267, - "end": 3274, - "loc": { - "start": { - "line": 105, - "column": 38 - }, - "end": { - "line": 105, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3274, - "end": 3275, - "loc": { - "start": { - "line": 105, - "column": 45 - }, - "end": { - "line": 105, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "call", - "start": 3275, - "end": 3279, - "loc": { - "start": { - "line": 105, - "column": 46 - }, - "end": { - "line": 105, - "column": 50 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3279, - "end": 3280, - "loc": { - "start": { - "line": 105, - "column": 50 - }, - "end": { - "line": 105, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 3280, - "end": 3286, - "loc": { - "start": { - "line": 105, - "column": 51 - }, - "end": { - "line": 105, - "column": 57 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3286, - "end": 3287, - "loc": { - "start": { - "line": 105, - "column": 57 - }, - "end": { - "line": 105, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "children", - "start": 3287, - "end": 3295, - "loc": { - "start": { - "line": 105, - "column": 58 - }, - "end": { - "line": 105, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3295, - "end": 3296, - "loc": { - "start": { - "line": 105, - "column": 66 - }, - "end": { - "line": 105, - "column": 67 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3297, - "end": 3299, - "loc": { - "start": { - "line": 105, - "column": 68 - }, - "end": { - "line": 105, - "column": 70 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3299, - "end": 3300, - "loc": { - "start": { - "line": 105, - "column": 70 - }, - "end": { - "line": 105, - "column": 71 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3300, - "end": 3301, - "loc": { - "start": { - "line": 105, - "column": 71 - }, - "end": { - "line": 105, - "column": 72 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "li", - "start": 3308, - "end": 3310, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3310, - "end": 3311, - "loc": { - "start": { - "line": 106, - "column": 8 - }, - "end": { - "line": 106, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 3311, - "end": 3320, - "loc": { - "start": { - "line": 106, - "column": 9 - }, - "end": { - "line": 106, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3320, - "end": 3321, - "loc": { - "start": { - "line": 106, - "column": 18 - }, - "end": { - "line": 106, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 3321, - "end": 3324, - "loc": { - "start": { - "line": 106, - "column": 19 - }, - "end": { - "line": 106, - "column": 22 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3324, - "end": 3325, - "loc": { - "start": { - "line": 106, - "column": 22 - }, - "end": { - "line": 106, - "column": 23 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "selected", - "start": 3325, - "end": 3335, - "loc": { - "start": { - "line": 106, - "column": 23 - }, - "end": { - "line": 106, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3335, - "end": 3336, - "loc": { - "start": { - "line": 106, - "column": 33 - }, - "end": { - "line": 106, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3336, - "end": 3337, - "loc": { - "start": { - "line": 106, - "column": 34 - }, - "end": { - "line": 106, - "column": 35 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3342, - "end": 3343, - "loc": { - "start": { - "line": 107, - "column": 4 - }, - "end": { - "line": 107, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3346, - "end": 3347, - "loc": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 108, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3347, - "end": 3348, - "loc": { - "start": { - "line": 108, - "column": 3 - }, - "end": { - "line": 108, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3348, - "end": 3349, - "loc": { - "start": { - "line": 108, - "column": 4 - }, - "end": { - "line": 108, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " clear search result when body is clicked.", - "start": 3353, - "end": 3397, - "loc": { - "start": { - "line": 110, - "column": 2 - }, - "end": { - "line": 110, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 3400, - "end": 3408, - "loc": { - "start": { - "line": 111, - "column": 2 - }, - "end": { - "line": 111, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3408, - "end": 3409, - "loc": { - "start": { - "line": 111, - "column": 10 - }, - "end": { - "line": 111, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "body", - "start": 3409, - "end": 3413, - "loc": { - "start": { - "line": 111, - "column": 11 - }, - "end": { - "line": 111, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3413, - "end": 3414, - "loc": { - "start": { - "line": 111, - "column": 15 - }, - "end": { - "line": 111, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 3414, - "end": 3430, - "loc": { - "start": { - "line": 111, - "column": 16 - }, - "end": { - "line": 111, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3430, - "end": 3431, - "loc": { - "start": { - "line": 111, - "column": 32 - }, - "end": { - "line": 111, - "column": 33 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "click", - "start": 3431, - "end": 3438, - "loc": { - "start": { - "line": 111, - "column": 33 - }, - "end": { - "line": 111, - "column": 40 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3438, - "end": 3439, - "loc": { - "start": { - "line": 111, - "column": 40 - }, - "end": { - "line": 111, - "column": 41 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 3440, - "end": 3448, - "loc": { - "start": { - "line": 111, - "column": 42 - }, - "end": { - "line": 111, - "column": 50 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3449, - "end": 3450, - "loc": { - "start": { - "line": 111, - "column": 51 - }, - "end": { - "line": 111, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 3450, - "end": 3452, - "loc": { - "start": { - "line": 111, - "column": 52 - }, - "end": { - "line": 111, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3452, - "end": 3453, - "loc": { - "start": { - "line": 111, - "column": 54 - }, - "end": { - "line": 111, - "column": 55 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3454, - "end": 3455, - "loc": { - "start": { - "line": 111, - "column": 56 - }, - "end": { - "line": 111, - "column": 57 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "selectedIndex", - "start": 3460, - "end": 3473, - "loc": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3474, - "end": 3475, - "loc": { - "start": { - "line": 112, - "column": 18 - }, - "end": { - "line": 112, - "column": 19 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "-", - "start": 3476, - "end": 3477, - "loc": { - "start": { - "line": 112, - "column": 20 - }, - "end": { - "line": 112, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 3477, - "end": 3478, - "loc": { - "start": { - "line": 112, - "column": 21 - }, - "end": { - "line": 112, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3478, - "end": 3479, - "loc": { - "start": { - "line": 112, - "column": 22 - }, - "end": { - "line": 112, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 3484, - "end": 3490, - "loc": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 113, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3490, - "end": 3491, - "loc": { - "start": { - "line": 113, - "column": 10 - }, - "end": { - "line": 113, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 3491, - "end": 3496, - "loc": { - "start": { - "line": 113, - "column": 11 - }, - "end": { - "line": 113, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3496, - "end": 3497, - "loc": { - "start": { - "line": 113, - "column": 16 - }, - "end": { - "line": 113, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 3497, - "end": 3504, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 24 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3505, - "end": 3506, - "loc": { - "start": { - "line": 113, - "column": 25 - }, - "end": { - "line": 113, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "none", - "start": 3507, - "end": 3513, - "loc": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 33 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3513, - "end": 3514, - "loc": { - "start": { - "line": 113, - "column": 33 - }, - "end": { - "line": 113, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "result", - "start": 3519, - "end": 3525, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3525, - "end": 3526, - "loc": { - "start": { - "line": 114, - "column": 10 - }, - "end": { - "line": 114, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerHTML", - "start": 3526, - "end": 3535, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3536, - "end": 3537, - "loc": { - "start": { - "line": 114, - "column": 21 - }, - "end": { - "line": 114, - "column": 22 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 3538, - "end": 3540, - "loc": { - "start": { - "line": 114, - "column": 23 - }, - "end": { - "line": 114, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3540, - "end": 3541, - "loc": { - "start": { - "line": 114, - "column": 25 - }, - "end": { - "line": 114, - "column": 26 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3544, - "end": 3545, - "loc": { - "start": { - "line": 115, - "column": 2 - }, - "end": { - "line": 115, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3545, - "end": 3546, - "loc": { - "start": { - "line": 115, - "column": 3 - }, - "end": { - "line": 115, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3546, - "end": 3547, - "loc": { - "start": { - "line": 115, - "column": 4 - }, - "end": { - "line": 115, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3548, - "end": 3549, - "loc": { - "start": { - "line": 116, - "column": 0 - }, - "end": { - "line": 116, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3549, - "end": 3550, - "loc": { - "start": { - "line": 116, - "column": 1 - }, - "end": { - "line": 116, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3550, - "end": 3551, - "loc": { - "start": { - "line": 116, - "column": 2 - }, - "end": { - "line": 116, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3551, - "end": 3552, - "loc": { - "start": { - "line": 116, - "column": 3 - }, - "end": { - "line": 116, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3552, - "end": 3553, - "loc": { - "start": { - "line": 116, - "column": 4 - }, - "end": { - "line": 116, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3553, - "end": 3553, - "loc": { - "start": { - "line": 116, - "column": 5 - }, - "end": { - "line": 116, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/search_index.js.json b/docs/ast/source/doc/script/search_index.js.json deleted file mode 100644 index e264c637..00000000 --- a/docs/ast/source/doc/script/search_index.js.json +++ /dev/null @@ -1,42194 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 25455, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 25455 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 25455, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 25455 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 25455, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 25455 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 0, - "end": 25454, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 25454 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 0, - "end": 23, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 23 - } - }, - "object": { - "type": "Identifier", - "start": 0, - "end": 6, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 6 - }, - "identifierName": "window" - }, - "name": "window" - }, - "property": { - "type": "Identifier", - "start": 7, - "end": 23, - "loc": { - "start": { - "line": 1, - "column": 7 - }, - "end": { - "line": 1, - "column": 23 - }, - "identifierName": "esdocSearchIndex" - }, - "name": "esdocSearchIndex" - }, - "computed": false - }, - "right": { - "type": "ArrayExpression", - "start": 26, - "end": 25454, - "loc": { - "start": { - "line": 1, - "column": 26 - }, - "end": { - "line": 1, - "column": 25454 - } - }, - "elements": [ - { - "type": "ArrayExpression", - "start": 27, - "end": 310, - "loc": { - "start": { - "line": 1, - "column": 27 - }, - "end": { - "line": 1, - "column": 310 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 28, - "end": 100, - "loc": { - "start": { - "line": 1, - "column": 28 - }, - "end": { - "line": 1, - "column": 100 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager", - "raw": "\"react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager\"" - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager" - }, - { - "type": "StringLiteral", - "start": 102, - "end": 164, - "loc": { - "start": { - "line": 1, - "column": 102 - }, - "end": { - "line": 1, - "column": 164 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html" - }, - { - "type": "StringLiteral", - "start": 166, - "end": 300, - "loc": { - "start": { - "line": 1, - "column": 166 - }, - "end": { - "line": 1, - "column": 300 - } - }, - "extra": { - "rawValue": "BleManager react-native-ble-plx/react-native-ble-plx/src/BleManager.js", - "raw": "\"BleManager react-native-ble-plx/react-native-ble-plx/src/BleManager.js\"" - }, - "value": "BleManager react-native-ble-plx/react-native-ble-plx/src/BleManager.js" - }, - { - "type": "StringLiteral", - "start": 302, - "end": 309, - "loc": { - "start": { - "line": 1, - "column": 302 - }, - "end": { - "line": 1, - "column": 309 - } - }, - "extra": { - "rawValue": "class", - "raw": "\"class\"" - }, - "value": "class" - } - ] - }, - { - "type": "ArrayExpression", - "start": 312, - "end": 619, - "loc": { - "start": { - "line": 1, - "column": 312 - }, - "end": { - "line": 1, - "column": 619 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 313, - "end": 393, - "loc": { - "start": { - "line": 1, - "column": 313 - }, - "end": { - "line": 1, - "column": 393 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic", - "raw": "\"react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic\"" - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic" - }, - { - "type": "StringLiteral", - "start": 395, - "end": 465, - "loc": { - "start": { - "line": 1, - "column": 395 - }, - "end": { - "line": 1, - "column": 465 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html" - }, - { - "type": "StringLiteral", - "start": 467, - "end": 609, - "loc": { - "start": { - "line": 1, - "column": 467 - }, - "end": { - "line": 1, - "column": 609 - } - }, - "extra": { - "rawValue": "Characteristic react-native-ble-plx/react-native-ble-plx/src/Characteristic.js", - "raw": "\"Characteristic react-native-ble-plx/react-native-ble-plx/src/Characteristic.js\"" - }, - "value": "Characteristic react-native-ble-plx/react-native-ble-plx/src/Characteristic.js" - }, - { - "type": "StringLiteral", - "start": 611, - "end": 618, - "loc": { - "start": { - "line": 1, - "column": 611 - }, - "end": { - "line": 1, - "column": 618 - } - }, - "extra": { - "rawValue": "class", - "raw": "\"class\"" - }, - "value": "class" - } - ] - }, - { - "type": "ArrayExpression", - "start": 621, - "end": 880, - "loc": { - "start": { - "line": 1, - "column": 621 - }, - "end": { - "line": 1, - "column": 880 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 622, - "end": 686, - "loc": { - "start": { - "line": 1, - "column": 622 - }, - "end": { - "line": 1, - "column": 686 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/react-native-ble-plx/src/device.js~device", - "raw": "\"react-native-ble-plx/react-native-ble-plx/src/device.js~device\"" - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/device.js~device" - }, - { - "type": "StringLiteral", - "start": 688, - "end": 742, - "loc": { - "start": { - "line": 1, - "column": 688 - }, - "end": { - "line": 1, - "column": 742 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html" - }, - { - "type": "StringLiteral", - "start": 744, - "end": 870, - "loc": { - "start": { - "line": 1, - "column": 744 - }, - "end": { - "line": 1, - "column": 870 - } - }, - "extra": { - "rawValue": "Device react-native-ble-plx/react-native-ble-plx/src/Device.js", - "raw": "\"Device react-native-ble-plx/react-native-ble-plx/src/Device.js\"" - }, - "value": "Device react-native-ble-plx/react-native-ble-plx/src/Device.js" - }, - { - "type": "StringLiteral", - "start": 872, - "end": 879, - "loc": { - "start": { - "line": 1, - "column": 872 - }, - "end": { - "line": 1, - "column": 879 - } - }, - "extra": { - "rawValue": "class", - "raw": "\"class\"" - }, - "value": "class" - } - ] - }, - { - "type": "ArrayExpression", - "start": 882, - "end": 1147, - "loc": { - "start": { - "line": 1, - "column": 882 - }, - "end": { - "line": 1, - "column": 1147 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 883, - "end": 949, - "loc": { - "start": { - "line": 1, - "column": 883 - }, - "end": { - "line": 1, - "column": 949 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/react-native-ble-plx/src/service.js~service", - "raw": "\"react-native-ble-plx/react-native-ble-plx/src/service.js~service\"" - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/service.js~service" - }, - { - "type": "StringLiteral", - "start": 951, - "end": 1007, - "loc": { - "start": { - "line": 1, - "column": 951 - }, - "end": { - "line": 1, - "column": 1007 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html" - }, - { - "type": "StringLiteral", - "start": 1009, - "end": 1137, - "loc": { - "start": { - "line": 1, - "column": 1009 - }, - "end": { - "line": 1, - "column": 1137 - } - }, - "extra": { - "rawValue": "Service react-native-ble-plx/react-native-ble-plx/src/Service.js", - "raw": "\"Service react-native-ble-plx/react-native-ble-plx/src/Service.js\"" - }, - "value": "Service react-native-ble-plx/react-native-ble-plx/src/Service.js" - }, - { - "type": "StringLiteral", - "start": 1139, - "end": 1146, - "loc": { - "start": { - "line": 1, - "column": 1139 - }, - "end": { - "line": 1, - "column": 1146 - } - }, - "extra": { - "rawValue": "class", - "raw": "\"class\"" - }, - "value": "class" - } - ] - }, - { - "type": "ArrayExpression", - "start": 1149, - "end": 1405, - "loc": { - "start": { - "line": 1, - "column": 1149 - }, - "end": { - "line": 1, - "column": 1405 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 1150, - "end": 1215, - "loc": { - "start": { - "line": 1, - "column": 1150 - }, - "end": { - "line": 1, - "column": 1215 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid", - "raw": "\"react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid\"" - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid" - }, - { - "type": "StringLiteral", - "start": 1217, - "end": 1263, - "loc": { - "start": { - "line": 1, - "column": 1217 - }, - "end": { - "line": 1, - "column": 1263 - } - }, - "extra": { - "rawValue": "function/index.html#static-function-fullUUID", - "raw": "\"function/index.html#static-function-fullUUID\"" - }, - "value": "function/index.html#static-function-fullUUID" - }, - { - "type": "StringLiteral", - "start": 1265, - "end": 1392, - "loc": { - "start": { - "line": 1, - "column": 1265 - }, - "end": { - "line": 1, - "column": 1392 - } - }, - "extra": { - "rawValue": "fullUUID react-native-ble-plx/react-native-ble-plx/src/Utils.js", - "raw": "\"fullUUID react-native-ble-plx/react-native-ble-plx/src/Utils.js\"" - }, - "value": "fullUUID react-native-ble-plx/react-native-ble-plx/src/Utils.js" - }, - { - "type": "StringLiteral", - "start": 1394, - "end": 1404, - "loc": { - "start": { - "line": 1, - "column": 1394 - }, - "end": { - "line": 1, - "column": 1404 - } - }, - "extra": { - "rawValue": "function", - "raw": "\"function\"" - }, - "value": "function" - } - ] - }, - { - "type": "ArrayExpression", - "start": 1407, - "end": 1603, - "loc": { - "start": { - "line": 1, - "column": 1407 - }, - "end": { - "line": 1, - "column": 1603 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 1408, - "end": 1453, - "loc": { - "start": { - "line": 1, - "column": 1408 - }, - "end": { - "line": 1, - "column": 1453 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~array", - "raw": "\"builtinexternal/ecmascriptexternal.js~array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~array" - }, - { - "type": "StringLiteral", - "start": 1455, - "end": 1543, - "loc": { - "start": { - "line": 1, - "column": 1455 - }, - "end": { - "line": 1, - "column": 1543 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array" - }, - { - "type": "StringLiteral", - "start": 1545, - "end": 1590, - "loc": { - "start": { - "line": 1, - "column": 1545 - }, - "end": { - "line": 1, - "column": 1590 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Array" - }, - { - "type": "StringLiteral", - "start": 1592, - "end": 1602, - "loc": { - "start": { - "line": 1, - "column": 1592 - }, - "end": { - "line": 1, - "column": 1602 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 1605, - "end": 1819, - "loc": { - "start": { - "line": 1, - "column": 1605 - }, - "end": { - "line": 1, - "column": 1819 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 1606, - "end": 1657, - "loc": { - "start": { - "line": 1, - "column": 1606 - }, - "end": { - "line": 1, - "column": 1657 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~arraybuffer", - "raw": "\"builtinexternal/ecmascriptexternal.js~arraybuffer\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~arraybuffer" - }, - { - "type": "StringLiteral", - "start": 1659, - "end": 1753, - "loc": { - "start": { - "line": 1, - "column": 1659 - }, - "end": { - "line": 1, - "column": 1753 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer" - }, - { - "type": "StringLiteral", - "start": 1755, - "end": 1806, - "loc": { - "start": { - "line": 1, - "column": 1755 - }, - "end": { - "line": 1, - "column": 1806 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer" - }, - { - "type": "StringLiteral", - "start": 1808, - "end": 1818, - "loc": { - "start": { - "line": 1, - "column": 1808 - }, - "end": { - "line": 1, - "column": 1818 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 1821, - "end": 2023, - "loc": { - "start": { - "line": 1, - "column": 1821 - }, - "end": { - "line": 1, - "column": 2023 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 1822, - "end": 1869, - "loc": { - "start": { - "line": 1, - "column": 1822 - }, - "end": { - "line": 1, - "column": 1869 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~boolean", - "raw": "\"builtinexternal/ecmascriptexternal.js~boolean\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~boolean" - }, - { - "type": "StringLiteral", - "start": 1871, - "end": 1961, - "loc": { - "start": { - "line": 1, - "column": 1871 - }, - "end": { - "line": 1, - "column": 1961 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean" - }, - { - "type": "StringLiteral", - "start": 1963, - "end": 2010, - "loc": { - "start": { - "line": 1, - "column": 1963 - }, - "end": { - "line": 1, - "column": 2010 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Boolean", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Boolean\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Boolean" - }, - { - "type": "StringLiteral", - "start": 2012, - "end": 2022, - "loc": { - "start": { - "line": 1, - "column": 2012 - }, - "end": { - "line": 1, - "column": 2022 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 2025, - "end": 2230, - "loc": { - "start": { - "line": 1, - "column": 2025 - }, - "end": { - "line": 1, - "column": 2230 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 2026, - "end": 2074, - "loc": { - "start": { - "line": 1, - "column": 2026 - }, - "end": { - "line": 1, - "column": 2074 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~dataview", - "raw": "\"builtinexternal/ecmascriptexternal.js~dataview\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~dataview" - }, - { - "type": "StringLiteral", - "start": 2076, - "end": 2167, - "loc": { - "start": { - "line": 1, - "column": 2076 - }, - "end": { - "line": 1, - "column": 2167 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView" - }, - { - "type": "StringLiteral", - "start": 2169, - "end": 2217, - "loc": { - "start": { - "line": 1, - "column": 2169 - }, - "end": { - "line": 1, - "column": 2217 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~DataView", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~DataView\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~DataView" - }, - { - "type": "StringLiteral", - "start": 2219, - "end": 2229, - "loc": { - "start": { - "line": 1, - "column": 2219 - }, - "end": { - "line": 1, - "column": 2229 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 2232, - "end": 2425, - "loc": { - "start": { - "line": 1, - "column": 2232 - }, - "end": { - "line": 1, - "column": 2425 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 2233, - "end": 2277, - "loc": { - "start": { - "line": 1, - "column": 2233 - }, - "end": { - "line": 1, - "column": 2277 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~date", - "raw": "\"builtinexternal/ecmascriptexternal.js~date\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~date" - }, - { - "type": "StringLiteral", - "start": 2279, - "end": 2366, - "loc": { - "start": { - "line": 1, - "column": 2279 - }, - "end": { - "line": 1, - "column": 2366 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date" - }, - { - "type": "StringLiteral", - "start": 2368, - "end": 2412, - "loc": { - "start": { - "line": 1, - "column": 2368 - }, - "end": { - "line": 1, - "column": 2412 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Date", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Date\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Date" - }, - { - "type": "StringLiteral", - "start": 2414, - "end": 2424, - "loc": { - "start": { - "line": 1, - "column": 2414 - }, - "end": { - "line": 1, - "column": 2424 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 2427, - "end": 2623, - "loc": { - "start": { - "line": 1, - "column": 2427 - }, - "end": { - "line": 1, - "column": 2623 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 2428, - "end": 2473, - "loc": { - "start": { - "line": 1, - "column": 2428 - }, - "end": { - "line": 1, - "column": 2473 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~error", - "raw": "\"builtinexternal/ecmascriptexternal.js~error\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~error" - }, - { - "type": "StringLiteral", - "start": 2475, - "end": 2563, - "loc": { - "start": { - "line": 1, - "column": 2475 - }, - "end": { - "line": 1, - "column": 2563 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error" - }, - { - "type": "StringLiteral", - "start": 2565, - "end": 2610, - "loc": { - "start": { - "line": 1, - "column": 2565 - }, - "end": { - "line": 1, - "column": 2610 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Error", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Error\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Error" - }, - { - "type": "StringLiteral", - "start": 2612, - "end": 2622, - "loc": { - "start": { - "line": 1, - "column": 2612 - }, - "end": { - "line": 1, - "column": 2622 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 2625, - "end": 2833, - "loc": { - "start": { - "line": 1, - "column": 2625 - }, - "end": { - "line": 1, - "column": 2833 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 2626, - "end": 2675, - "loc": { - "start": { - "line": 1, - "column": 2626 - }, - "end": { - "line": 1, - "column": 2675 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~evalerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~evalerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~evalerror" - }, - { - "type": "StringLiteral", - "start": 2677, - "end": 2769, - "loc": { - "start": { - "line": 1, - "column": 2677 - }, - "end": { - "line": 1, - "column": 2769 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError" - }, - { - "type": "StringLiteral", - "start": 2771, - "end": 2820, - "loc": { - "start": { - "line": 1, - "column": 2771 - }, - "end": { - "line": 1, - "column": 2820 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~EvalError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~EvalError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~EvalError" - }, - { - "type": "StringLiteral", - "start": 2822, - "end": 2832, - "loc": { - "start": { - "line": 1, - "column": 2822 - }, - "end": { - "line": 1, - "column": 2832 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 2835, - "end": 3052, - "loc": { - "start": { - "line": 1, - "column": 2835 - }, - "end": { - "line": 1, - "column": 3052 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 2836, - "end": 2888, - "loc": { - "start": { - "line": 1, - "column": 2836 - }, - "end": { - "line": 1, - "column": 2888 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~float32array", - "raw": "\"builtinexternal/ecmascriptexternal.js~float32array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~float32array" - }, - { - "type": "StringLiteral", - "start": 2890, - "end": 2985, - "loc": { - "start": { - "line": 1, - "column": 2890 - }, - "end": { - "line": 1, - "column": 2985 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array" - }, - { - "type": "StringLiteral", - "start": 2987, - "end": 3039, - "loc": { - "start": { - "line": 1, - "column": 2987 - }, - "end": { - "line": 1, - "column": 3039 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Float32Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Float32Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Float32Array" - }, - { - "type": "StringLiteral", - "start": 3041, - "end": 3051, - "loc": { - "start": { - "line": 1, - "column": 3041 - }, - "end": { - "line": 1, - "column": 3051 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 3054, - "end": 3271, - "loc": { - "start": { - "line": 1, - "column": 3054 - }, - "end": { - "line": 1, - "column": 3271 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 3055, - "end": 3107, - "loc": { - "start": { - "line": 1, - "column": 3055 - }, - "end": { - "line": 1, - "column": 3107 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~float64array", - "raw": "\"builtinexternal/ecmascriptexternal.js~float64array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~float64array" - }, - { - "type": "StringLiteral", - "start": 3109, - "end": 3204, - "loc": { - "start": { - "line": 1, - "column": 3109 - }, - "end": { - "line": 1, - "column": 3204 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array" - }, - { - "type": "StringLiteral", - "start": 3206, - "end": 3258, - "loc": { - "start": { - "line": 1, - "column": 3206 - }, - "end": { - "line": 1, - "column": 3258 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Float64Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Float64Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Float64Array" - }, - { - "type": "StringLiteral", - "start": 3260, - "end": 3270, - "loc": { - "start": { - "line": 1, - "column": 3260 - }, - "end": { - "line": 1, - "column": 3270 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 3273, - "end": 3478, - "loc": { - "start": { - "line": 1, - "column": 3273 - }, - "end": { - "line": 1, - "column": 3478 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 3274, - "end": 3322, - "loc": { - "start": { - "line": 1, - "column": 3274 - }, - "end": { - "line": 1, - "column": 3322 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~function", - "raw": "\"builtinexternal/ecmascriptexternal.js~function\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~function" - }, - { - "type": "StringLiteral", - "start": 3324, - "end": 3415, - "loc": { - "start": { - "line": 1, - "column": 3324 - }, - "end": { - "line": 1, - "column": 3415 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function" - }, - { - "type": "StringLiteral", - "start": 3417, - "end": 3465, - "loc": { - "start": { - "line": 1, - "column": 3417 - }, - "end": { - "line": 1, - "column": 3465 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Function", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Function\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Function" - }, - { - "type": "StringLiteral", - "start": 3467, - "end": 3477, - "loc": { - "start": { - "line": 1, - "column": 3467 - }, - "end": { - "line": 1, - "column": 3477 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 3480, - "end": 3688, - "loc": { - "start": { - "line": 1, - "column": 3480 - }, - "end": { - "line": 1, - "column": 3688 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 3481, - "end": 3530, - "loc": { - "start": { - "line": 1, - "column": 3481 - }, - "end": { - "line": 1, - "column": 3530 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~generator", - "raw": "\"builtinexternal/ecmascriptexternal.js~generator\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~generator" - }, - { - "type": "StringLiteral", - "start": 3532, - "end": 3624, - "loc": { - "start": { - "line": 1, - "column": 3532 - }, - "end": { - "line": 1, - "column": 3624 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator" - }, - { - "type": "StringLiteral", - "start": 3626, - "end": 3675, - "loc": { - "start": { - "line": 1, - "column": 3626 - }, - "end": { - "line": 1, - "column": 3675 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Generator", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Generator\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Generator" - }, - { - "type": "StringLiteral", - "start": 3677, - "end": 3687, - "loc": { - "start": { - "line": 1, - "column": 3677 - }, - "end": { - "line": 1, - "column": 3687 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 3690, - "end": 3922, - "loc": { - "start": { - "line": 1, - "column": 3690 - }, - "end": { - "line": 1, - "column": 3922 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 3691, - "end": 3748, - "loc": { - "start": { - "line": 1, - "column": 3691 - }, - "end": { - "line": 1, - "column": 3748 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~generatorfunction", - "raw": "\"builtinexternal/ecmascriptexternal.js~generatorfunction\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~generatorfunction" - }, - { - "type": "StringLiteral", - "start": 3750, - "end": 3850, - "loc": { - "start": { - "line": 1, - "column": 3750 - }, - "end": { - "line": 1, - "column": 3850 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction" - }, - { - "type": "StringLiteral", - "start": 3852, - "end": 3909, - "loc": { - "start": { - "line": 1, - "column": 3852 - }, - "end": { - "line": 1, - "column": 3909 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction" - }, - { - "type": "StringLiteral", - "start": 3911, - "end": 3921, - "loc": { - "start": { - "line": 1, - "column": 3911 - }, - "end": { - "line": 1, - "column": 3921 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 3924, - "end": 4129, - "loc": { - "start": { - "line": 1, - "column": 3924 - }, - "end": { - "line": 1, - "column": 4129 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 3925, - "end": 3973, - "loc": { - "start": { - "line": 1, - "column": 3925 - }, - "end": { - "line": 1, - "column": 3973 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~infinity", - "raw": "\"builtinexternal/ecmascriptexternal.js~infinity\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~infinity" - }, - { - "type": "StringLiteral", - "start": 3975, - "end": 4066, - "loc": { - "start": { - "line": 1, - "column": 3975 - }, - "end": { - "line": 1, - "column": 4066 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity" - }, - { - "type": "StringLiteral", - "start": 4068, - "end": 4116, - "loc": { - "start": { - "line": 1, - "column": 4068 - }, - "end": { - "line": 1, - "column": 4116 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Infinity", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Infinity\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Infinity" - }, - { - "type": "StringLiteral", - "start": 4118, - "end": 4128, - "loc": { - "start": { - "line": 1, - "column": 4118 - }, - "end": { - "line": 1, - "column": 4128 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 4131, - "end": 4342, - "loc": { - "start": { - "line": 1, - "column": 4131 - }, - "end": { - "line": 1, - "column": 4342 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 4132, - "end": 4182, - "loc": { - "start": { - "line": 1, - "column": 4132 - }, - "end": { - "line": 1, - "column": 4182 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~int16array", - "raw": "\"builtinexternal/ecmascriptexternal.js~int16array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~int16array" - }, - { - "type": "StringLiteral", - "start": 4184, - "end": 4277, - "loc": { - "start": { - "line": 1, - "column": 4184 - }, - "end": { - "line": 1, - "column": 4277 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array" - }, - { - "type": "StringLiteral", - "start": 4279, - "end": 4329, - "loc": { - "start": { - "line": 1, - "column": 4279 - }, - "end": { - "line": 1, - "column": 4329 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Int16Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Int16Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int16Array" - }, - { - "type": "StringLiteral", - "start": 4331, - "end": 4341, - "loc": { - "start": { - "line": 1, - "column": 4331 - }, - "end": { - "line": 1, - "column": 4341 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 4344, - "end": 4555, - "loc": { - "start": { - "line": 1, - "column": 4344 - }, - "end": { - "line": 1, - "column": 4555 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 4345, - "end": 4395, - "loc": { - "start": { - "line": 1, - "column": 4345 - }, - "end": { - "line": 1, - "column": 4395 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~int32array", - "raw": "\"builtinexternal/ecmascriptexternal.js~int32array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~int32array" - }, - { - "type": "StringLiteral", - "start": 4397, - "end": 4490, - "loc": { - "start": { - "line": 1, - "column": 4397 - }, - "end": { - "line": 1, - "column": 4490 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array" - }, - { - "type": "StringLiteral", - "start": 4492, - "end": 4542, - "loc": { - "start": { - "line": 1, - "column": 4492 - }, - "end": { - "line": 1, - "column": 4542 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Int32Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Int32Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int32Array" - }, - { - "type": "StringLiteral", - "start": 4544, - "end": 4554, - "loc": { - "start": { - "line": 1, - "column": 4544 - }, - "end": { - "line": 1, - "column": 4554 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 4557, - "end": 4765, - "loc": { - "start": { - "line": 1, - "column": 4557 - }, - "end": { - "line": 1, - "column": 4765 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 4558, - "end": 4607, - "loc": { - "start": { - "line": 1, - "column": 4558 - }, - "end": { - "line": 1, - "column": 4607 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~int8array", - "raw": "\"builtinexternal/ecmascriptexternal.js~int8array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~int8array" - }, - { - "type": "StringLiteral", - "start": 4609, - "end": 4701, - "loc": { - "start": { - "line": 1, - "column": 4609 - }, - "end": { - "line": 1, - "column": 4701 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array" - }, - { - "type": "StringLiteral", - "start": 4703, - "end": 4752, - "loc": { - "start": { - "line": 1, - "column": 4703 - }, - "end": { - "line": 1, - "column": 4752 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Int8Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Int8Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int8Array" - }, - { - "type": "StringLiteral", - "start": 4754, - "end": 4764, - "loc": { - "start": { - "line": 1, - "column": 4754 - }, - "end": { - "line": 1, - "column": 4764 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 4767, - "end": 4987, - "loc": { - "start": { - "line": 1, - "column": 4767 - }, - "end": { - "line": 1, - "column": 4987 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 4768, - "end": 4821, - "loc": { - "start": { - "line": 1, - "column": 4768 - }, - "end": { - "line": 1, - "column": 4821 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~internalerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~internalerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~internalerror" - }, - { - "type": "StringLiteral", - "start": 4823, - "end": 4919, - "loc": { - "start": { - "line": 1, - "column": 4823 - }, - "end": { - "line": 1, - "column": 4919 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError" - }, - { - "type": "StringLiteral", - "start": 4921, - "end": 4974, - "loc": { - "start": { - "line": 1, - "column": 4921 - }, - "end": { - "line": 1, - "column": 4974 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~InternalError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~InternalError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~InternalError" - }, - { - "type": "StringLiteral", - "start": 4976, - "end": 4986, - "loc": { - "start": { - "line": 1, - "column": 4976 - }, - "end": { - "line": 1, - "column": 4986 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 4989, - "end": 5182, - "loc": { - "start": { - "line": 1, - "column": 4989 - }, - "end": { - "line": 1, - "column": 5182 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 4990, - "end": 5034, - "loc": { - "start": { - "line": 1, - "column": 4990 - }, - "end": { - "line": 1, - "column": 5034 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~json", - "raw": "\"builtinexternal/ecmascriptexternal.js~json\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~json" - }, - { - "type": "StringLiteral", - "start": 5036, - "end": 5123, - "loc": { - "start": { - "line": 1, - "column": 5036 - }, - "end": { - "line": 1, - "column": 5123 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON" - }, - { - "type": "StringLiteral", - "start": 5125, - "end": 5169, - "loc": { - "start": { - "line": 1, - "column": 5125 - }, - "end": { - "line": 1, - "column": 5169 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~JSON", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~JSON\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~JSON" - }, - { - "type": "StringLiteral", - "start": 5171, - "end": 5181, - "loc": { - "start": { - "line": 1, - "column": 5171 - }, - "end": { - "line": 1, - "column": 5181 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 5184, - "end": 5374, - "loc": { - "start": { - "line": 1, - "column": 5184 - }, - "end": { - "line": 1, - "column": 5374 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5185, - "end": 5228, - "loc": { - "start": { - "line": 1, - "column": 5185 - }, - "end": { - "line": 1, - "column": 5228 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~map", - "raw": "\"builtinexternal/ecmascriptexternal.js~map\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~map" - }, - { - "type": "StringLiteral", - "start": 5230, - "end": 5316, - "loc": { - "start": { - "line": 1, - "column": 5230 - }, - "end": { - "line": 1, - "column": 5316 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map" - }, - { - "type": "StringLiteral", - "start": 5318, - "end": 5361, - "loc": { - "start": { - "line": 1, - "column": 5318 - }, - "end": { - "line": 1, - "column": 5361 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Map", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Map\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Map" - }, - { - "type": "StringLiteral", - "start": 5363, - "end": 5373, - "loc": { - "start": { - "line": 1, - "column": 5363 - }, - "end": { - "line": 1, - "column": 5373 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 5376, - "end": 5566, - "loc": { - "start": { - "line": 1, - "column": 5376 - }, - "end": { - "line": 1, - "column": 5566 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5377, - "end": 5420, - "loc": { - "start": { - "line": 1, - "column": 5377 - }, - "end": { - "line": 1, - "column": 5420 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~nan", - "raw": "\"builtinexternal/ecmascriptexternal.js~nan\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~nan" - }, - { - "type": "StringLiteral", - "start": 5422, - "end": 5508, - "loc": { - "start": { - "line": 1, - "column": 5422 - }, - "end": { - "line": 1, - "column": 5508 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN" - }, - { - "type": "StringLiteral", - "start": 5510, - "end": 5553, - "loc": { - "start": { - "line": 1, - "column": 5510 - }, - "end": { - "line": 1, - "column": 5553 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~NaN", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~NaN\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~NaN" - }, - { - "type": "StringLiteral", - "start": 5555, - "end": 5565, - "loc": { - "start": { - "line": 1, - "column": 5555 - }, - "end": { - "line": 1, - "column": 5565 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 5568, - "end": 5767, - "loc": { - "start": { - "line": 1, - "column": 5568 - }, - "end": { - "line": 1, - "column": 5767 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5569, - "end": 5615, - "loc": { - "start": { - "line": 1, - "column": 5569 - }, - "end": { - "line": 1, - "column": 5615 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~number", - "raw": "\"builtinexternal/ecmascriptexternal.js~number\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~number" - }, - { - "type": "StringLiteral", - "start": 5617, - "end": 5706, - "loc": { - "start": { - "line": 1, - "column": 5617 - }, - "end": { - "line": 1, - "column": 5706 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number" - }, - { - "type": "StringLiteral", - "start": 5708, - "end": 5754, - "loc": { - "start": { - "line": 1, - "column": 5708 - }, - "end": { - "line": 1, - "column": 5754 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Number", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Number\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Number" - }, - { - "type": "StringLiteral", - "start": 5756, - "end": 5766, - "loc": { - "start": { - "line": 1, - "column": 5756 - }, - "end": { - "line": 1, - "column": 5766 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 5769, - "end": 5968, - "loc": { - "start": { - "line": 1, - "column": 5769 - }, - "end": { - "line": 1, - "column": 5968 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5770, - "end": 5816, - "loc": { - "start": { - "line": 1, - "column": 5770 - }, - "end": { - "line": 1, - "column": 5816 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~object", - "raw": "\"builtinexternal/ecmascriptexternal.js~object\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~object" - }, - { - "type": "StringLiteral", - "start": 5818, - "end": 5907, - "loc": { - "start": { - "line": 1, - "column": 5818 - }, - "end": { - "line": 1, - "column": 5907 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" - }, - { - "type": "StringLiteral", - "start": 5909, - "end": 5955, - "loc": { - "start": { - "line": 1, - "column": 5909 - }, - "end": { - "line": 1, - "column": 5955 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Object", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Object\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Object" - }, - { - "type": "StringLiteral", - "start": 5957, - "end": 5967, - "loc": { - "start": { - "line": 1, - "column": 5957 - }, - "end": { - "line": 1, - "column": 5967 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 5970, - "end": 6172, - "loc": { - "start": { - "line": 1, - "column": 5970 - }, - "end": { - "line": 1, - "column": 6172 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 5971, - "end": 6018, - "loc": { - "start": { - "line": 1, - "column": 5971 - }, - "end": { - "line": 1, - "column": 6018 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~promise", - "raw": "\"builtinexternal/ecmascriptexternal.js~promise\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~promise" - }, - { - "type": "StringLiteral", - "start": 6020, - "end": 6110, - "loc": { - "start": { - "line": 1, - "column": 6020 - }, - "end": { - "line": 1, - "column": 6110 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise" - }, - { - "type": "StringLiteral", - "start": 6112, - "end": 6159, - "loc": { - "start": { - "line": 1, - "column": 6112 - }, - "end": { - "line": 1, - "column": 6159 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Promise", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Promise\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Promise" - }, - { - "type": "StringLiteral", - "start": 6161, - "end": 6171, - "loc": { - "start": { - "line": 1, - "column": 6161 - }, - "end": { - "line": 1, - "column": 6171 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6174, - "end": 6370, - "loc": { - "start": { - "line": 1, - "column": 6174 - }, - "end": { - "line": 1, - "column": 6370 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6175, - "end": 6220, - "loc": { - "start": { - "line": 1, - "column": 6175 - }, - "end": { - "line": 1, - "column": 6220 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~proxy", - "raw": "\"builtinexternal/ecmascriptexternal.js~proxy\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~proxy" - }, - { - "type": "StringLiteral", - "start": 6222, - "end": 6310, - "loc": { - "start": { - "line": 1, - "column": 6222 - }, - "end": { - "line": 1, - "column": 6310 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy" - }, - { - "type": "StringLiteral", - "start": 6312, - "end": 6357, - "loc": { - "start": { - "line": 1, - "column": 6312 - }, - "end": { - "line": 1, - "column": 6357 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Proxy", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Proxy\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Proxy" - }, - { - "type": "StringLiteral", - "start": 6359, - "end": 6369, - "loc": { - "start": { - "line": 1, - "column": 6359 - }, - "end": { - "line": 1, - "column": 6369 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6372, - "end": 6583, - "loc": { - "start": { - "line": 1, - "column": 6372 - }, - "end": { - "line": 1, - "column": 6583 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6373, - "end": 6423, - "loc": { - "start": { - "line": 1, - "column": 6373 - }, - "end": { - "line": 1, - "column": 6423 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~rangeerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~rangeerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~rangeerror" - }, - { - "type": "StringLiteral", - "start": 6425, - "end": 6518, - "loc": { - "start": { - "line": 1, - "column": 6425 - }, - "end": { - "line": 1, - "column": 6518 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError" - }, - { - "type": "StringLiteral", - "start": 6520, - "end": 6570, - "loc": { - "start": { - "line": 1, - "column": 6520 - }, - "end": { - "line": 1, - "column": 6570 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~RangeError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~RangeError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~RangeError" - }, - { - "type": "StringLiteral", - "start": 6572, - "end": 6582, - "loc": { - "start": { - "line": 1, - "column": 6572 - }, - "end": { - "line": 1, - "column": 6582 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6585, - "end": 6808, - "loc": { - "start": { - "line": 1, - "column": 6585 - }, - "end": { - "line": 1, - "column": 6808 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6586, - "end": 6640, - "loc": { - "start": { - "line": 1, - "column": 6586 - }, - "end": { - "line": 1, - "column": 6640 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~referenceerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~referenceerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~referenceerror" - }, - { - "type": "StringLiteral", - "start": 6642, - "end": 6739, - "loc": { - "start": { - "line": 1, - "column": 6642 - }, - "end": { - "line": 1, - "column": 6739 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError" - }, - { - "type": "StringLiteral", - "start": 6741, - "end": 6795, - "loc": { - "start": { - "line": 1, - "column": 6741 - }, - "end": { - "line": 1, - "column": 6795 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~ReferenceError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError" - }, - { - "type": "StringLiteral", - "start": 6797, - "end": 6807, - "loc": { - "start": { - "line": 1, - "column": 6797 - }, - "end": { - "line": 1, - "column": 6807 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 6810, - "end": 7012, - "loc": { - "start": { - "line": 1, - "column": 6810 - }, - "end": { - "line": 1, - "column": 7012 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 6811, - "end": 6858, - "loc": { - "start": { - "line": 1, - "column": 6811 - }, - "end": { - "line": 1, - "column": 6858 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~reflect", - "raw": "\"builtinexternal/ecmascriptexternal.js~reflect\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~reflect" - }, - { - "type": "StringLiteral", - "start": 6860, - "end": 6950, - "loc": { - "start": { - "line": 1, - "column": 6860 - }, - "end": { - "line": 1, - "column": 6950 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect" - }, - { - "type": "StringLiteral", - "start": 6952, - "end": 6999, - "loc": { - "start": { - "line": 1, - "column": 6952 - }, - "end": { - "line": 1, - "column": 6999 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Reflect", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Reflect\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Reflect" - }, - { - "type": "StringLiteral", - "start": 7001, - "end": 7011, - "loc": { - "start": { - "line": 1, - "column": 7001 - }, - "end": { - "line": 1, - "column": 7011 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7014, - "end": 7213, - "loc": { - "start": { - "line": 1, - "column": 7014 - }, - "end": { - "line": 1, - "column": 7213 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7015, - "end": 7061, - "loc": { - "start": { - "line": 1, - "column": 7015 - }, - "end": { - "line": 1, - "column": 7061 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~regexp", - "raw": "\"builtinexternal/ecmascriptexternal.js~regexp\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~regexp" - }, - { - "type": "StringLiteral", - "start": 7063, - "end": 7152, - "loc": { - "start": { - "line": 1, - "column": 7063 - }, - "end": { - "line": 1, - "column": 7152 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp" - }, - { - "type": "StringLiteral", - "start": 7154, - "end": 7200, - "loc": { - "start": { - "line": 1, - "column": 7154 - }, - "end": { - "line": 1, - "column": 7200 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~RegExp", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~RegExp\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~RegExp" - }, - { - "type": "StringLiteral", - "start": 7202, - "end": 7212, - "loc": { - "start": { - "line": 1, - "column": 7202 - }, - "end": { - "line": 1, - "column": 7212 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7215, - "end": 7405, - "loc": { - "start": { - "line": 1, - "column": 7215 - }, - "end": { - "line": 1, - "column": 7405 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7216, - "end": 7259, - "loc": { - "start": { - "line": 1, - "column": 7216 - }, - "end": { - "line": 1, - "column": 7259 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~set", - "raw": "\"builtinexternal/ecmascriptexternal.js~set\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~set" - }, - { - "type": "StringLiteral", - "start": 7261, - "end": 7347, - "loc": { - "start": { - "line": 1, - "column": 7261 - }, - "end": { - "line": 1, - "column": 7347 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set" - }, - { - "type": "StringLiteral", - "start": 7349, - "end": 7392, - "loc": { - "start": { - "line": 1, - "column": 7349 - }, - "end": { - "line": 1, - "column": 7392 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Set", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Set\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Set" - }, - { - "type": "StringLiteral", - "start": 7394, - "end": 7404, - "loc": { - "start": { - "line": 1, - "column": 7394 - }, - "end": { - "line": 1, - "column": 7404 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7407, - "end": 7606, - "loc": { - "start": { - "line": 1, - "column": 7407 - }, - "end": { - "line": 1, - "column": 7606 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7408, - "end": 7454, - "loc": { - "start": { - "line": 1, - "column": 7408 - }, - "end": { - "line": 1, - "column": 7454 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~string", - "raw": "\"builtinexternal/ecmascriptexternal.js~string\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~string" - }, - { - "type": "StringLiteral", - "start": 7456, - "end": 7545, - "loc": { - "start": { - "line": 1, - "column": 7456 - }, - "end": { - "line": 1, - "column": 7545 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String" - }, - { - "type": "StringLiteral", - "start": 7547, - "end": 7593, - "loc": { - "start": { - "line": 1, - "column": 7547 - }, - "end": { - "line": 1, - "column": 7593 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~String", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~String\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~String" - }, - { - "type": "StringLiteral", - "start": 7595, - "end": 7605, - "loc": { - "start": { - "line": 1, - "column": 7595 - }, - "end": { - "line": 1, - "column": 7605 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7608, - "end": 7807, - "loc": { - "start": { - "line": 1, - "column": 7608 - }, - "end": { - "line": 1, - "column": 7807 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7609, - "end": 7655, - "loc": { - "start": { - "line": 1, - "column": 7609 - }, - "end": { - "line": 1, - "column": 7655 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~symbol", - "raw": "\"builtinexternal/ecmascriptexternal.js~symbol\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~symbol" - }, - { - "type": "StringLiteral", - "start": 7657, - "end": 7746, - "loc": { - "start": { - "line": 1, - "column": 7657 - }, - "end": { - "line": 1, - "column": 7746 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol" - }, - { - "type": "StringLiteral", - "start": 7748, - "end": 7794, - "loc": { - "start": { - "line": 1, - "column": 7748 - }, - "end": { - "line": 1, - "column": 7794 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Symbol", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Symbol\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Symbol" - }, - { - "type": "StringLiteral", - "start": 7796, - "end": 7806, - "loc": { - "start": { - "line": 1, - "column": 7796 - }, - "end": { - "line": 1, - "column": 7806 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 7809, - "end": 8023, - "loc": { - "start": { - "line": 1, - "column": 7809 - }, - "end": { - "line": 1, - "column": 8023 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 7810, - "end": 7861, - "loc": { - "start": { - "line": 1, - "column": 7810 - }, - "end": { - "line": 1, - "column": 7861 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~syntaxerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~syntaxerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~syntaxerror" - }, - { - "type": "StringLiteral", - "start": 7863, - "end": 7957, - "loc": { - "start": { - "line": 1, - "column": 7863 - }, - "end": { - "line": 1, - "column": 7957 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError" - }, - { - "type": "StringLiteral", - "start": 7959, - "end": 8010, - "loc": { - "start": { - "line": 1, - "column": 7959 - }, - "end": { - "line": 1, - "column": 8010 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~SyntaxError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError" - }, - { - "type": "StringLiteral", - "start": 8012, - "end": 8022, - "loc": { - "start": { - "line": 1, - "column": 8012 - }, - "end": { - "line": 1, - "column": 8022 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 8025, - "end": 8233, - "loc": { - "start": { - "line": 1, - "column": 8025 - }, - "end": { - "line": 1, - "column": 8233 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 8026, - "end": 8075, - "loc": { - "start": { - "line": 1, - "column": 8026 - }, - "end": { - "line": 1, - "column": 8075 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~typeerror", - "raw": "\"builtinexternal/ecmascriptexternal.js~typeerror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~typeerror" - }, - { - "type": "StringLiteral", - "start": 8077, - "end": 8169, - "loc": { - "start": { - "line": 1, - "column": 8077 - }, - "end": { - "line": 1, - "column": 8169 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError" - }, - { - "type": "StringLiteral", - "start": 8171, - "end": 8220, - "loc": { - "start": { - "line": 1, - "column": 8171 - }, - "end": { - "line": 1, - "column": 8220 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~TypeError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~TypeError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~TypeError" - }, - { - "type": "StringLiteral", - "start": 8222, - "end": 8232, - "loc": { - "start": { - "line": 1, - "column": 8222 - }, - "end": { - "line": 1, - "column": 8232 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 8235, - "end": 8440, - "loc": { - "start": { - "line": 1, - "column": 8235 - }, - "end": { - "line": 1, - "column": 8440 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 8236, - "end": 8284, - "loc": { - "start": { - "line": 1, - "column": 8236 - }, - "end": { - "line": 1, - "column": 8284 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~urierror", - "raw": "\"builtinexternal/ecmascriptexternal.js~urierror\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~urierror" - }, - { - "type": "StringLiteral", - "start": 8286, - "end": 8377, - "loc": { - "start": { - "line": 1, - "column": 8286 - }, - "end": { - "line": 1, - "column": 8377 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError" - }, - { - "type": "StringLiteral", - "start": 8379, - "end": 8427, - "loc": { - "start": { - "line": 1, - "column": 8379 - }, - "end": { - "line": 1, - "column": 8427 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~URIError", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~URIError\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~URIError" - }, - { - "type": "StringLiteral", - "start": 8429, - "end": 8439, - "loc": { - "start": { - "line": 1, - "column": 8429 - }, - "end": { - "line": 1, - "column": 8439 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 8442, - "end": 8656, - "loc": { - "start": { - "line": 1, - "column": 8442 - }, - "end": { - "line": 1, - "column": 8656 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 8443, - "end": 8494, - "loc": { - "start": { - "line": 1, - "column": 8443 - }, - "end": { - "line": 1, - "column": 8494 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~uint16array", - "raw": "\"builtinexternal/ecmascriptexternal.js~uint16array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~uint16array" - }, - { - "type": "StringLiteral", - "start": 8496, - "end": 8590, - "loc": { - "start": { - "line": 1, - "column": 8496 - }, - "end": { - "line": 1, - "column": 8590 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array" - }, - { - "type": "StringLiteral", - "start": 8592, - "end": 8643, - "loc": { - "start": { - "line": 1, - "column": 8592 - }, - "end": { - "line": 1, - "column": 8643 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Uint16Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array" - }, - { - "type": "StringLiteral", - "start": 8645, - "end": 8655, - "loc": { - "start": { - "line": 1, - "column": 8645 - }, - "end": { - "line": 1, - "column": 8655 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 8658, - "end": 8872, - "loc": { - "start": { - "line": 1, - "column": 8658 - }, - "end": { - "line": 1, - "column": 8872 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 8659, - "end": 8710, - "loc": { - "start": { - "line": 1, - "column": 8659 - }, - "end": { - "line": 1, - "column": 8710 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~uint32array", - "raw": "\"builtinexternal/ecmascriptexternal.js~uint32array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~uint32array" - }, - { - "type": "StringLiteral", - "start": 8712, - "end": 8806, - "loc": { - "start": { - "line": 1, - "column": 8712 - }, - "end": { - "line": 1, - "column": 8806 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array" - }, - { - "type": "StringLiteral", - "start": 8808, - "end": 8859, - "loc": { - "start": { - "line": 1, - "column": 8808 - }, - "end": { - "line": 1, - "column": 8859 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Uint32Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array" - }, - { - "type": "StringLiteral", - "start": 8861, - "end": 8871, - "loc": { - "start": { - "line": 1, - "column": 8861 - }, - "end": { - "line": 1, - "column": 8871 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 8874, - "end": 9085, - "loc": { - "start": { - "line": 1, - "column": 8874 - }, - "end": { - "line": 1, - "column": 9085 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 8875, - "end": 8925, - "loc": { - "start": { - "line": 1, - "column": 8875 - }, - "end": { - "line": 1, - "column": 8925 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~uint8array", - "raw": "\"builtinexternal/ecmascriptexternal.js~uint8array\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~uint8array" - }, - { - "type": "StringLiteral", - "start": 8927, - "end": 9020, - "loc": { - "start": { - "line": 1, - "column": 8927 - }, - "end": { - "line": 1, - "column": 9020 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array" - }, - { - "type": "StringLiteral", - "start": 9022, - "end": 9072, - "loc": { - "start": { - "line": 1, - "column": 9022 - }, - "end": { - "line": 1, - "column": 9072 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Uint8Array\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array" - }, - { - "type": "StringLiteral", - "start": 9074, - "end": 9084, - "loc": { - "start": { - "line": 1, - "column": 9074 - }, - "end": { - "line": 1, - "column": 9084 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 9087, - "end": 9319, - "loc": { - "start": { - "line": 1, - "column": 9087 - }, - "end": { - "line": 1, - "column": 9319 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 9088, - "end": 9145, - "loc": { - "start": { - "line": 1, - "column": 9088 - }, - "end": { - "line": 1, - "column": 9145 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~uint8clampedarray", - "raw": "\"builtinexternal/ecmascriptexternal.js~uint8clampedarray\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~uint8clampedarray" - }, - { - "type": "StringLiteral", - "start": 9147, - "end": 9247, - "loc": { - "start": { - "line": 1, - "column": 9147 - }, - "end": { - "line": 1, - "column": 9247 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray" - }, - { - "type": "StringLiteral", - "start": 9249, - "end": 9306, - "loc": { - "start": { - "line": 1, - "column": 9249 - }, - "end": { - "line": 1, - "column": 9306 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray" - }, - { - "type": "StringLiteral", - "start": 9308, - "end": 9318, - "loc": { - "start": { - "line": 1, - "column": 9308 - }, - "end": { - "line": 1, - "column": 9318 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 9321, - "end": 9523, - "loc": { - "start": { - "line": 1, - "column": 9321 - }, - "end": { - "line": 1, - "column": 9523 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 9322, - "end": 9369, - "loc": { - "start": { - "line": 1, - "column": 9322 - }, - "end": { - "line": 1, - "column": 9369 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~weakmap", - "raw": "\"builtinexternal/ecmascriptexternal.js~weakmap\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~weakmap" - }, - { - "type": "StringLiteral", - "start": 9371, - "end": 9461, - "loc": { - "start": { - "line": 1, - "column": 9371 - }, - "end": { - "line": 1, - "column": 9461 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap" - }, - { - "type": "StringLiteral", - "start": 9463, - "end": 9510, - "loc": { - "start": { - "line": 1, - "column": 9463 - }, - "end": { - "line": 1, - "column": 9510 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~WeakMap", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~WeakMap\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~WeakMap" - }, - { - "type": "StringLiteral", - "start": 9512, - "end": 9522, - "loc": { - "start": { - "line": 1, - "column": 9512 - }, - "end": { - "line": 1, - "column": 9522 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 9525, - "end": 9727, - "loc": { - "start": { - "line": 1, - "column": 9525 - }, - "end": { - "line": 1, - "column": 9727 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 9526, - "end": 9573, - "loc": { - "start": { - "line": 1, - "column": 9526 - }, - "end": { - "line": 1, - "column": 9573 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~weakset", - "raw": "\"builtinexternal/ecmascriptexternal.js~weakset\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~weakset" - }, - { - "type": "StringLiteral", - "start": 9575, - "end": 9665, - "loc": { - "start": { - "line": 1, - "column": 9575 - }, - "end": { - "line": 1, - "column": 9665 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet" - }, - { - "type": "StringLiteral", - "start": 9667, - "end": 9714, - "loc": { - "start": { - "line": 1, - "column": 9667 - }, - "end": { - "line": 1, - "column": 9714 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~WeakSet", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~WeakSet\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~WeakSet" - }, - { - "type": "StringLiteral", - "start": 9716, - "end": 9726, - "loc": { - "start": { - "line": 1, - "column": 9716 - }, - "end": { - "line": 1, - "column": 9726 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 9729, - "end": 9931, - "loc": { - "start": { - "line": 1, - "column": 9729 - }, - "end": { - "line": 1, - "column": 9931 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 9730, - "end": 9777, - "loc": { - "start": { - "line": 1, - "column": 9730 - }, - "end": { - "line": 1, - "column": 9777 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~boolean", - "raw": "\"builtinexternal/ecmascriptexternal.js~boolean\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~boolean" - }, - { - "type": "StringLiteral", - "start": 9779, - "end": 9869, - "loc": { - "start": { - "line": 1, - "column": 9779 - }, - "end": { - "line": 1, - "column": 9869 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean" - }, - { - "type": "StringLiteral", - "start": 9871, - "end": 9918, - "loc": { - "start": { - "line": 1, - "column": 9871 - }, - "end": { - "line": 1, - "column": 9918 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~boolean", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~boolean\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~boolean" - }, - { - "type": "StringLiteral", - "start": 9920, - "end": 9930, - "loc": { - "start": { - "line": 1, - "column": 9920 - }, - "end": { - "line": 1, - "column": 9930 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 9933, - "end": 10138, - "loc": { - "start": { - "line": 1, - "column": 9933 - }, - "end": { - "line": 1, - "column": 10138 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 9934, - "end": 9982, - "loc": { - "start": { - "line": 1, - "column": 9934 - }, - "end": { - "line": 1, - "column": 9982 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~function", - "raw": "\"builtinexternal/ecmascriptexternal.js~function\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~function" - }, - { - "type": "StringLiteral", - "start": 9984, - "end": 10075, - "loc": { - "start": { - "line": 1, - "column": 9984 - }, - "end": { - "line": 1, - "column": 10075 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function" - }, - { - "type": "StringLiteral", - "start": 10077, - "end": 10125, - "loc": { - "start": { - "line": 1, - "column": 10077 - }, - "end": { - "line": 1, - "column": 10125 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~function", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~function\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~function" - }, - { - "type": "StringLiteral", - "start": 10127, - "end": 10137, - "loc": { - "start": { - "line": 1, - "column": 10127 - }, - "end": { - "line": 1, - "column": 10137 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 10140, - "end": 10333, - "loc": { - "start": { - "line": 1, - "column": 10140 - }, - "end": { - "line": 1, - "column": 10333 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10141, - "end": 10185, - "loc": { - "start": { - "line": 1, - "column": 10141 - }, - "end": { - "line": 1, - "column": 10185 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~null", - "raw": "\"builtinexternal/ecmascriptexternal.js~null\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~null" - }, - { - "type": "StringLiteral", - "start": 10187, - "end": 10274, - "loc": { - "start": { - "line": 1, - "column": 10187 - }, - "end": { - "line": 1, - "column": 10274 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null" - }, - { - "type": "StringLiteral", - "start": 10276, - "end": 10320, - "loc": { - "start": { - "line": 1, - "column": 10276 - }, - "end": { - "line": 1, - "column": 10320 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~null", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~null\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~null" - }, - { - "type": "StringLiteral", - "start": 10322, - "end": 10332, - "loc": { - "start": { - "line": 1, - "column": 10322 - }, - "end": { - "line": 1, - "column": 10332 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 10335, - "end": 10534, - "loc": { - "start": { - "line": 1, - "column": 10335 - }, - "end": { - "line": 1, - "column": 10534 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10336, - "end": 10382, - "loc": { - "start": { - "line": 1, - "column": 10336 - }, - "end": { - "line": 1, - "column": 10382 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~number", - "raw": "\"builtinexternal/ecmascriptexternal.js~number\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~number" - }, - { - "type": "StringLiteral", - "start": 10384, - "end": 10473, - "loc": { - "start": { - "line": 1, - "column": 10384 - }, - "end": { - "line": 1, - "column": 10473 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number" - }, - { - "type": "StringLiteral", - "start": 10475, - "end": 10521, - "loc": { - "start": { - "line": 1, - "column": 10475 - }, - "end": { - "line": 1, - "column": 10521 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~number", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~number\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~number" - }, - { - "type": "StringLiteral", - "start": 10523, - "end": 10533, - "loc": { - "start": { - "line": 1, - "column": 10523 - }, - "end": { - "line": 1, - "column": 10533 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 10536, - "end": 10735, - "loc": { - "start": { - "line": 1, - "column": 10536 - }, - "end": { - "line": 1, - "column": 10735 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10537, - "end": 10583, - "loc": { - "start": { - "line": 1, - "column": 10537 - }, - "end": { - "line": 1, - "column": 10583 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~object", - "raw": "\"builtinexternal/ecmascriptexternal.js~object\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~object" - }, - { - "type": "StringLiteral", - "start": 10585, - "end": 10674, - "loc": { - "start": { - "line": 1, - "column": 10585 - }, - "end": { - "line": 1, - "column": 10674 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" - }, - { - "type": "StringLiteral", - "start": 10676, - "end": 10722, - "loc": { - "start": { - "line": 1, - "column": 10676 - }, - "end": { - "line": 1, - "column": 10722 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~object", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~object\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~object" - }, - { - "type": "StringLiteral", - "start": 10724, - "end": 10734, - "loc": { - "start": { - "line": 1, - "column": 10724 - }, - "end": { - "line": 1, - "column": 10734 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 10737, - "end": 10936, - "loc": { - "start": { - "line": 1, - "column": 10737 - }, - "end": { - "line": 1, - "column": 10936 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10738, - "end": 10784, - "loc": { - "start": { - "line": 1, - "column": 10738 - }, - "end": { - "line": 1, - "column": 10784 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~string", - "raw": "\"builtinexternal/ecmascriptexternal.js~string\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~string" - }, - { - "type": "StringLiteral", - "start": 10786, - "end": 10875, - "loc": { - "start": { - "line": 1, - "column": 10786 - }, - "end": { - "line": 1, - "column": 10875 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String" - }, - { - "type": "StringLiteral", - "start": 10877, - "end": 10923, - "loc": { - "start": { - "line": 1, - "column": 10877 - }, - "end": { - "line": 1, - "column": 10923 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~string", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~string\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~string" - }, - { - "type": "StringLiteral", - "start": 10925, - "end": 10935, - "loc": { - "start": { - "line": 1, - "column": 10925 - }, - "end": { - "line": 1, - "column": 10935 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 10938, - "end": 11146, - "loc": { - "start": { - "line": 1, - "column": 10938 - }, - "end": { - "line": 1, - "column": 11146 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 10939, - "end": 10988, - "loc": { - "start": { - "line": 1, - "column": 10939 - }, - "end": { - "line": 1, - "column": 10988 - } - }, - "extra": { - "rawValue": "builtinexternal/ecmascriptexternal.js~undefined", - "raw": "\"builtinexternal/ecmascriptexternal.js~undefined\"" - }, - "value": "builtinexternal/ecmascriptexternal.js~undefined" - }, - { - "type": "StringLiteral", - "start": 10990, - "end": 11082, - "loc": { - "start": { - "line": 1, - "column": 10990 - }, - "end": { - "line": 1, - "column": 11082 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined" - }, - { - "type": "StringLiteral", - "start": 11084, - "end": 11133, - "loc": { - "start": { - "line": 1, - "column": 11084 - }, - "end": { - "line": 1, - "column": 11133 - } - }, - "extra": { - "rawValue": "BuiltinExternal/ECMAScriptExternal.js~undefined", - "raw": "\"BuiltinExternal/ECMAScriptExternal.js~undefined\"" - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~undefined" - }, - { - "type": "StringLiteral", - "start": 11135, - "end": 11145, - "loc": { - "start": { - "line": 1, - "column": 11135 - }, - "end": { - "line": 1, - "column": 11145 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 11148, - "end": 11322, - "loc": { - "start": { - "line": 1, - "column": 11148 - }, - "end": { - "line": 1, - "column": 11322 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 11149, - "end": 11197, - "loc": { - "start": { - "line": 1, - "column": 11149 - }, - "end": { - "line": 1, - "column": 11197 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~audiocontext", - "raw": "\"builtinexternal/webapiexternal.js~audiocontext\"" - }, - "value": "builtinexternal/webapiexternal.js~audiocontext" - }, - { - "type": "StringLiteral", - "start": 11199, - "end": 11259, - "loc": { - "start": { - "line": 1, - "column": 11199 - }, - "end": { - "line": 1, - "column": 11259 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en/docs/Web/API/AudioContext", - "raw": "\"https://developer.mozilla.org/en/docs/Web/API/AudioContext\"" - }, - "value": "https://developer.mozilla.org/en/docs/Web/API/AudioContext" - }, - { - "type": "StringLiteral", - "start": 11261, - "end": 11309, - "loc": { - "start": { - "line": 1, - "column": 11261 - }, - "end": { - "line": 1, - "column": 11309 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~AudioContext", - "raw": "\"BuiltinExternal/WebAPIExternal.js~AudioContext\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~AudioContext" - }, - { - "type": "StringLiteral", - "start": 11311, - "end": 11321, - "loc": { - "start": { - "line": 1, - "column": 11311 - }, - "end": { - "line": 1, - "column": 11321 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 11324, - "end": 11537, - "loc": { - "start": { - "line": 1, - "column": 11324 - }, - "end": { - "line": 1, - "column": 11537 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 11325, - "end": 11385, - "loc": { - "start": { - "line": 1, - "column": 11325 - }, - "end": { - "line": 1, - "column": 11385 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~canvasrenderingcontext2d", - "raw": "\"builtinexternal/webapiexternal.js~canvasrenderingcontext2d\"" - }, - "value": "builtinexternal/webapiexternal.js~canvasrenderingcontext2d" - }, - { - "type": "StringLiteral", - "start": 11387, - "end": 11462, - "loc": { - "start": { - "line": 1, - "column": 11387 - }, - "end": { - "line": 1, - "column": 11462 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D" - }, - { - "type": "StringLiteral", - "start": 11464, - "end": 11524, - "loc": { - "start": { - "line": 1, - "column": 11464 - }, - "end": { - "line": 1, - "column": 11524 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D", - "raw": "\"BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D" - }, - { - "type": "StringLiteral", - "start": 11526, - "end": 11536, - "loc": { - "start": { - "line": 1, - "column": 11526 - }, - "end": { - "line": 1, - "column": 11536 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 11539, - "end": 11728, - "loc": { - "start": { - "line": 1, - "column": 11539 - }, - "end": { - "line": 1, - "column": 11728 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 11540, - "end": 11592, - "loc": { - "start": { - "line": 1, - "column": 11540 - }, - "end": { - "line": 1, - "column": 11592 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~documentfragment", - "raw": "\"builtinexternal/webapiexternal.js~documentfragment\"" - }, - "value": "builtinexternal/webapiexternal.js~documentfragment" - }, - { - "type": "StringLiteral", - "start": 11594, - "end": 11661, - "loc": { - "start": { - "line": 1, - "column": 11594 - }, - "end": { - "line": 1, - "column": 11661 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment" - }, - { - "type": "StringLiteral", - "start": 11663, - "end": 11715, - "loc": { - "start": { - "line": 1, - "column": 11663 - }, - "end": { - "line": 1, - "column": 11715 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~DocumentFragment", - "raw": "\"BuiltinExternal/WebAPIExternal.js~DocumentFragment\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~DocumentFragment" - }, - { - "type": "StringLiteral", - "start": 11717, - "end": 11727, - "loc": { - "start": { - "line": 1, - "column": 11717 - }, - "end": { - "line": 1, - "column": 11727 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 11730, - "end": 11892, - "loc": { - "start": { - "line": 1, - "column": 11730 - }, - "end": { - "line": 1, - "column": 11892 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 11731, - "end": 11774, - "loc": { - "start": { - "line": 1, - "column": 11731 - }, - "end": { - "line": 1, - "column": 11774 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~element", - "raw": "\"builtinexternal/webapiexternal.js~element\"" - }, - "value": "builtinexternal/webapiexternal.js~element" - }, - { - "type": "StringLiteral", - "start": 11776, - "end": 11834, - "loc": { - "start": { - "line": 1, - "column": 11776 - }, - "end": { - "line": 1, - "column": 11834 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/Element", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/Element\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Element" - }, - { - "type": "StringLiteral", - "start": 11836, - "end": 11879, - "loc": { - "start": { - "line": 1, - "column": 11836 - }, - "end": { - "line": 1, - "column": 11879 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~Element", - "raw": "\"BuiltinExternal/WebAPIExternal.js~Element\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~Element" - }, - { - "type": "StringLiteral", - "start": 11881, - "end": 11891, - "loc": { - "start": { - "line": 1, - "column": 11881 - }, - "end": { - "line": 1, - "column": 11891 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 11894, - "end": 12050, - "loc": { - "start": { - "line": 1, - "column": 11894 - }, - "end": { - "line": 1, - "column": 12050 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 11895, - "end": 11936, - "loc": { - "start": { - "line": 1, - "column": 11895 - }, - "end": { - "line": 1, - "column": 11936 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~event", - "raw": "\"builtinexternal/webapiexternal.js~event\"" - }, - "value": "builtinexternal/webapiexternal.js~event" - }, - { - "type": "StringLiteral", - "start": 11938, - "end": 11994, - "loc": { - "start": { - "line": 1, - "column": 11938 - }, - "end": { - "line": 1, - "column": 11994 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/Event", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/Event\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Event" - }, - { - "type": "StringLiteral", - "start": 11996, - "end": 12037, - "loc": { - "start": { - "line": 1, - "column": 11996 - }, - "end": { - "line": 1, - "column": 12037 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~Event", - "raw": "\"BuiltinExternal/WebAPIExternal.js~Event\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~Event" - }, - { - "type": "StringLiteral", - "start": 12039, - "end": 12049, - "loc": { - "start": { - "line": 1, - "column": 12039 - }, - "end": { - "line": 1, - "column": 12049 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12052, - "end": 12205, - "loc": { - "start": { - "line": 1, - "column": 12052 - }, - "end": { - "line": 1, - "column": 12205 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12053, - "end": 12093, - "loc": { - "start": { - "line": 1, - "column": 12053 - }, - "end": { - "line": 1, - "column": 12093 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~node", - "raw": "\"builtinexternal/webapiexternal.js~node\"" - }, - "value": "builtinexternal/webapiexternal.js~node" - }, - { - "type": "StringLiteral", - "start": 12095, - "end": 12150, - "loc": { - "start": { - "line": 1, - "column": 12095 - }, - "end": { - "line": 1, - "column": 12150 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/Node", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/Node\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Node" - }, - { - "type": "StringLiteral", - "start": 12152, - "end": 12192, - "loc": { - "start": { - "line": 1, - "column": 12152 - }, - "end": { - "line": 1, - "column": 12192 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~Node", - "raw": "\"BuiltinExternal/WebAPIExternal.js~Node\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~Node" - }, - { - "type": "StringLiteral", - "start": 12194, - "end": 12204, - "loc": { - "start": { - "line": 1, - "column": 12194 - }, - "end": { - "line": 1, - "column": 12204 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12207, - "end": 12372, - "loc": { - "start": { - "line": 1, - "column": 12207 - }, - "end": { - "line": 1, - "column": 12372 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12208, - "end": 12252, - "loc": { - "start": { - "line": 1, - "column": 12208 - }, - "end": { - "line": 1, - "column": 12252 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~nodelist", - "raw": "\"builtinexternal/webapiexternal.js~nodelist\"" - }, - "value": "builtinexternal/webapiexternal.js~nodelist" - }, - { - "type": "StringLiteral", - "start": 12254, - "end": 12313, - "loc": { - "start": { - "line": 1, - "column": 12254 - }, - "end": { - "line": 1, - "column": 12313 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", - "raw": "\"https://developer.mozilla.org/en-US/docs/Web/API/NodeList\"" - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList" - }, - { - "type": "StringLiteral", - "start": 12315, - "end": 12359, - "loc": { - "start": { - "line": 1, - "column": 12315 - }, - "end": { - "line": 1, - "column": 12359 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~NodeList", - "raw": "\"BuiltinExternal/WebAPIExternal.js~NodeList\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~NodeList" - }, - { - "type": "StringLiteral", - "start": 12361, - "end": 12371, - "loc": { - "start": { - "line": 1, - "column": 12361 - }, - "end": { - "line": 1, - "column": 12371 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12374, - "end": 12554, - "loc": { - "start": { - "line": 1, - "column": 12374 - }, - "end": { - "line": 1, - "column": 12554 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12375, - "end": 12425, - "loc": { - "start": { - "line": 1, - "column": 12375 - }, - "end": { - "line": 1, - "column": 12425 - } - }, - "extra": { - "rawValue": "builtinexternal/webapiexternal.js~xmlhttprequest", - "raw": "\"builtinexternal/webapiexternal.js~xmlhttprequest\"" - }, - "value": "builtinexternal/webapiexternal.js~xmlhttprequest" - }, - { - "type": "StringLiteral", - "start": 12427, - "end": 12489, - "loc": { - "start": { - "line": 1, - "column": 12427 - }, - "end": { - "line": 1, - "column": 12489 - } - }, - "extra": { - "rawValue": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest", - "raw": "\"https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest\"" - }, - "value": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest" - }, - { - "type": "StringLiteral", - "start": 12491, - "end": 12541, - "loc": { - "start": { - "line": 1, - "column": 12491 - }, - "end": { - "line": 1, - "column": 12541 - } - }, - "extra": { - "rawValue": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest", - "raw": "\"BuiltinExternal/WebAPIExternal.js~XMLHttpRequest\"" - }, - "value": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest" - }, - { - "type": "StringLiteral", - "start": 12543, - "end": 12553, - "loc": { - "start": { - "line": 1, - "column": 12543 - }, - "end": { - "line": 1, - "column": 12553 - } - }, - "extra": { - "rawValue": "external", - "raw": "\"external\"" - }, - "value": "external" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12556, - "end": 12742, - "loc": { - "start": { - "line": 1, - "column": 12556 - }, - "end": { - "line": 1, - "column": 12742 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12557, - "end": 12611, - "loc": { - "start": { - "line": 1, - "column": 12557 - }, - "end": { - "line": 1, - "column": 12611 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/inherited-summary.js", - "raw": "\"react-native-ble-plx/doc/script/inherited-summary.js\"" - }, - "value": "react-native-ble-plx/doc/script/inherited-summary.js" - }, - { - "type": "StringLiteral", - "start": 12613, - "end": 12677, - "loc": { - "start": { - "line": 1, - "column": 12613 - }, - "end": { - "line": 1, - "column": 12677 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/inherited-summary.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/inherited-summary.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/inherited-summary.js.html" - }, - { - "type": "StringLiteral", - "start": 12679, - "end": 12733, - "loc": { - "start": { - "line": 1, - "column": 12679 - }, - "end": { - "line": 1, - "column": 12733 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/inherited-summary.js", - "raw": "\"react-native-ble-plx/doc/script/inherited-summary.js\"" - }, - "value": "react-native-ble-plx/doc/script/inherited-summary.js" - }, - { - "type": "StringLiteral", - "start": 12735, - "end": 12741, - "loc": { - "start": { - "line": 1, - "column": 12735 - }, - "end": { - "line": 1, - "column": 12741 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12744, - "end": 12909, - "loc": { - "start": { - "line": 1, - "column": 12744 - }, - "end": { - "line": 1, - "column": 12909 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12745, - "end": 12792, - "loc": { - "start": { - "line": 1, - "column": 12745 - }, - "end": { - "line": 1, - "column": 12792 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/inner-link.js", - "raw": "\"react-native-ble-plx/doc/script/inner-link.js\"" - }, - "value": "react-native-ble-plx/doc/script/inner-link.js" - }, - { - "type": "StringLiteral", - "start": 12794, - "end": 12851, - "loc": { - "start": { - "line": 1, - "column": 12794 - }, - "end": { - "line": 1, - "column": 12851 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/inner-link.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/inner-link.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/inner-link.js.html" - }, - { - "type": "StringLiteral", - "start": 12853, - "end": 12900, - "loc": { - "start": { - "line": 1, - "column": 12853 - }, - "end": { - "line": 1, - "column": 12900 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/inner-link.js", - "raw": "\"react-native-ble-plx/doc/script/inner-link.js\"" - }, - "value": "react-native-ble-plx/doc/script/inner-link.js" - }, - { - "type": "StringLiteral", - "start": 12902, - "end": 12908, - "loc": { - "start": { - "line": 1, - "column": 12902 - }, - "end": { - "line": 1, - "column": 12908 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 12911, - "end": 13064, - "loc": { - "start": { - "line": 1, - "column": 12911 - }, - "end": { - "line": 1, - "column": 13064 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 12912, - "end": 12955, - "loc": { - "start": { - "line": 1, - "column": 12912 - }, - "end": { - "line": 1, - "column": 12955 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/manual.js", - "raw": "\"react-native-ble-plx/doc/script/manual.js\"" - }, - "value": "react-native-ble-plx/doc/script/manual.js" - }, - { - "type": "StringLiteral", - "start": 12957, - "end": 13010, - "loc": { - "start": { - "line": 1, - "column": 12957 - }, - "end": { - "line": 1, - "column": 13010 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/manual.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/manual.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/manual.js.html" - }, - { - "type": "StringLiteral", - "start": 13012, - "end": 13055, - "loc": { - "start": { - "line": 1, - "column": 13012 - }, - "end": { - "line": 1, - "column": 13055 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/manual.js", - "raw": "\"react-native-ble-plx/doc/script/manual.js\"" - }, - "value": "react-native-ble-plx/doc/script/manual.js" - }, - { - "type": "StringLiteral", - "start": 13057, - "end": 13063, - "loc": { - "start": { - "line": 1, - "column": 13057 - }, - "end": { - "line": 1, - "column": 13063 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13066, - "end": 13246, - "loc": { - "start": { - "line": 1, - "column": 13066 - }, - "end": { - "line": 1, - "column": 13246 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13067, - "end": 13119, - "loc": { - "start": { - "line": 1, - "column": 13067 - }, - "end": { - "line": 1, - "column": 13119 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/patch-for-local.js", - "raw": "\"react-native-ble-plx/doc/script/patch-for-local.js\"" - }, - "value": "react-native-ble-plx/doc/script/patch-for-local.js" - }, - { - "type": "StringLiteral", - "start": 13121, - "end": 13183, - "loc": { - "start": { - "line": 1, - "column": 13121 - }, - "end": { - "line": 1, - "column": 13183 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/patch-for-local.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/patch-for-local.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/patch-for-local.js.html" - }, - { - "type": "StringLiteral", - "start": 13185, - "end": 13237, - "loc": { - "start": { - "line": 1, - "column": 13185 - }, - "end": { - "line": 1, - "column": 13237 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/patch-for-local.js", - "raw": "\"react-native-ble-plx/doc/script/patch-for-local.js\"" - }, - "value": "react-native-ble-plx/doc/script/patch-for-local.js" - }, - { - "type": "StringLiteral", - "start": 13239, - "end": 13245, - "loc": { - "start": { - "line": 1, - "column": 13239 - }, - "end": { - "line": 1, - "column": 13245 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13248, - "end": 13434, - "loc": { - "start": { - "line": 1, - "column": 13248 - }, - "end": { - "line": 1, - "column": 13434 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13249, - "end": 13303, - "loc": { - "start": { - "line": 1, - "column": 13249 - }, - "end": { - "line": 1, - "column": 13303 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/prettify/prettify.js", - "raw": "\"react-native-ble-plx/doc/script/prettify/prettify.js\"" - }, - "value": "react-native-ble-plx/doc/script/prettify/prettify.js" - }, - { - "type": "StringLiteral", - "start": 13305, - "end": 13369, - "loc": { - "start": { - "line": 1, - "column": 13305 - }, - "end": { - "line": 1, - "column": 13369 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/prettify/prettify.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/prettify/prettify.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/prettify/prettify.js.html" - }, - { - "type": "StringLiteral", - "start": 13371, - "end": 13425, - "loc": { - "start": { - "line": 1, - "column": 13371 - }, - "end": { - "line": 1, - "column": 13425 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/prettify/prettify.js", - "raw": "\"react-native-ble-plx/doc/script/prettify/prettify.js\"" - }, - "value": "react-native-ble-plx/doc/script/prettify/prettify.js" - }, - { - "type": "StringLiteral", - "start": 13427, - "end": 13433, - "loc": { - "start": { - "line": 1, - "column": 13427 - }, - "end": { - "line": 1, - "column": 13433 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13436, - "end": 13607, - "loc": { - "start": { - "line": 1, - "column": 13436 - }, - "end": { - "line": 1, - "column": 13607 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13437, - "end": 13486, - "loc": { - "start": { - "line": 1, - "column": 13437 - }, - "end": { - "line": 1, - "column": 13486 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/pretty-print.js", - "raw": "\"react-native-ble-plx/doc/script/pretty-print.js\"" - }, - "value": "react-native-ble-plx/doc/script/pretty-print.js" - }, - { - "type": "StringLiteral", - "start": 13488, - "end": 13547, - "loc": { - "start": { - "line": 1, - "column": 13488 - }, - "end": { - "line": 1, - "column": 13547 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/pretty-print.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/pretty-print.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/pretty-print.js.html" - }, - { - "type": "StringLiteral", - "start": 13549, - "end": 13598, - "loc": { - "start": { - "line": 1, - "column": 13549 - }, - "end": { - "line": 1, - "column": 13598 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/pretty-print.js", - "raw": "\"react-native-ble-plx/doc/script/pretty-print.js\"" - }, - "value": "react-native-ble-plx/doc/script/pretty-print.js" - }, - { - "type": "StringLiteral", - "start": 13600, - "end": 13606, - "loc": { - "start": { - "line": 1, - "column": 13600 - }, - "end": { - "line": 1, - "column": 13606 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13609, - "end": 13762, - "loc": { - "start": { - "line": 1, - "column": 13609 - }, - "end": { - "line": 1, - "column": 13762 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13610, - "end": 13653, - "loc": { - "start": { - "line": 1, - "column": 13610 - }, - "end": { - "line": 1, - "column": 13653 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/search.js", - "raw": "\"react-native-ble-plx/doc/script/search.js\"" - }, - "value": "react-native-ble-plx/doc/script/search.js" - }, - { - "type": "StringLiteral", - "start": 13655, - "end": 13708, - "loc": { - "start": { - "line": 1, - "column": 13655 - }, - "end": { - "line": 1, - "column": 13708 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/search.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/search.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/search.js.html" - }, - { - "type": "StringLiteral", - "start": 13710, - "end": 13753, - "loc": { - "start": { - "line": 1, - "column": 13710 - }, - "end": { - "line": 1, - "column": 13753 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/search.js", - "raw": "\"react-native-ble-plx/doc/script/search.js\"" - }, - "value": "react-native-ble-plx/doc/script/search.js" - }, - { - "type": "StringLiteral", - "start": 13755, - "end": 13761, - "loc": { - "start": { - "line": 1, - "column": 13755 - }, - "end": { - "line": 1, - "column": 13761 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13764, - "end": 13935, - "loc": { - "start": { - "line": 1, - "column": 13764 - }, - "end": { - "line": 1, - "column": 13935 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13765, - "end": 13814, - "loc": { - "start": { - "line": 1, - "column": 13765 - }, - "end": { - "line": 1, - "column": 13814 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/search_index.js", - "raw": "\"react-native-ble-plx/doc/script/search_index.js\"" - }, - "value": "react-native-ble-plx/doc/script/search_index.js" - }, - { - "type": "StringLiteral", - "start": 13816, - "end": 13875, - "loc": { - "start": { - "line": 1, - "column": 13816 - }, - "end": { - "line": 1, - "column": 13875 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/search_index.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/search_index.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/search_index.js.html" - }, - { - "type": "StringLiteral", - "start": 13877, - "end": 13926, - "loc": { - "start": { - "line": 1, - "column": 13877 - }, - "end": { - "line": 1, - "column": 13926 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/search_index.js", - "raw": "\"react-native-ble-plx/doc/script/search_index.js\"" - }, - "value": "react-native-ble-plx/doc/script/search_index.js" - }, - { - "type": "StringLiteral", - "start": 13928, - "end": 13934, - "loc": { - "start": { - "line": 1, - "column": 13928 - }, - "end": { - "line": 1, - "column": 13934 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 13937, - "end": 14108, - "loc": { - "start": { - "line": 1, - "column": 13937 - }, - "end": { - "line": 1, - "column": 14108 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 13938, - "end": 13987, - "loc": { - "start": { - "line": 1, - "column": 13938 - }, - "end": { - "line": 1, - "column": 13987 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/test-summary.js", - "raw": "\"react-native-ble-plx/doc/script/test-summary.js\"" - }, - "value": "react-native-ble-plx/doc/script/test-summary.js" - }, - { - "type": "StringLiteral", - "start": 13989, - "end": 14048, - "loc": { - "start": { - "line": 1, - "column": 13989 - }, - "end": { - "line": 1, - "column": 14048 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/doc/script/test-summary.js.html", - "raw": "\"file/react-native-ble-plx/doc/script/test-summary.js.html\"" - }, - "value": "file/react-native-ble-plx/doc/script/test-summary.js.html" - }, - { - "type": "StringLiteral", - "start": 14050, - "end": 14099, - "loc": { - "start": { - "line": 1, - "column": 14050 - }, - "end": { - "line": 1, - "column": 14099 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/doc/script/test-summary.js", - "raw": "\"react-native-ble-plx/doc/script/test-summary.js\"" - }, - "value": "react-native-ble-plx/doc/script/test-summary.js" - }, - { - "type": "StringLiteral", - "start": 14101, - "end": 14107, - "loc": { - "start": { - "line": 1, - "column": 14101 - }, - "end": { - "line": 1, - "column": 14107 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 14110, - "end": 14227, - "loc": { - "start": { - "line": 1, - "column": 14110 - }, - "end": { - "line": 1, - "column": 14227 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14111, - "end": 14142, - "loc": { - "start": { - "line": 1, - "column": 14111 - }, - "end": { - "line": 1, - "column": 14142 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/index.js", - "raw": "\"react-native-ble-plx/index.js\"" - }, - "value": "react-native-ble-plx/index.js" - }, - { - "type": "StringLiteral", - "start": 14144, - "end": 14185, - "loc": { - "start": { - "line": 1, - "column": 14144 - }, - "end": { - "line": 1, - "column": 14185 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/index.js.html", - "raw": "\"file/react-native-ble-plx/index.js.html\"" - }, - "value": "file/react-native-ble-plx/index.js.html" - }, - { - "type": "StringLiteral", - "start": 14187, - "end": 14218, - "loc": { - "start": { - "line": 1, - "column": 14187 - }, - "end": { - "line": 1, - "column": 14218 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/index.js", - "raw": "\"react-native-ble-plx/index.js\"" - }, - "value": "react-native-ble-plx/index.js" - }, - { - "type": "StringLiteral", - "start": 14220, - "end": 14226, - "loc": { - "start": { - "line": 1, - "column": 14220 - }, - "end": { - "line": 1, - "column": 14226 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 14229, - "end": 14373, - "loc": { - "start": { - "line": 1, - "column": 14229 - }, - "end": { - "line": 1, - "column": 14373 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14230, - "end": 14270, - "loc": { - "start": { - "line": 1, - "column": 14230 - }, - "end": { - "line": 1, - "column": 14270 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js", - "raw": "\"react-native-ble-plx/src/blemanager.js\"" - }, - "value": "react-native-ble-plx/src/blemanager.js" - }, - { - "type": "StringLiteral", - "start": 14272, - "end": 14322, - "loc": { - "start": { - "line": 1, - "column": 14272 - }, - "end": { - "line": 1, - "column": 14322 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/src/BleManager.js.html", - "raw": "\"file/react-native-ble-plx/src/BleManager.js.html\"" - }, - "value": "file/react-native-ble-plx/src/BleManager.js.html" - }, - { - "type": "StringLiteral", - "start": 14324, - "end": 14364, - "loc": { - "start": { - "line": 1, - "column": 14324 - }, - "end": { - "line": 1, - "column": 14364 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js", - "raw": "\"react-native-ble-plx/src/BleManager.js\"" - }, - "value": "react-native-ble-plx/src/BleManager.js" - }, - { - "type": "StringLiteral", - "start": 14366, - "end": 14372, - "loc": { - "start": { - "line": 1, - "column": 14366 - }, - "end": { - "line": 1, - "column": 14372 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 14375, - "end": 14640, - "loc": { - "start": { - "line": 1, - "column": 14375 - }, - "end": { - "line": 1, - "column": 14640 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14376, - "end": 14450, - "loc": { - "start": { - "line": 1, - "column": 14376 - }, - "end": { - "line": 1, - "column": 14450 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection" - }, - { - "type": "StringLiteral", - "start": 14452, - "end": 14553, - "loc": { - "start": { - "line": 1, - "column": 14452 - }, - "end": { - "line": 1, - "column": 14553 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection" - }, - { - "type": "StringLiteral", - "start": 14555, - "end": 14629, - "loc": { - "start": { - "line": 1, - "column": 14555 - }, - "end": { - "line": 1, - "column": 14629 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection" - }, - { - "type": "StringLiteral", - "start": 14631, - "end": 14639, - "loc": { - "start": { - "line": 1, - "column": 14631 - }, - "end": { - "line": 1, - "column": 14639 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 14642, - "end": 14892, - "loc": { - "start": { - "line": 1, - "column": 14642 - }, - "end": { - "line": 1, - "column": 14892 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14643, - "end": 14712, - "loc": { - "start": { - "line": 1, - "column": 14643 - }, - "end": { - "line": 1, - "column": 14712 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction" - }, - { - "type": "StringLiteral", - "start": 14714, - "end": 14810, - "loc": { - "start": { - "line": 1, - "column": 14714 - }, - "end": { - "line": 1, - "column": 14810 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction" - }, - { - "type": "StringLiteral", - "start": 14812, - "end": 14881, - "loc": { - "start": { - "line": 1, - "column": 14812 - }, - "end": { - "line": 1, - "column": 14881 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction" - }, - { - "type": "StringLiteral", - "start": 14883, - "end": 14891, - "loc": { - "start": { - "line": 1, - "column": 14883 - }, - "end": { - "line": 1, - "column": 14891 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 14894, - "end": 15165, - "loc": { - "start": { - "line": 1, - "column": 14894 - }, - "end": { - "line": 1, - "column": 15165 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 14895, - "end": 14971, - "loc": { - "start": { - "line": 1, - "column": 14895 - }, - "end": { - "line": 1, - "column": 14971 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice" - }, - { - "type": "StringLiteral", - "start": 14973, - "end": 15076, - "loc": { - "start": { - "line": 1, - "column": 14973 - }, - "end": { - "line": 1, - "column": 15076 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice" - }, - { - "type": "StringLiteral", - "start": 15078, - "end": 15154, - "loc": { - "start": { - "line": 1, - "column": 15078 - }, - "end": { - "line": 1, - "column": 15154 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice" - }, - { - "type": "StringLiteral", - "start": 15156, - "end": 15164, - "loc": { - "start": { - "line": 1, - "column": 15156 - }, - "end": { - "line": 1, - "column": 15164 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 15167, - "end": 15411, - "loc": { - "start": { - "line": 1, - "column": 15167 - }, - "end": { - "line": 1, - "column": 15411 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 15168, - "end": 15235, - "loc": { - "start": { - "line": 1, - "column": 15168 - }, - "end": { - "line": 1, - "column": 15235 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice" - }, - { - "type": "StringLiteral", - "start": 15237, - "end": 15331, - "loc": { - "start": { - "line": 1, - "column": 15237 - }, - "end": { - "line": 1, - "column": 15331 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice" - }, - { - "type": "StringLiteral", - "start": 15333, - "end": 15400, - "loc": { - "start": { - "line": 1, - "column": 15333 - }, - "end": { - "line": 1, - "column": 15400 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice" - }, - { - "type": "StringLiteral", - "start": 15402, - "end": 15410, - "loc": { - "start": { - "line": 1, - "column": 15402 - }, - "end": { - "line": 1, - "column": 15410 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 15413, - "end": 15650, - "loc": { - "start": { - "line": 1, - "column": 15413 - }, - "end": { - "line": 1, - "column": 15650 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 15414, - "end": 15477, - "loc": { - "start": { - "line": 1, - "column": 15414 - }, - "end": { - "line": 1, - "column": 15477 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#constructor", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#constructor\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#constructor" - }, - { - "type": "StringLiteral", - "start": 15479, - "end": 15574, - "loc": { - "start": { - "line": 1, - "column": 15479 - }, - "end": { - "line": 1, - "column": 15574 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor" - }, - { - "type": "StringLiteral", - "start": 15576, - "end": 15639, - "loc": { - "start": { - "line": 1, - "column": 15576 - }, - "end": { - "line": 1, - "column": 15639 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#constructor", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#constructor\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#constructor" - }, - { - "type": "StringLiteral", - "start": 15641, - "end": 15649, - "loc": { - "start": { - "line": 1, - "column": 15641 - }, - "end": { - "line": 1, - "column": 15649 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 15652, - "end": 15872, - "loc": { - "start": { - "line": 1, - "column": 15652 - }, - "end": { - "line": 1, - "column": 15872 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 15653, - "end": 15712, - "loc": { - "start": { - "line": 1, - "column": 15653 - }, - "end": { - "line": 1, - "column": 15712 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#destroy", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#destroy\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#destroy" - }, - { - "type": "StringLiteral", - "start": 15714, - "end": 15800, - "loc": { - "start": { - "line": 1, - "column": 15714 - }, - "end": { - "line": 1, - "column": 15800 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy" - }, - { - "type": "StringLiteral", - "start": 15802, - "end": 15861, - "loc": { - "start": { - "line": 1, - "column": 15802 - }, - "end": { - "line": 1, - "column": 15861 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#destroy", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#destroy\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#destroy" - }, - { - "type": "StringLiteral", - "start": 15863, - "end": 15871, - "loc": { - "start": { - "line": 1, - "column": 15863 - }, - "end": { - "line": 1, - "column": 15871 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 15874, - "end": 16211, - "loc": { - "start": { - "line": 1, - "column": 15874 - }, - "end": { - "line": 1, - "column": 16211 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 15875, - "end": 15973, - "loc": { - "start": { - "line": 1, - "column": 15875 - }, - "end": { - "line": 1, - "column": 15973 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice" - }, - { - "type": "StringLiteral", - "start": 15975, - "end": 16100, - "loc": { - "start": { - "line": 1, - "column": 15975 - }, - "end": { - "line": 1, - "column": 16100 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice" - }, - { - "type": "StringLiteral", - "start": 16102, - "end": 16200, - "loc": { - "start": { - "line": 1, - "column": 16102 - }, - "end": { - "line": 1, - "column": 16200 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice" - }, - { - "type": "StringLiteral", - "start": 16202, - "end": 16210, - "loc": { - "start": { - "line": 1, - "column": 16202 - }, - "end": { - "line": 1, - "column": 16210 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 16213, - "end": 16463, - "loc": { - "start": { - "line": 1, - "column": 16213 - }, - "end": { - "line": 1, - "column": 16463 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 16214, - "end": 16283, - "loc": { - "start": { - "line": 1, - "column": 16214 - }, - "end": { - "line": 1, - "column": 16283 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected" - }, - { - "type": "StringLiteral", - "start": 16285, - "end": 16381, - "loc": { - "start": { - "line": 1, - "column": 16285 - }, - "end": { - "line": 1, - "column": 16381 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected" - }, - { - "type": "StringLiteral", - "start": 16383, - "end": 16452, - "loc": { - "start": { - "line": 1, - "column": 16383 - }, - "end": { - "line": 1, - "column": 16452 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected" - }, - { - "type": "StringLiteral", - "start": 16454, - "end": 16462, - "loc": { - "start": { - "line": 1, - "column": 16454 - }, - "end": { - "line": 1, - "column": 16462 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 16465, - "end": 16754, - "loc": { - "start": { - "line": 1, - "column": 16465 - }, - "end": { - "line": 1, - "column": 16754 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 16466, - "end": 16548, - "loc": { - "start": { - "line": 1, - "column": 16466 - }, - "end": { - "line": 1, - "column": 16548 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice" - }, - { - "type": "StringLiteral", - "start": 16550, - "end": 16659, - "loc": { - "start": { - "line": 1, - "column": 16550 - }, - "end": { - "line": 1, - "column": 16659 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice" - }, - { - "type": "StringLiteral", - "start": 16661, - "end": 16743, - "loc": { - "start": { - "line": 1, - "column": 16661 - }, - "end": { - "line": 1, - "column": 16743 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice" - }, - { - "type": "StringLiteral", - "start": 16745, - "end": 16753, - "loc": { - "start": { - "line": 1, - "column": 16745 - }, - "end": { - "line": 1, - "column": 16753 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 16756, - "end": 17015, - "loc": { - "start": { - "line": 1, - "column": 16756 - }, - "end": { - "line": 1, - "column": 17015 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 16757, - "end": 16829, - "loc": { - "start": { - "line": 1, - "column": 16757 - }, - "end": { - "line": 1, - "column": 16829 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected" - }, - { - "type": "StringLiteral", - "start": 16831, - "end": 16930, - "loc": { - "start": { - "line": 1, - "column": 16831 - }, - "end": { - "line": 1, - "column": 16930 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected" - }, - { - "type": "StringLiteral", - "start": 16932, - "end": 17004, - "loc": { - "start": { - "line": 1, - "column": 16932 - }, - "end": { - "line": 1, - "column": 17004 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected" - }, - { - "type": "StringLiteral", - "start": 17006, - "end": 17014, - "loc": { - "start": { - "line": 1, - "column": 17006 - }, - "end": { - "line": 1, - "column": 17014 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 17017, - "end": 17255, - "loc": { - "start": { - "line": 1, - "column": 17017 - }, - "end": { - "line": 1, - "column": 17255 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 17018, - "end": 17083, - "loc": { - "start": { - "line": 1, - "column": 17018 - }, - "end": { - "line": 1, - "column": 17083 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#onstatechange", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#onstatechange\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#onstatechange" - }, - { - "type": "StringLiteral", - "start": 17085, - "end": 17177, - "loc": { - "start": { - "line": 1, - "column": 17085 - }, - "end": { - "line": 1, - "column": 17177 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange" - }, - { - "type": "StringLiteral", - "start": 17179, - "end": 17244, - "loc": { - "start": { - "line": 1, - "column": 17179 - }, - "end": { - "line": 1, - "column": 17244 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#onStateChange\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange" - }, - { - "type": "StringLiteral", - "start": 17246, - "end": 17254, - "loc": { - "start": { - "line": 1, - "column": 17246 - }, - "end": { - "line": 1, - "column": 17254 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 17257, - "end": 17537, - "loc": { - "start": { - "line": 1, - "column": 17257 - }, - "end": { - "line": 1, - "column": 17537 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 17258, - "end": 17337, - "loc": { - "start": { - "line": 1, - "column": 17258 - }, - "end": { - "line": 1, - "column": 17337 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice" - }, - { - "type": "StringLiteral", - "start": 17339, - "end": 17445, - "loc": { - "start": { - "line": 1, - "column": 17339 - }, - "end": { - "line": 1, - "column": 17445 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice" - }, - { - "type": "StringLiteral", - "start": 17447, - "end": 17526, - "loc": { - "start": { - "line": 1, - "column": 17447 - }, - "end": { - "line": 1, - "column": 17526 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice" - }, - { - "type": "StringLiteral", - "start": 17528, - "end": 17536, - "loc": { - "start": { - "line": 1, - "column": 17528 - }, - "end": { - "line": 1, - "column": 17536 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 17539, - "end": 17789, - "loc": { - "start": { - "line": 1, - "column": 17539 - }, - "end": { - "line": 1, - "column": 17789 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 17540, - "end": 17609, - "loc": { - "start": { - "line": 1, - "column": 17540 - }, - "end": { - "line": 1, - "column": 17609 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice" - }, - { - "type": "StringLiteral", - "start": 17611, - "end": 17707, - "loc": { - "start": { - "line": 1, - "column": 17611 - }, - "end": { - "line": 1, - "column": 17707 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice" - }, - { - "type": "StringLiteral", - "start": 17709, - "end": 17778, - "loc": { - "start": { - "line": 1, - "column": 17709 - }, - "end": { - "line": 1, - "column": 17778 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice" - }, - { - "type": "StringLiteral", - "start": 17780, - "end": 17788, - "loc": { - "start": { - "line": 1, - "column": 17780 - }, - "end": { - "line": 1, - "column": 17788 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 17791, - "end": 18035, - "loc": { - "start": { - "line": 1, - "column": 17791 - }, - "end": { - "line": 1, - "column": 18035 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 17792, - "end": 17859, - "loc": { - "start": { - "line": 1, - "column": 17792 - }, - "end": { - "line": 1, - "column": 17859 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan" - }, - { - "type": "StringLiteral", - "start": 17861, - "end": 17955, - "loc": { - "start": { - "line": 1, - "column": 17861 - }, - "end": { - "line": 1, - "column": 17955 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan" - }, - { - "type": "StringLiteral", - "start": 17957, - "end": 18024, - "loc": { - "start": { - "line": 1, - "column": 17957 - }, - "end": { - "line": 1, - "column": 18024 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan" - }, - { - "type": "StringLiteral", - "start": 18026, - "end": 18034, - "loc": { - "start": { - "line": 1, - "column": 18026 - }, - "end": { - "line": 1, - "column": 18034 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 18037, - "end": 18251, - "loc": { - "start": { - "line": 1, - "column": 18037 - }, - "end": { - "line": 1, - "column": 18251 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 18038, - "end": 18095, - "loc": { - "start": { - "line": 1, - "column": 18038 - }, - "end": { - "line": 1, - "column": 18095 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#state", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#state\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#state" - }, - { - "type": "StringLiteral", - "start": 18097, - "end": 18181, - "loc": { - "start": { - "line": 1, - "column": 18097 - }, - "end": { - "line": 1, - "column": 18181 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state" - }, - { - "type": "StringLiteral", - "start": 18183, - "end": 18240, - "loc": { - "start": { - "line": 1, - "column": 18183 - }, - "end": { - "line": 1, - "column": 18240 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#state", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#state\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#state" - }, - { - "type": "StringLiteral", - "start": 18242, - "end": 18250, - "loc": { - "start": { - "line": 1, - "column": 18242 - }, - "end": { - "line": 1, - "column": 18250 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 18253, - "end": 18494, - "loc": { - "start": { - "line": 1, - "column": 18253 - }, - "end": { - "line": 1, - "column": 18494 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 18254, - "end": 18320, - "loc": { - "start": { - "line": 1, - "column": 18254 - }, - "end": { - "line": 1, - "column": 18320 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan" - }, - { - "type": "StringLiteral", - "start": 18322, - "end": 18415, - "loc": { - "start": { - "line": 1, - "column": 18322 - }, - "end": { - "line": 1, - "column": 18415 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan" - }, - { - "type": "StringLiteral", - "start": 18417, - "end": 18483, - "loc": { - "start": { - "line": 1, - "column": 18417 - }, - "end": { - "line": 1, - "column": 18483 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan" - }, - { - "type": "StringLiteral", - "start": 18485, - "end": 18493, - "loc": { - "start": { - "line": 1, - "column": 18485 - }, - "end": { - "line": 1, - "column": 18493 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 18496, - "end": 18815, - "loc": { - "start": { - "line": 1, - "column": 18496 - }, - "end": { - "line": 1, - "column": 18815 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 18497, - "end": 18589, - "loc": { - "start": { - "line": 1, - "column": 18497 - }, - "end": { - "line": 1, - "column": 18589 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice" - }, - { - "type": "StringLiteral", - "start": 18591, - "end": 18710, - "loc": { - "start": { - "line": 1, - "column": 18591 - }, - "end": { - "line": 1, - "column": 18710 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice" - }, - { - "type": "StringLiteral", - "start": 18712, - "end": 18804, - "loc": { - "start": { - "line": 1, - "column": 18712 - }, - "end": { - "line": 1, - "column": 18804 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice" - }, - { - "type": "StringLiteral", - "start": 18806, - "end": 18814, - "loc": { - "start": { - "line": 1, - "column": 18806 - }, - "end": { - "line": 1, - "column": 18814 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 18817, - "end": 19145, - "loc": { - "start": { - "line": 1, - "column": 18817 - }, - "end": { - "line": 1, - "column": 19145 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 18818, - "end": 18913, - "loc": { - "start": { - "line": 1, - "column": 18818 - }, - "end": { - "line": 1, - "column": 18913 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice", - "raw": "\"react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice\"" - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice" - }, - { - "type": "StringLiteral", - "start": 18915, - "end": 19037, - "loc": { - "start": { - "line": 1, - "column": 18915 - }, - "end": { - "line": 1, - "column": 19037 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice", - "raw": "\"class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice\"" - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice" - }, - { - "type": "StringLiteral", - "start": 19039, - "end": 19134, - "loc": { - "start": { - "line": 1, - "column": 19039 - }, - "end": { - "line": 1, - "column": 19134 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice", - "raw": "\"react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice\"" - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice" - }, - { - "type": "StringLiteral", - "start": 19136, - "end": 19144, - "loc": { - "start": { - "line": 1, - "column": 19136 - }, - "end": { - "line": 1, - "column": 19144 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 19147, - "end": 19303, - "loc": { - "start": { - "line": 1, - "column": 19147 - }, - "end": { - "line": 1, - "column": 19303 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 19148, - "end": 19192, - "loc": { - "start": { - "line": 1, - "column": 19148 - }, - "end": { - "line": 1, - "column": 19192 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js", - "raw": "\"react-native-ble-plx/src/characteristic.js\"" - }, - "value": "react-native-ble-plx/src/characteristic.js" - }, - { - "type": "StringLiteral", - "start": 19194, - "end": 19248, - "loc": { - "start": { - "line": 1, - "column": 19194 - }, - "end": { - "line": 1, - "column": 19248 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/src/Characteristic.js.html", - "raw": "\"file/react-native-ble-plx/src/Characteristic.js.html\"" - }, - "value": "file/react-native-ble-plx/src/Characteristic.js.html" - }, - { - "type": "StringLiteral", - "start": 19250, - "end": 19294, - "loc": { - "start": { - "line": 1, - "column": 19250 - }, - "end": { - "line": 1, - "column": 19294 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js", - "raw": "\"react-native-ble-plx/src/Characteristic.js\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js" - }, - { - "type": "StringLiteral", - "start": 19296, - "end": 19302, - "loc": { - "start": { - "line": 1, - "column": 19296 - }, - "end": { - "line": 1, - "column": 19302 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 19305, - "end": 19566, - "loc": { - "start": { - "line": 1, - "column": 19305 - }, - "end": { - "line": 1, - "column": 19566 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 19306, - "end": 19377, - "loc": { - "start": { - "line": 1, - "column": 19306 - }, - "end": { - "line": 1, - "column": 19377 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js~characteristic#constructor", - "raw": "\"react-native-ble-plx/src/characteristic.js~characteristic#constructor\"" - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#constructor" - }, - { - "type": "StringLiteral", - "start": 19379, - "end": 19482, - "loc": { - "start": { - "line": 1, - "column": 19379 - }, - "end": { - "line": 1, - "column": 19482 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-constructor-constructor", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-constructor-constructor\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-constructor-constructor" - }, - { - "type": "StringLiteral", - "start": 19484, - "end": 19555, - "loc": { - "start": { - "line": 1, - "column": 19484 - }, - "end": { - "line": 1, - "column": 19555 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js~Characteristic#constructor", - "raw": "\"react-native-ble-plx/src/Characteristic.js~Characteristic#constructor\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#constructor" - }, - { - "type": "StringLiteral", - "start": 19557, - "end": 19565, - "loc": { - "start": { - "line": 1, - "column": 19557 - }, - "end": { - "line": 1, - "column": 19565 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 19568, - "end": 19812, - "loc": { - "start": { - "line": 1, - "column": 19568 - }, - "end": { - "line": 1, - "column": 19812 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 19569, - "end": 19636, - "loc": { - "start": { - "line": 1, - "column": 19569 - }, - "end": { - "line": 1, - "column": 19636 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js~characteristic#monitor", - "raw": "\"react-native-ble-plx/src/characteristic.js~characteristic#monitor\"" - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#monitor" - }, - { - "type": "StringLiteral", - "start": 19638, - "end": 19732, - "loc": { - "start": { - "line": 1, - "column": 19638 - }, - "end": { - "line": 1, - "column": 19732 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor" - }, - { - "type": "StringLiteral", - "start": 19734, - "end": 19801, - "loc": { - "start": { - "line": 1, - "column": 19734 - }, - "end": { - "line": 1, - "column": 19801 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor", - "raw": "\"react-native-ble-plx/src/Characteristic.js~Characteristic#monitor\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor" - }, - { - "type": "StringLiteral", - "start": 19803, - "end": 19811, - "loc": { - "start": { - "line": 1, - "column": 19803 - }, - "end": { - "line": 1, - "column": 19811 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 19814, - "end": 20049, - "loc": { - "start": { - "line": 1, - "column": 19814 - }, - "end": { - "line": 1, - "column": 20049 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 19815, - "end": 19879, - "loc": { - "start": { - "line": 1, - "column": 19815 - }, - "end": { - "line": 1, - "column": 19879 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js~characteristic#read", - "raw": "\"react-native-ble-plx/src/characteristic.js~characteristic#read\"" - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#read" - }, - { - "type": "StringLiteral", - "start": 19881, - "end": 19972, - "loc": { - "start": { - "line": 1, - "column": 19881 - }, - "end": { - "line": 1, - "column": 19972 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read" - }, - { - "type": "StringLiteral", - "start": 19974, - "end": 20038, - "loc": { - "start": { - "line": 1, - "column": 19974 - }, - "end": { - "line": 1, - "column": 20038 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js~Characteristic#read", - "raw": "\"react-native-ble-plx/src/Characteristic.js~Characteristic#read\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#read" - }, - { - "type": "StringLiteral", - "start": 20040, - "end": 20048, - "loc": { - "start": { - "line": 1, - "column": 20040 - }, - "end": { - "line": 1, - "column": 20048 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 20051, - "end": 20325, - "loc": { - "start": { - "line": 1, - "column": 20051 - }, - "end": { - "line": 1, - "column": 20325 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 20052, - "end": 20129, - "loc": { - "start": { - "line": 1, - "column": 20052 - }, - "end": { - "line": 1, - "column": 20129 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse", - "raw": "\"react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse\"" - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse" - }, - { - "type": "StringLiteral", - "start": 20131, - "end": 20235, - "loc": { - "start": { - "line": 1, - "column": 20131 - }, - "end": { - "line": 1, - "column": 20235 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse" - }, - { - "type": "StringLiteral", - "start": 20237, - "end": 20314, - "loc": { - "start": { - "line": 1, - "column": 20237 - }, - "end": { - "line": 1, - "column": 20314 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse", - "raw": "\"react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse" - }, - { - "type": "StringLiteral", - "start": 20316, - "end": 20324, - "loc": { - "start": { - "line": 1, - "column": 20316 - }, - "end": { - "line": 1, - "column": 20324 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 20327, - "end": 20610, - "loc": { - "start": { - "line": 1, - "column": 20327 - }, - "end": { - "line": 1, - "column": 20610 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 20328, - "end": 20408, - "loc": { - "start": { - "line": 1, - "column": 20328 - }, - "end": { - "line": 1, - "column": 20408 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse", - "raw": "\"react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse\"" - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse" - }, - { - "type": "StringLiteral", - "start": 20410, - "end": 20517, - "loc": { - "start": { - "line": 1, - "column": 20410 - }, - "end": { - "line": 1, - "column": 20517 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse", - "raw": "\"class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse\"" - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse" - }, - { - "type": "StringLiteral", - "start": 20519, - "end": 20599, - "loc": { - "start": { - "line": 1, - "column": 20519 - }, - "end": { - "line": 1, - "column": 20599 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse", - "raw": "\"react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse\"" - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse" - }, - { - "type": "StringLiteral", - "start": 20601, - "end": 20609, - "loc": { - "start": { - "line": 1, - "column": 20601 - }, - "end": { - "line": 1, - "column": 20609 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 20612, - "end": 20744, - "loc": { - "start": { - "line": 1, - "column": 20612 - }, - "end": { - "line": 1, - "column": 20744 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 20613, - "end": 20649, - "loc": { - "start": { - "line": 1, - "column": 20613 - }, - "end": { - "line": 1, - "column": 20649 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js", - "raw": "\"react-native-ble-plx/src/device.js\"" - }, - "value": "react-native-ble-plx/src/device.js" - }, - { - "type": "StringLiteral", - "start": 20651, - "end": 20697, - "loc": { - "start": { - "line": 1, - "column": 20651 - }, - "end": { - "line": 1, - "column": 20697 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/src/Device.js.html", - "raw": "\"file/react-native-ble-plx/src/Device.js.html\"" - }, - "value": "file/react-native-ble-plx/src/Device.js.html" - }, - { - "type": "StringLiteral", - "start": 20699, - "end": 20735, - "loc": { - "start": { - "line": 1, - "column": 20699 - }, - "end": { - "line": 1, - "column": 20735 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js", - "raw": "\"react-native-ble-plx/src/Device.js\"" - }, - "value": "react-native-ble-plx/src/Device.js" - }, - { - "type": "StringLiteral", - "start": 20737, - "end": 20743, - "loc": { - "start": { - "line": 1, - "column": 20737 - }, - "end": { - "line": 1, - "column": 20743 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 20746, - "end": 20969, - "loc": { - "start": { - "line": 1, - "column": 20746 - }, - "end": { - "line": 1, - "column": 20969 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 20747, - "end": 20807, - "loc": { - "start": { - "line": 1, - "column": 20747 - }, - "end": { - "line": 1, - "column": 20807 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#cancelconnection", - "raw": "\"react-native-ble-plx/src/device.js~device#cancelconnection\"" - }, - "value": "react-native-ble-plx/src/device.js~device#cancelconnection" - }, - { - "type": "StringLiteral", - "start": 20809, - "end": 20896, - "loc": { - "start": { - "line": 1, - "column": 20809 - }, - "end": { - "line": 1, - "column": 20896 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection" - }, - { - "type": "StringLiteral", - "start": 20898, - "end": 20958, - "loc": { - "start": { - "line": 1, - "column": 20898 - }, - "end": { - "line": 1, - "column": 20958 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#cancelConnection", - "raw": "\"react-native-ble-plx/src/Device.js~Device#cancelConnection\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#cancelConnection" - }, - { - "type": "StringLiteral", - "start": 20960, - "end": 20968, - "loc": { - "start": { - "line": 1, - "column": 20960 - }, - "end": { - "line": 1, - "column": 20968 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 20971, - "end": 21221, - "loc": { - "start": { - "line": 1, - "column": 20971 - }, - "end": { - "line": 1, - "column": 21221 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 20972, - "end": 21041, - "loc": { - "start": { - "line": 1, - "column": 20972 - }, - "end": { - "line": 1, - "column": 21041 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#characteristicsforservice", - "raw": "\"react-native-ble-plx/src/device.js~device#characteristicsforservice\"" - }, - "value": "react-native-ble-plx/src/device.js~device#characteristicsforservice" - }, - { - "type": "StringLiteral", - "start": 21043, - "end": 21139, - "loc": { - "start": { - "line": 1, - "column": 21043 - }, - "end": { - "line": 1, - "column": 21139 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService" - }, - { - "type": "StringLiteral", - "start": 21141, - "end": 21210, - "loc": { - "start": { - "line": 1, - "column": 21141 - }, - "end": { - "line": 1, - "column": 21210 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#characteristicsForService", - "raw": "\"react-native-ble-plx/src/Device.js~Device#characteristicsForService\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#characteristicsForService" - }, - { - "type": "StringLiteral", - "start": 21212, - "end": 21220, - "loc": { - "start": { - "line": 1, - "column": 21212 - }, - "end": { - "line": 1, - "column": 21220 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 21223, - "end": 21419, - "loc": { - "start": { - "line": 1, - "column": 21223 - }, - "end": { - "line": 1, - "column": 21419 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 21224, - "end": 21275, - "loc": { - "start": { - "line": 1, - "column": 21224 - }, - "end": { - "line": 1, - "column": 21275 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#connect", - "raw": "\"react-native-ble-plx/src/device.js~device#connect\"" - }, - "value": "react-native-ble-plx/src/device.js~device#connect" - }, - { - "type": "StringLiteral", - "start": 21277, - "end": 21355, - "loc": { - "start": { - "line": 1, - "column": 21277 - }, - "end": { - "line": 1, - "column": 21355 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect" - }, - { - "type": "StringLiteral", - "start": 21357, - "end": 21408, - "loc": { - "start": { - "line": 1, - "column": 21357 - }, - "end": { - "line": 1, - "column": 21408 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#connect", - "raw": "\"react-native-ble-plx/src/Device.js~Device#connect\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#connect" - }, - { - "type": "StringLiteral", - "start": 21410, - "end": 21418, - "loc": { - "start": { - "line": 1, - "column": 21410 - }, - "end": { - "line": 1, - "column": 21418 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 21421, - "end": 21634, - "loc": { - "start": { - "line": 1, - "column": 21421 - }, - "end": { - "line": 1, - "column": 21634 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 21422, - "end": 21477, - "loc": { - "start": { - "line": 1, - "column": 21422 - }, - "end": { - "line": 1, - "column": 21477 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#constructor", - "raw": "\"react-native-ble-plx/src/device.js~device#constructor\"" - }, - "value": "react-native-ble-plx/src/device.js~device#constructor" - }, - { - "type": "StringLiteral", - "start": 21479, - "end": 21566, - "loc": { - "start": { - "line": 1, - "column": 21479 - }, - "end": { - "line": 1, - "column": 21566 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-constructor-constructor", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-constructor-constructor\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-constructor-constructor" - }, - { - "type": "StringLiteral", - "start": 21568, - "end": 21623, - "loc": { - "start": { - "line": 1, - "column": 21568 - }, - "end": { - "line": 1, - "column": 21623 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#constructor", - "raw": "\"react-native-ble-plx/src/Device.js~Device#constructor\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#constructor" - }, - { - "type": "StringLiteral", - "start": 21625, - "end": 21633, - "loc": { - "start": { - "line": 1, - "column": 21625 - }, - "end": { - "line": 1, - "column": 21633 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 21636, - "end": 21922, - "loc": { - "start": { - "line": 1, - "column": 21636 - }, - "end": { - "line": 1, - "column": 21922 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 21637, - "end": 21718, - "loc": { - "start": { - "line": 1, - "column": 21637 - }, - "end": { - "line": 1, - "column": 21718 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics", - "raw": "\"react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics\"" - }, - "value": "react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics" - }, - { - "type": "StringLiteral", - "start": 21720, - "end": 21828, - "loc": { - "start": { - "line": 1, - "column": 21720 - }, - "end": { - "line": 1, - "column": 21828 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics" - }, - { - "type": "StringLiteral", - "start": 21830, - "end": 21911, - "loc": { - "start": { - "line": 1, - "column": 21830 - }, - "end": { - "line": 1, - "column": 21911 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics", - "raw": "\"react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics" - }, - { - "type": "StringLiteral", - "start": 21913, - "end": 21921, - "loc": { - "start": { - "line": 1, - "column": 21913 - }, - "end": { - "line": 1, - "column": 21921 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 21924, - "end": 22132, - "loc": { - "start": { - "line": 1, - "column": 21924 - }, - "end": { - "line": 1, - "column": 22132 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 21925, - "end": 21980, - "loc": { - "start": { - "line": 1, - "column": 21925 - }, - "end": { - "line": 1, - "column": 21980 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#isconnected", - "raw": "\"react-native-ble-plx/src/device.js~device#isconnected\"" - }, - "value": "react-native-ble-plx/src/device.js~device#isconnected" - }, - { - "type": "StringLiteral", - "start": 21982, - "end": 22064, - "loc": { - "start": { - "line": 1, - "column": 21982 - }, - "end": { - "line": 1, - "column": 22064 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected" - }, - { - "type": "StringLiteral", - "start": 22066, - "end": 22121, - "loc": { - "start": { - "line": 1, - "column": 22066 - }, - "end": { - "line": 1, - "column": 22121 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#isConnected", - "raw": "\"react-native-ble-plx/src/Device.js~Device#isConnected\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#isConnected" - }, - { - "type": "StringLiteral", - "start": 22123, - "end": 22131, - "loc": { - "start": { - "line": 1, - "column": 22123 - }, - "end": { - "line": 1, - "column": 22131 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 22134, - "end": 22402, - "loc": { - "start": { - "line": 1, - "column": 22134 - }, - "end": { - "line": 1, - "column": 22402 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 22135, - "end": 22210, - "loc": { - "start": { - "line": 1, - "column": 22135 - }, - "end": { - "line": 1, - "column": 22210 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice", - "raw": "\"react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice\"" - }, - "value": "react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice" - }, - { - "type": "StringLiteral", - "start": 22212, - "end": 22314, - "loc": { - "start": { - "line": 1, - "column": 22212 - }, - "end": { - "line": 1, - "column": 22314 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService" - }, - { - "type": "StringLiteral", - "start": 22316, - "end": 22391, - "loc": { - "start": { - "line": 1, - "column": 22316 - }, - "end": { - "line": 1, - "column": 22391 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService", - "raw": "\"react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService" - }, - { - "type": "StringLiteral", - "start": 22393, - "end": 22401, - "loc": { - "start": { - "line": 1, - "column": 22393 - }, - "end": { - "line": 1, - "column": 22401 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 22404, - "end": 22621, - "loc": { - "start": { - "line": 1, - "column": 22404 - }, - "end": { - "line": 1, - "column": 22621 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 22405, - "end": 22463, - "loc": { - "start": { - "line": 1, - "column": 22405 - }, - "end": { - "line": 1, - "column": 22463 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#ondisconnected", - "raw": "\"react-native-ble-plx/src/device.js~device#ondisconnected\"" - }, - "value": "react-native-ble-plx/src/device.js~device#ondisconnected" - }, - { - "type": "StringLiteral", - "start": 22465, - "end": 22550, - "loc": { - "start": { - "line": 1, - "column": 22465 - }, - "end": { - "line": 1, - "column": 22550 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected" - }, - { - "type": "StringLiteral", - "start": 22552, - "end": 22610, - "loc": { - "start": { - "line": 1, - "column": 22552 - }, - "end": { - "line": 1, - "column": 22610 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#onDisconnected", - "raw": "\"react-native-ble-plx/src/Device.js~Device#onDisconnected\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#onDisconnected" - }, - { - "type": "StringLiteral", - "start": 22612, - "end": 22620, - "loc": { - "start": { - "line": 1, - "column": 22612 - }, - "end": { - "line": 1, - "column": 22620 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 22623, - "end": 22882, - "loc": { - "start": { - "line": 1, - "column": 22623 - }, - "end": { - "line": 1, - "column": 22882 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 22624, - "end": 22696, - "loc": { - "start": { - "line": 1, - "column": 22624 - }, - "end": { - "line": 1, - "column": 22696 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#readcharacteristicforservice", - "raw": "\"react-native-ble-plx/src/device.js~device#readcharacteristicforservice\"" - }, - "value": "react-native-ble-plx/src/device.js~device#readcharacteristicforservice" - }, - { - "type": "StringLiteral", - "start": 22698, - "end": 22797, - "loc": { - "start": { - "line": 1, - "column": 22698 - }, - "end": { - "line": 1, - "column": 22797 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService" - }, - { - "type": "StringLiteral", - "start": 22799, - "end": 22871, - "loc": { - "start": { - "line": 1, - "column": 22799 - }, - "end": { - "line": 1, - "column": 22871 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService", - "raw": "\"react-native-ble-plx/src/Device.js~Device#readCharacteristicForService\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService" - }, - { - "type": "StringLiteral", - "start": 22873, - "end": 22881, - "loc": { - "start": { - "line": 1, - "column": 22873 - }, - "end": { - "line": 1, - "column": 22881 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 22884, - "end": 23083, - "loc": { - "start": { - "line": 1, - "column": 22884 - }, - "end": { - "line": 1, - "column": 23083 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 22885, - "end": 22937, - "loc": { - "start": { - "line": 1, - "column": 22885 - }, - "end": { - "line": 1, - "column": 22937 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#services", - "raw": "\"react-native-ble-plx/src/device.js~device#services\"" - }, - "value": "react-native-ble-plx/src/device.js~device#services" - }, - { - "type": "StringLiteral", - "start": 22939, - "end": 23018, - "loc": { - "start": { - "line": 1, - "column": 22939 - }, - "end": { - "line": 1, - "column": 23018 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services" - }, - { - "type": "StringLiteral", - "start": 23020, - "end": 23072, - "loc": { - "start": { - "line": 1, - "column": 23020 - }, - "end": { - "line": 1, - "column": 23072 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#services", - "raw": "\"react-native-ble-plx/src/Device.js~Device#services\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#services" - }, - { - "type": "StringLiteral", - "start": 23074, - "end": 23082, - "loc": { - "start": { - "line": 1, - "column": 23074 - }, - "end": { - "line": 1, - "column": 23082 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 23085, - "end": 23383, - "loc": { - "start": { - "line": 1, - "column": 23085 - }, - "end": { - "line": 1, - "column": 23383 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 23086, - "end": 23171, - "loc": { - "start": { - "line": 1, - "column": 23086 - }, - "end": { - "line": 1, - "column": 23171 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice", - "raw": "\"react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice\"" - }, - "value": "react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice" - }, - { - "type": "StringLiteral", - "start": 23173, - "end": 23285, - "loc": { - "start": { - "line": 1, - "column": 23173 - }, - "end": { - "line": 1, - "column": 23285 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService" - }, - { - "type": "StringLiteral", - "start": 23287, - "end": 23372, - "loc": { - "start": { - "line": 1, - "column": 23287 - }, - "end": { - "line": 1, - "column": 23372 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService", - "raw": "\"react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService" - }, - { - "type": "StringLiteral", - "start": 23374, - "end": 23382, - "loc": { - "start": { - "line": 1, - "column": 23374 - }, - "end": { - "line": 1, - "column": 23382 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 23385, - "end": 23692, - "loc": { - "start": { - "line": 1, - "column": 23385 - }, - "end": { - "line": 1, - "column": 23692 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 23386, - "end": 23474, - "loc": { - "start": { - "line": 1, - "column": 23386 - }, - "end": { - "line": 1, - "column": 23474 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice", - "raw": "\"react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice\"" - }, - "value": "react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice" - }, - { - "type": "StringLiteral", - "start": 23476, - "end": 23591, - "loc": { - "start": { - "line": 1, - "column": 23476 - }, - "end": { - "line": 1, - "column": 23591 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService", - "raw": "\"class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService\"" - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService" - }, - { - "type": "StringLiteral", - "start": 23593, - "end": 23681, - "loc": { - "start": { - "line": 1, - "column": 23593 - }, - "end": { - "line": 1, - "column": 23681 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService", - "raw": "\"react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService\"" - }, - "value": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService" - }, - { - "type": "StringLiteral", - "start": 23683, - "end": 23691, - "loc": { - "start": { - "line": 1, - "column": 23683 - }, - "end": { - "line": 1, - "column": 23691 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 23694, - "end": 23829, - "loc": { - "start": { - "line": 1, - "column": 23694 - }, - "end": { - "line": 1, - "column": 23829 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 23695, - "end": 23732, - "loc": { - "start": { - "line": 1, - "column": 23695 - }, - "end": { - "line": 1, - "column": 23732 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js", - "raw": "\"react-native-ble-plx/src/service.js\"" - }, - "value": "react-native-ble-plx/src/service.js" - }, - { - "type": "StringLiteral", - "start": 23734, - "end": 23781, - "loc": { - "start": { - "line": 1, - "column": 23734 - }, - "end": { - "line": 1, - "column": 23781 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/src/Service.js.html", - "raw": "\"file/react-native-ble-plx/src/Service.js.html\"" - }, - "value": "file/react-native-ble-plx/src/Service.js.html" - }, - { - "type": "StringLiteral", - "start": 23783, - "end": 23820, - "loc": { - "start": { - "line": 1, - "column": 23783 - }, - "end": { - "line": 1, - "column": 23820 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js", - "raw": "\"react-native-ble-plx/src/Service.js\"" - }, - "value": "react-native-ble-plx/src/Service.js" - }, - { - "type": "StringLiteral", - "start": 23822, - "end": 23828, - "loc": { - "start": { - "line": 1, - "column": 23822 - }, - "end": { - "line": 1, - "column": 23828 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - }, - { - "type": "ArrayExpression", - "start": 23831, - "end": 24057, - "loc": { - "start": { - "line": 1, - "column": 23831 - }, - "end": { - "line": 1, - "column": 24057 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 23832, - "end": 23893, - "loc": { - "start": { - "line": 1, - "column": 23832 - }, - "end": { - "line": 1, - "column": 23893 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#characteristics", - "raw": "\"react-native-ble-plx/src/service.js~service#characteristics\"" - }, - "value": "react-native-ble-plx/src/service.js~service#characteristics" - }, - { - "type": "StringLiteral", - "start": 23895, - "end": 23983, - "loc": { - "start": { - "line": 1, - "column": 23895 - }, - "end": { - "line": 1, - "column": 23983 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics" - }, - { - "type": "StringLiteral", - "start": 23985, - "end": 24046, - "loc": { - "start": { - "line": 1, - "column": 23985 - }, - "end": { - "line": 1, - "column": 24046 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#characteristics", - "raw": "\"react-native-ble-plx/src/Service.js~Service#characteristics\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#characteristics" - }, - { - "type": "StringLiteral", - "start": 24048, - "end": 24056, - "loc": { - "start": { - "line": 1, - "column": 24048 - }, - "end": { - "line": 1, - "column": 24056 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 24059, - "end": 24278, - "loc": { - "start": { - "line": 1, - "column": 24059 - }, - "end": { - "line": 1, - "column": 24278 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 24060, - "end": 24117, - "loc": { - "start": { - "line": 1, - "column": 24060 - }, - "end": { - "line": 1, - "column": 24117 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#constructor", - "raw": "\"react-native-ble-plx/src/service.js~service#constructor\"" - }, - "value": "react-native-ble-plx/src/service.js~service#constructor" - }, - { - "type": "StringLiteral", - "start": 24119, - "end": 24208, - "loc": { - "start": { - "line": 1, - "column": 24119 - }, - "end": { - "line": 1, - "column": 24208 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-constructor-constructor", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-constructor-constructor\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-constructor-constructor" - }, - { - "type": "StringLiteral", - "start": 24210, - "end": 24267, - "loc": { - "start": { - "line": 1, - "column": 24210 - }, - "end": { - "line": 1, - "column": 24267 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#constructor", - "raw": "\"react-native-ble-plx/src/Service.js~Service#constructor\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#constructor" - }, - { - "type": "StringLiteral", - "start": 24269, - "end": 24277, - "loc": { - "start": { - "line": 1, - "column": 24269 - }, - "end": { - "line": 1, - "column": 24277 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 24280, - "end": 24524, - "loc": { - "start": { - "line": 1, - "column": 24280 - }, - "end": { - "line": 1, - "column": 24524 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 24281, - "end": 24348, - "loc": { - "start": { - "line": 1, - "column": 24281 - }, - "end": { - "line": 1, - "column": 24348 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#monitorcharacteristic", - "raw": "\"react-native-ble-plx/src/service.js~service#monitorcharacteristic\"" - }, - "value": "react-native-ble-plx/src/service.js~service#monitorcharacteristic" - }, - { - "type": "StringLiteral", - "start": 24350, - "end": 24444, - "loc": { - "start": { - "line": 1, - "column": 24350 - }, - "end": { - "line": 1, - "column": 24444 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic" - }, - { - "type": "StringLiteral", - "start": 24446, - "end": 24513, - "loc": { - "start": { - "line": 1, - "column": 24446 - }, - "end": { - "line": 1, - "column": 24513 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic", - "raw": "\"react-native-ble-plx/src/Service.js~Service#monitorCharacteristic\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic" - }, - { - "type": "StringLiteral", - "start": 24515, - "end": 24523, - "loc": { - "start": { - "line": 1, - "column": 24515 - }, - "end": { - "line": 1, - "column": 24523 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 24526, - "end": 24761, - "loc": { - "start": { - "line": 1, - "column": 24526 - }, - "end": { - "line": 1, - "column": 24761 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 24527, - "end": 24591, - "loc": { - "start": { - "line": 1, - "column": 24527 - }, - "end": { - "line": 1, - "column": 24591 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#readcharacteristic", - "raw": "\"react-native-ble-plx/src/service.js~service#readcharacteristic\"" - }, - "value": "react-native-ble-plx/src/service.js~service#readcharacteristic" - }, - { - "type": "StringLiteral", - "start": 24593, - "end": 24684, - "loc": { - "start": { - "line": 1, - "column": 24593 - }, - "end": { - "line": 1, - "column": 24684 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic" - }, - { - "type": "StringLiteral", - "start": 24686, - "end": 24750, - "loc": { - "start": { - "line": 1, - "column": 24686 - }, - "end": { - "line": 1, - "column": 24750 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#readCharacteristic", - "raw": "\"react-native-ble-plx/src/Service.js~Service#readCharacteristic\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#readCharacteristic" - }, - { - "type": "StringLiteral", - "start": 24752, - "end": 24760, - "loc": { - "start": { - "line": 1, - "column": 24752 - }, - "end": { - "line": 1, - "column": 24760 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 24763, - "end": 25037, - "loc": { - "start": { - "line": 1, - "column": 24763 - }, - "end": { - "line": 1, - "column": 25037 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 24764, - "end": 24841, - "loc": { - "start": { - "line": 1, - "column": 24764 - }, - "end": { - "line": 1, - "column": 24841 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse", - "raw": "\"react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse\"" - }, - "value": "react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse" - }, - { - "type": "StringLiteral", - "start": 24843, - "end": 24947, - "loc": { - "start": { - "line": 1, - "column": 24843 - }, - "end": { - "line": 1, - "column": 24947 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse" - }, - { - "type": "StringLiteral", - "start": 24949, - "end": 25026, - "loc": { - "start": { - "line": 1, - "column": 24949 - }, - "end": { - "line": 1, - "column": 25026 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse", - "raw": "\"react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse" - }, - { - "type": "StringLiteral", - "start": 25028, - "end": 25036, - "loc": { - "start": { - "line": 1, - "column": 25028 - }, - "end": { - "line": 1, - "column": 25036 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 25039, - "end": 25322, - "loc": { - "start": { - "line": 1, - "column": 25039 - }, - "end": { - "line": 1, - "column": 25322 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 25040, - "end": 25120, - "loc": { - "start": { - "line": 1, - "column": 25040 - }, - "end": { - "line": 1, - "column": 25120 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse", - "raw": "\"react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse\"" - }, - "value": "react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse" - }, - { - "type": "StringLiteral", - "start": 25122, - "end": 25229, - "loc": { - "start": { - "line": 1, - "column": 25122 - }, - "end": { - "line": 1, - "column": 25229 - } - }, - "extra": { - "rawValue": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse", - "raw": "\"class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse\"" - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse" - }, - { - "type": "StringLiteral", - "start": 25231, - "end": 25311, - "loc": { - "start": { - "line": 1, - "column": 25231 - }, - "end": { - "line": 1, - "column": 25311 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse", - "raw": "\"react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse\"" - }, - "value": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse" - }, - { - "type": "StringLiteral", - "start": 25313, - "end": 25321, - "loc": { - "start": { - "line": 1, - "column": 25313 - }, - "end": { - "line": 1, - "column": 25321 - } - }, - "extra": { - "rawValue": "method", - "raw": "\"method\"" - }, - "value": "method" - } - ] - }, - { - "type": "ArrayExpression", - "start": 25324, - "end": 25453, - "loc": { - "start": { - "line": 1, - "column": 25324 - }, - "end": { - "line": 1, - "column": 25453 - } - }, - "elements": [ - { - "type": "StringLiteral", - "start": 25325, - "end": 25360, - "loc": { - "start": { - "line": 1, - "column": 25325 - }, - "end": { - "line": 1, - "column": 25360 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/utils.js", - "raw": "\"react-native-ble-plx/src/utils.js\"" - }, - "value": "react-native-ble-plx/src/utils.js" - }, - { - "type": "StringLiteral", - "start": 25362, - "end": 25407, - "loc": { - "start": { - "line": 1, - "column": 25362 - }, - "end": { - "line": 1, - "column": 25407 - } - }, - "extra": { - "rawValue": "file/react-native-ble-plx/src/Utils.js.html", - "raw": "\"file/react-native-ble-plx/src/Utils.js.html\"" - }, - "value": "file/react-native-ble-plx/src/Utils.js.html" - }, - { - "type": "StringLiteral", - "start": 25409, - "end": 25444, - "loc": { - "start": { - "line": 1, - "column": 25409 - }, - "end": { - "line": 1, - "column": 25444 - } - }, - "extra": { - "rawValue": "react-native-ble-plx/src/Utils.js", - "raw": "\"react-native-ble-plx/src/Utils.js\"" - }, - "value": "react-native-ble-plx/src/Utils.js" - }, - { - "type": "StringLiteral", - "start": 25446, - "end": 25452, - "loc": { - "start": { - "line": 1, - "column": 25446 - }, - "end": { - "line": 1, - "column": 25452 - } - }, - "extra": { - "rawValue": "file", - "raw": "\"file\"" - }, - "value": "file" - } - ] - } - ] - } - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "window", - "start": 0, - "end": 6, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 6 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6, - "end": 7, - "loc": { - "start": { - "line": 1, - "column": 6 - }, - "end": { - "line": 1, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "esdocSearchIndex", - "start": 7, - "end": 23, - "loc": { - "start": { - "line": 1, - "column": 7 - }, - "end": { - "line": 1, - "column": 23 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 24, - "end": 25, - "loc": { - "start": { - "line": 1, - "column": 24 - }, - "end": { - "line": 1, - "column": 25 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 26, - "end": 27, - "loc": { - "start": { - "line": 1, - "column": 26 - }, - "end": { - "line": 1, - "column": 27 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 27, - "end": 28, - "loc": { - "start": { - "line": 1, - "column": 27 - }, - "end": { - "line": 1, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager", - "start": 28, - "end": 100, - "loc": { - "start": { - "line": 1, - "column": 28 - }, - "end": { - "line": 1, - "column": 100 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 100, - "end": 101, - "loc": { - "start": { - "line": 1, - "column": 100 - }, - "end": { - "line": 1, - "column": 101 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html", - "start": 102, - "end": 164, - "loc": { - "start": { - "line": 1, - "column": 102 - }, - "end": { - "line": 1, - "column": 164 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 164, - "end": 165, - "loc": { - "start": { - "line": 1, - "column": 164 - }, - "end": { - "line": 1, - "column": 165 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BleManager react-native-ble-plx/react-native-ble-plx/src/BleManager.js", - "start": 166, - "end": 300, - "loc": { - "start": { - "line": 1, - "column": 166 - }, - "end": { - "line": 1, - "column": 300 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 300, - "end": 301, - "loc": { - "start": { - "line": 1, - "column": 300 - }, - "end": { - "line": 1, - "column": 301 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 302, - "end": 309, - "loc": { - "start": { - "line": 1, - "column": 302 - }, - "end": { - "line": 1, - "column": 309 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 309, - "end": 310, - "loc": { - "start": { - "line": 1, - "column": 309 - }, - "end": { - "line": 1, - "column": 310 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 310, - "end": 311, - "loc": { - "start": { - "line": 1, - "column": 310 - }, - "end": { - "line": 1, - "column": 311 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 312, - "end": 313, - "loc": { - "start": { - "line": 1, - "column": 312 - }, - "end": { - "line": 1, - "column": 313 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic", - "start": 313, - "end": 393, - "loc": { - "start": { - "line": 1, - "column": 313 - }, - "end": { - "line": 1, - "column": 393 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 393, - "end": 394, - "loc": { - "start": { - "line": 1, - "column": 393 - }, - "end": { - "line": 1, - "column": 394 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html", - "start": 395, - "end": 465, - "loc": { - "start": { - "line": 1, - "column": 395 - }, - "end": { - "line": 1, - "column": 465 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 465, - "end": 466, - "loc": { - "start": { - "line": 1, - "column": 465 - }, - "end": { - "line": 1, - "column": 466 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "Characteristic react-native-ble-plx/react-native-ble-plx/src/Characteristic.js", - "start": 467, - "end": 609, - "loc": { - "start": { - "line": 1, - "column": 467 - }, - "end": { - "line": 1, - "column": 609 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 609, - "end": 610, - "loc": { - "start": { - "line": 1, - "column": 609 - }, - "end": { - "line": 1, - "column": 610 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 611, - "end": 618, - "loc": { - "start": { - "line": 1, - "column": 611 - }, - "end": { - "line": 1, - "column": 618 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 618, - "end": 619, - "loc": { - "start": { - "line": 1, - "column": 618 - }, - "end": { - "line": 1, - "column": 619 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 619, - "end": 620, - "loc": { - "start": { - "line": 1, - "column": 619 - }, - "end": { - "line": 1, - "column": 620 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 621, - "end": 622, - "loc": { - "start": { - "line": 1, - "column": 621 - }, - "end": { - "line": 1, - "column": 622 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/device.js~device", - "start": 622, - "end": 686, - "loc": { - "start": { - "line": 1, - "column": 622 - }, - "end": { - "line": 1, - "column": 686 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 686, - "end": 687, - "loc": { - "start": { - "line": 1, - "column": 686 - }, - "end": { - "line": 1, - "column": 687 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html", - "start": 688, - "end": 742, - "loc": { - "start": { - "line": 1, - "column": 688 - }, - "end": { - "line": 1, - "column": 742 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 742, - "end": 743, - "loc": { - "start": { - "line": 1, - "column": 742 - }, - "end": { - "line": 1, - "column": 743 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "Device react-native-ble-plx/react-native-ble-plx/src/Device.js", - "start": 744, - "end": 870, - "loc": { - "start": { - "line": 1, - "column": 744 - }, - "end": { - "line": 1, - "column": 870 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 870, - "end": 871, - "loc": { - "start": { - "line": 1, - "column": 870 - }, - "end": { - "line": 1, - "column": 871 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 872, - "end": 879, - "loc": { - "start": { - "line": 1, - "column": 872 - }, - "end": { - "line": 1, - "column": 879 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 879, - "end": 880, - "loc": { - "start": { - "line": 1, - "column": 879 - }, - "end": { - "line": 1, - "column": 880 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 880, - "end": 881, - "loc": { - "start": { - "line": 1, - "column": 880 - }, - "end": { - "line": 1, - "column": 881 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 882, - "end": 883, - "loc": { - "start": { - "line": 1, - "column": 882 - }, - "end": { - "line": 1, - "column": 883 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/service.js~service", - "start": 883, - "end": 949, - "loc": { - "start": { - "line": 1, - "column": 883 - }, - "end": { - "line": 1, - "column": 949 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 949, - "end": 950, - "loc": { - "start": { - "line": 1, - "column": 949 - }, - "end": { - "line": 1, - "column": 950 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html", - "start": 951, - "end": 1007, - "loc": { - "start": { - "line": 1, - "column": 951 - }, - "end": { - "line": 1, - "column": 1007 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1007, - "end": 1008, - "loc": { - "start": { - "line": 1, - "column": 1007 - }, - "end": { - "line": 1, - "column": 1008 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "Service react-native-ble-plx/react-native-ble-plx/src/Service.js", - "start": 1009, - "end": 1137, - "loc": { - "start": { - "line": 1, - "column": 1009 - }, - "end": { - "line": 1, - "column": 1137 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1137, - "end": 1138, - "loc": { - "start": { - "line": 1, - "column": 1137 - }, - "end": { - "line": 1, - "column": 1138 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 1139, - "end": 1146, - "loc": { - "start": { - "line": 1, - "column": 1139 - }, - "end": { - "line": 1, - "column": 1146 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1146, - "end": 1147, - "loc": { - "start": { - "line": 1, - "column": 1146 - }, - "end": { - "line": 1, - "column": 1147 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1147, - "end": 1148, - "loc": { - "start": { - "line": 1, - "column": 1147 - }, - "end": { - "line": 1, - "column": 1148 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1149, - "end": 1150, - "loc": { - "start": { - "line": 1, - "column": 1149 - }, - "end": { - "line": 1, - "column": 1150 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid", - "start": 1150, - "end": 1215, - "loc": { - "start": { - "line": 1, - "column": 1150 - }, - "end": { - "line": 1, - "column": 1215 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1215, - "end": 1216, - "loc": { - "start": { - "line": 1, - "column": 1215 - }, - "end": { - "line": 1, - "column": 1216 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "function/index.html#static-function-fullUUID", - "start": 1217, - "end": 1263, - "loc": { - "start": { - "line": 1, - "column": 1217 - }, - "end": { - "line": 1, - "column": 1263 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1263, - "end": 1264, - "loc": { - "start": { - "line": 1, - "column": 1263 - }, - "end": { - "line": 1, - "column": 1264 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "fullUUID react-native-ble-plx/react-native-ble-plx/src/Utils.js", - "start": 1265, - "end": 1392, - "loc": { - "start": { - "line": 1, - "column": 1265 - }, - "end": { - "line": 1, - "column": 1392 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1392, - "end": 1393, - "loc": { - "start": { - "line": 1, - "column": 1392 - }, - "end": { - "line": 1, - "column": 1393 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "function", - "start": 1394, - "end": 1404, - "loc": { - "start": { - "line": 1, - "column": 1394 - }, - "end": { - "line": 1, - "column": 1404 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1404, - "end": 1405, - "loc": { - "start": { - "line": 1, - "column": 1404 - }, - "end": { - "line": 1, - "column": 1405 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1405, - "end": 1406, - "loc": { - "start": { - "line": 1, - "column": 1405 - }, - "end": { - "line": 1, - "column": 1406 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1407, - "end": 1408, - "loc": { - "start": { - "line": 1, - "column": 1407 - }, - "end": { - "line": 1, - "column": 1408 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~array", - "start": 1408, - "end": 1453, - "loc": { - "start": { - "line": 1, - "column": 1408 - }, - "end": { - "line": 1, - "column": 1453 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1453, - "end": 1454, - "loc": { - "start": { - "line": 1, - "column": 1453 - }, - "end": { - "line": 1, - "column": 1454 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array", - "start": 1455, - "end": 1543, - "loc": { - "start": { - "line": 1, - "column": 1455 - }, - "end": { - "line": 1, - "column": 1543 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1543, - "end": 1544, - "loc": { - "start": { - "line": 1, - "column": 1543 - }, - "end": { - "line": 1, - "column": 1544 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Array", - "start": 1545, - "end": 1590, - "loc": { - "start": { - "line": 1, - "column": 1545 - }, - "end": { - "line": 1, - "column": 1590 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1590, - "end": 1591, - "loc": { - "start": { - "line": 1, - "column": 1590 - }, - "end": { - "line": 1, - "column": 1591 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 1592, - "end": 1602, - "loc": { - "start": { - "line": 1, - "column": 1592 - }, - "end": { - "line": 1, - "column": 1602 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1602, - "end": 1603, - "loc": { - "start": { - "line": 1, - "column": 1602 - }, - "end": { - "line": 1, - "column": 1603 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1603, - "end": 1604, - "loc": { - "start": { - "line": 1, - "column": 1603 - }, - "end": { - "line": 1, - "column": 1604 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1605, - "end": 1606, - "loc": { - "start": { - "line": 1, - "column": 1605 - }, - "end": { - "line": 1, - "column": 1606 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~arraybuffer", - "start": 1606, - "end": 1657, - "loc": { - "start": { - "line": 1, - "column": 1606 - }, - "end": { - "line": 1, - "column": 1657 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1657, - "end": 1658, - "loc": { - "start": { - "line": 1, - "column": 1657 - }, - "end": { - "line": 1, - "column": 1658 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", - "start": 1659, - "end": 1753, - "loc": { - "start": { - "line": 1, - "column": 1659 - }, - "end": { - "line": 1, - "column": 1753 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1753, - "end": 1754, - "loc": { - "start": { - "line": 1, - "column": 1753 - }, - "end": { - "line": 1, - "column": 1754 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer", - "start": 1755, - "end": 1806, - "loc": { - "start": { - "line": 1, - "column": 1755 - }, - "end": { - "line": 1, - "column": 1806 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1806, - "end": 1807, - "loc": { - "start": { - "line": 1, - "column": 1806 - }, - "end": { - "line": 1, - "column": 1807 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 1808, - "end": 1818, - "loc": { - "start": { - "line": 1, - "column": 1808 - }, - "end": { - "line": 1, - "column": 1818 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1818, - "end": 1819, - "loc": { - "start": { - "line": 1, - "column": 1818 - }, - "end": { - "line": 1, - "column": 1819 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1819, - "end": 1820, - "loc": { - "start": { - "line": 1, - "column": 1819 - }, - "end": { - "line": 1, - "column": 1820 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1821, - "end": 1822, - "loc": { - "start": { - "line": 1, - "column": 1821 - }, - "end": { - "line": 1, - "column": 1822 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~boolean", - "start": 1822, - "end": 1869, - "loc": { - "start": { - "line": 1, - "column": 1822 - }, - "end": { - "line": 1, - "column": 1869 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1869, - "end": 1870, - "loc": { - "start": { - "line": 1, - "column": 1869 - }, - "end": { - "line": 1, - "column": 1870 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "start": 1871, - "end": 1961, - "loc": { - "start": { - "line": 1, - "column": 1871 - }, - "end": { - "line": 1, - "column": 1961 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1961, - "end": 1962, - "loc": { - "start": { - "line": 1, - "column": 1961 - }, - "end": { - "line": 1, - "column": 1962 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Boolean", - "start": 1963, - "end": 2010, - "loc": { - "start": { - "line": 1, - "column": 1963 - }, - "end": { - "line": 1, - "column": 2010 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2010, - "end": 2011, - "loc": { - "start": { - "line": 1, - "column": 2010 - }, - "end": { - "line": 1, - "column": 2011 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 2012, - "end": 2022, - "loc": { - "start": { - "line": 1, - "column": 2012 - }, - "end": { - "line": 1, - "column": 2022 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2022, - "end": 2023, - "loc": { - "start": { - "line": 1, - "column": 2022 - }, - "end": { - "line": 1, - "column": 2023 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2023, - "end": 2024, - "loc": { - "start": { - "line": 1, - "column": 2023 - }, - "end": { - "line": 1, - "column": 2024 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2025, - "end": 2026, - "loc": { - "start": { - "line": 1, - "column": 2025 - }, - "end": { - "line": 1, - "column": 2026 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~dataview", - "start": 2026, - "end": 2074, - "loc": { - "start": { - "line": 1, - "column": 2026 - }, - "end": { - "line": 1, - "column": 2074 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2074, - "end": 2075, - "loc": { - "start": { - "line": 1, - "column": 2074 - }, - "end": { - "line": 1, - "column": 2075 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView", - "start": 2076, - "end": 2167, - "loc": { - "start": { - "line": 1, - "column": 2076 - }, - "end": { - "line": 1, - "column": 2167 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2167, - "end": 2168, - "loc": { - "start": { - "line": 1, - "column": 2167 - }, - "end": { - "line": 1, - "column": 2168 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~DataView", - "start": 2169, - "end": 2217, - "loc": { - "start": { - "line": 1, - "column": 2169 - }, - "end": { - "line": 1, - "column": 2217 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2217, - "end": 2218, - "loc": { - "start": { - "line": 1, - "column": 2217 - }, - "end": { - "line": 1, - "column": 2218 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 2219, - "end": 2229, - "loc": { - "start": { - "line": 1, - "column": 2219 - }, - "end": { - "line": 1, - "column": 2229 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2229, - "end": 2230, - "loc": { - "start": { - "line": 1, - "column": 2229 - }, - "end": { - "line": 1, - "column": 2230 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2230, - "end": 2231, - "loc": { - "start": { - "line": 1, - "column": 2230 - }, - "end": { - "line": 1, - "column": 2231 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2232, - "end": 2233, - "loc": { - "start": { - "line": 1, - "column": 2232 - }, - "end": { - "line": 1, - "column": 2233 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~date", - "start": 2233, - "end": 2277, - "loc": { - "start": { - "line": 1, - "column": 2233 - }, - "end": { - "line": 1, - "column": 2277 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2277, - "end": 2278, - "loc": { - "start": { - "line": 1, - "column": 2277 - }, - "end": { - "line": 1, - "column": 2278 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", - "start": 2279, - "end": 2366, - "loc": { - "start": { - "line": 1, - "column": 2279 - }, - "end": { - "line": 1, - "column": 2366 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2366, - "end": 2367, - "loc": { - "start": { - "line": 1, - "column": 2366 - }, - "end": { - "line": 1, - "column": 2367 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Date", - "start": 2368, - "end": 2412, - "loc": { - "start": { - "line": 1, - "column": 2368 - }, - "end": { - "line": 1, - "column": 2412 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2412, - "end": 2413, - "loc": { - "start": { - "line": 1, - "column": 2412 - }, - "end": { - "line": 1, - "column": 2413 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 2414, - "end": 2424, - "loc": { - "start": { - "line": 1, - "column": 2414 - }, - "end": { - "line": 1, - "column": 2424 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2424, - "end": 2425, - "loc": { - "start": { - "line": 1, - "column": 2424 - }, - "end": { - "line": 1, - "column": 2425 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2425, - "end": 2426, - "loc": { - "start": { - "line": 1, - "column": 2425 - }, - "end": { - "line": 1, - "column": 2426 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2427, - "end": 2428, - "loc": { - "start": { - "line": 1, - "column": 2427 - }, - "end": { - "line": 1, - "column": 2428 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~error", - "start": 2428, - "end": 2473, - "loc": { - "start": { - "line": 1, - "column": 2428 - }, - "end": { - "line": 1, - "column": 2473 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2473, - "end": 2474, - "loc": { - "start": { - "line": 1, - "column": 2473 - }, - "end": { - "line": 1, - "column": 2474 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error", - "start": 2475, - "end": 2563, - "loc": { - "start": { - "line": 1, - "column": 2475 - }, - "end": { - "line": 1, - "column": 2563 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2563, - "end": 2564, - "loc": { - "start": { - "line": 1, - "column": 2563 - }, - "end": { - "line": 1, - "column": 2564 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Error", - "start": 2565, - "end": 2610, - "loc": { - "start": { - "line": 1, - "column": 2565 - }, - "end": { - "line": 1, - "column": 2610 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2610, - "end": 2611, - "loc": { - "start": { - "line": 1, - "column": 2610 - }, - "end": { - "line": 1, - "column": 2611 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 2612, - "end": 2622, - "loc": { - "start": { - "line": 1, - "column": 2612 - }, - "end": { - "line": 1, - "column": 2622 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2622, - "end": 2623, - "loc": { - "start": { - "line": 1, - "column": 2622 - }, - "end": { - "line": 1, - "column": 2623 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2623, - "end": 2624, - "loc": { - "start": { - "line": 1, - "column": 2623 - }, - "end": { - "line": 1, - "column": 2624 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2625, - "end": 2626, - "loc": { - "start": { - "line": 1, - "column": 2625 - }, - "end": { - "line": 1, - "column": 2626 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~evalerror", - "start": 2626, - "end": 2675, - "loc": { - "start": { - "line": 1, - "column": 2626 - }, - "end": { - "line": 1, - "column": 2675 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2675, - "end": 2676, - "loc": { - "start": { - "line": 1, - "column": 2675 - }, - "end": { - "line": 1, - "column": 2676 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError", - "start": 2677, - "end": 2769, - "loc": { - "start": { - "line": 1, - "column": 2677 - }, - "end": { - "line": 1, - "column": 2769 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2769, - "end": 2770, - "loc": { - "start": { - "line": 1, - "column": 2769 - }, - "end": { - "line": 1, - "column": 2770 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~EvalError", - "start": 2771, - "end": 2820, - "loc": { - "start": { - "line": 1, - "column": 2771 - }, - "end": { - "line": 1, - "column": 2820 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2820, - "end": 2821, - "loc": { - "start": { - "line": 1, - "column": 2820 - }, - "end": { - "line": 1, - "column": 2821 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 2822, - "end": 2832, - "loc": { - "start": { - "line": 1, - "column": 2822 - }, - "end": { - "line": 1, - "column": 2832 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2832, - "end": 2833, - "loc": { - "start": { - "line": 1, - "column": 2832 - }, - "end": { - "line": 1, - "column": 2833 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2833, - "end": 2834, - "loc": { - "start": { - "line": 1, - "column": 2833 - }, - "end": { - "line": 1, - "column": 2834 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2835, - "end": 2836, - "loc": { - "start": { - "line": 1, - "column": 2835 - }, - "end": { - "line": 1, - "column": 2836 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~float32array", - "start": 2836, - "end": 2888, - "loc": { - "start": { - "line": 1, - "column": 2836 - }, - "end": { - "line": 1, - "column": 2888 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2888, - "end": 2889, - "loc": { - "start": { - "line": 1, - "column": 2888 - }, - "end": { - "line": 1, - "column": 2889 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array", - "start": 2890, - "end": 2985, - "loc": { - "start": { - "line": 1, - "column": 2890 - }, - "end": { - "line": 1, - "column": 2985 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2985, - "end": 2986, - "loc": { - "start": { - "line": 1, - "column": 2985 - }, - "end": { - "line": 1, - "column": 2986 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Float32Array", - "start": 2987, - "end": 3039, - "loc": { - "start": { - "line": 1, - "column": 2987 - }, - "end": { - "line": 1, - "column": 3039 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3039, - "end": 3040, - "loc": { - "start": { - "line": 1, - "column": 3039 - }, - "end": { - "line": 1, - "column": 3040 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 3041, - "end": 3051, - "loc": { - "start": { - "line": 1, - "column": 3041 - }, - "end": { - "line": 1, - "column": 3051 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3051, - "end": 3052, - "loc": { - "start": { - "line": 1, - "column": 3051 - }, - "end": { - "line": 1, - "column": 3052 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3052, - "end": 3053, - "loc": { - "start": { - "line": 1, - "column": 3052 - }, - "end": { - "line": 1, - "column": 3053 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3054, - "end": 3055, - "loc": { - "start": { - "line": 1, - "column": 3054 - }, - "end": { - "line": 1, - "column": 3055 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~float64array", - "start": 3055, - "end": 3107, - "loc": { - "start": { - "line": 1, - "column": 3055 - }, - "end": { - "line": 1, - "column": 3107 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3107, - "end": 3108, - "loc": { - "start": { - "line": 1, - "column": 3107 - }, - "end": { - "line": 1, - "column": 3108 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array", - "start": 3109, - "end": 3204, - "loc": { - "start": { - "line": 1, - "column": 3109 - }, - "end": { - "line": 1, - "column": 3204 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3204, - "end": 3205, - "loc": { - "start": { - "line": 1, - "column": 3204 - }, - "end": { - "line": 1, - "column": 3205 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Float64Array", - "start": 3206, - "end": 3258, - "loc": { - "start": { - "line": 1, - "column": 3206 - }, - "end": { - "line": 1, - "column": 3258 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3258, - "end": 3259, - "loc": { - "start": { - "line": 1, - "column": 3258 - }, - "end": { - "line": 1, - "column": 3259 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 3260, - "end": 3270, - "loc": { - "start": { - "line": 1, - "column": 3260 - }, - "end": { - "line": 1, - "column": 3270 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3270, - "end": 3271, - "loc": { - "start": { - "line": 1, - "column": 3270 - }, - "end": { - "line": 1, - "column": 3271 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3271, - "end": 3272, - "loc": { - "start": { - "line": 1, - "column": 3271 - }, - "end": { - "line": 1, - "column": 3272 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3273, - "end": 3274, - "loc": { - "start": { - "line": 1, - "column": 3273 - }, - "end": { - "line": 1, - "column": 3274 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~function", - "start": 3274, - "end": 3322, - "loc": { - "start": { - "line": 1, - "column": 3274 - }, - "end": { - "line": 1, - "column": 3322 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3322, - "end": 3323, - "loc": { - "start": { - "line": 1, - "column": 3322 - }, - "end": { - "line": 1, - "column": 3323 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "start": 3324, - "end": 3415, - "loc": { - "start": { - "line": 1, - "column": 3324 - }, - "end": { - "line": 1, - "column": 3415 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3415, - "end": 3416, - "loc": { - "start": { - "line": 1, - "column": 3415 - }, - "end": { - "line": 1, - "column": 3416 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Function", - "start": 3417, - "end": 3465, - "loc": { - "start": { - "line": 1, - "column": 3417 - }, - "end": { - "line": 1, - "column": 3465 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3465, - "end": 3466, - "loc": { - "start": { - "line": 1, - "column": 3465 - }, - "end": { - "line": 1, - "column": 3466 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 3467, - "end": 3477, - "loc": { - "start": { - "line": 1, - "column": 3467 - }, - "end": { - "line": 1, - "column": 3477 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3477, - "end": 3478, - "loc": { - "start": { - "line": 1, - "column": 3477 - }, - "end": { - "line": 1, - "column": 3478 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3478, - "end": 3479, - "loc": { - "start": { - "line": 1, - "column": 3478 - }, - "end": { - "line": 1, - "column": 3479 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3480, - "end": 3481, - "loc": { - "start": { - "line": 1, - "column": 3480 - }, - "end": { - "line": 1, - "column": 3481 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~generator", - "start": 3481, - "end": 3530, - "loc": { - "start": { - "line": 1, - "column": 3481 - }, - "end": { - "line": 1, - "column": 3530 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3530, - "end": 3531, - "loc": { - "start": { - "line": 1, - "column": 3530 - }, - "end": { - "line": 1, - "column": 3531 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator", - "start": 3532, - "end": 3624, - "loc": { - "start": { - "line": 1, - "column": 3532 - }, - "end": { - "line": 1, - "column": 3624 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3624, - "end": 3625, - "loc": { - "start": { - "line": 1, - "column": 3624 - }, - "end": { - "line": 1, - "column": 3625 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Generator", - "start": 3626, - "end": 3675, - "loc": { - "start": { - "line": 1, - "column": 3626 - }, - "end": { - "line": 1, - "column": 3675 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3675, - "end": 3676, - "loc": { - "start": { - "line": 1, - "column": 3675 - }, - "end": { - "line": 1, - "column": 3676 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 3677, - "end": 3687, - "loc": { - "start": { - "line": 1, - "column": 3677 - }, - "end": { - "line": 1, - "column": 3687 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3687, - "end": 3688, - "loc": { - "start": { - "line": 1, - "column": 3687 - }, - "end": { - "line": 1, - "column": 3688 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3688, - "end": 3689, - "loc": { - "start": { - "line": 1, - "column": 3688 - }, - "end": { - "line": 1, - "column": 3689 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3690, - "end": 3691, - "loc": { - "start": { - "line": 1, - "column": 3690 - }, - "end": { - "line": 1, - "column": 3691 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~generatorfunction", - "start": 3691, - "end": 3748, - "loc": { - "start": { - "line": 1, - "column": 3691 - }, - "end": { - "line": 1, - "column": 3748 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3748, - "end": 3749, - "loc": { - "start": { - "line": 1, - "column": 3748 - }, - "end": { - "line": 1, - "column": 3749 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", - "start": 3750, - "end": 3850, - "loc": { - "start": { - "line": 1, - "column": 3750 - }, - "end": { - "line": 1, - "column": 3850 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3850, - "end": 3851, - "loc": { - "start": { - "line": 1, - "column": 3850 - }, - "end": { - "line": 1, - "column": 3851 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction", - "start": 3852, - "end": 3909, - "loc": { - "start": { - "line": 1, - "column": 3852 - }, - "end": { - "line": 1, - "column": 3909 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3909, - "end": 3910, - "loc": { - "start": { - "line": 1, - "column": 3909 - }, - "end": { - "line": 1, - "column": 3910 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 3911, - "end": 3921, - "loc": { - "start": { - "line": 1, - "column": 3911 - }, - "end": { - "line": 1, - "column": 3921 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3921, - "end": 3922, - "loc": { - "start": { - "line": 1, - "column": 3921 - }, - "end": { - "line": 1, - "column": 3922 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3922, - "end": 3923, - "loc": { - "start": { - "line": 1, - "column": 3922 - }, - "end": { - "line": 1, - "column": 3923 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3924, - "end": 3925, - "loc": { - "start": { - "line": 1, - "column": 3924 - }, - "end": { - "line": 1, - "column": 3925 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~infinity", - "start": 3925, - "end": 3973, - "loc": { - "start": { - "line": 1, - "column": 3925 - }, - "end": { - "line": 1, - "column": 3973 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3973, - "end": 3974, - "loc": { - "start": { - "line": 1, - "column": 3973 - }, - "end": { - "line": 1, - "column": 3974 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", - "start": 3975, - "end": 4066, - "loc": { - "start": { - "line": 1, - "column": 3975 - }, - "end": { - "line": 1, - "column": 4066 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4066, - "end": 4067, - "loc": { - "start": { - "line": 1, - "column": 4066 - }, - "end": { - "line": 1, - "column": 4067 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Infinity", - "start": 4068, - "end": 4116, - "loc": { - "start": { - "line": 1, - "column": 4068 - }, - "end": { - "line": 1, - "column": 4116 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4116, - "end": 4117, - "loc": { - "start": { - "line": 1, - "column": 4116 - }, - "end": { - "line": 1, - "column": 4117 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 4118, - "end": 4128, - "loc": { - "start": { - "line": 1, - "column": 4118 - }, - "end": { - "line": 1, - "column": 4128 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4128, - "end": 4129, - "loc": { - "start": { - "line": 1, - "column": 4128 - }, - "end": { - "line": 1, - "column": 4129 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4129, - "end": 4130, - "loc": { - "start": { - "line": 1, - "column": 4129 - }, - "end": { - "line": 1, - "column": 4130 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4131, - "end": 4132, - "loc": { - "start": { - "line": 1, - "column": 4131 - }, - "end": { - "line": 1, - "column": 4132 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~int16array", - "start": 4132, - "end": 4182, - "loc": { - "start": { - "line": 1, - "column": 4132 - }, - "end": { - "line": 1, - "column": 4182 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4182, - "end": 4183, - "loc": { - "start": { - "line": 1, - "column": 4182 - }, - "end": { - "line": 1, - "column": 4183 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array", - "start": 4184, - "end": 4277, - "loc": { - "start": { - "line": 1, - "column": 4184 - }, - "end": { - "line": 1, - "column": 4277 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4277, - "end": 4278, - "loc": { - "start": { - "line": 1, - "column": 4277 - }, - "end": { - "line": 1, - "column": 4278 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int16Array", - "start": 4279, - "end": 4329, - "loc": { - "start": { - "line": 1, - "column": 4279 - }, - "end": { - "line": 1, - "column": 4329 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4329, - "end": 4330, - "loc": { - "start": { - "line": 1, - "column": 4329 - }, - "end": { - "line": 1, - "column": 4330 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 4331, - "end": 4341, - "loc": { - "start": { - "line": 1, - "column": 4331 - }, - "end": { - "line": 1, - "column": 4341 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4341, - "end": 4342, - "loc": { - "start": { - "line": 1, - "column": 4341 - }, - "end": { - "line": 1, - "column": 4342 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4342, - "end": 4343, - "loc": { - "start": { - "line": 1, - "column": 4342 - }, - "end": { - "line": 1, - "column": 4343 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4344, - "end": 4345, - "loc": { - "start": { - "line": 1, - "column": 4344 - }, - "end": { - "line": 1, - "column": 4345 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~int32array", - "start": 4345, - "end": 4395, - "loc": { - "start": { - "line": 1, - "column": 4345 - }, - "end": { - "line": 1, - "column": 4395 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4395, - "end": 4396, - "loc": { - "start": { - "line": 1, - "column": 4395 - }, - "end": { - "line": 1, - "column": 4396 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array", - "start": 4397, - "end": 4490, - "loc": { - "start": { - "line": 1, - "column": 4397 - }, - "end": { - "line": 1, - "column": 4490 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4490, - "end": 4491, - "loc": { - "start": { - "line": 1, - "column": 4490 - }, - "end": { - "line": 1, - "column": 4491 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int32Array", - "start": 4492, - "end": 4542, - "loc": { - "start": { - "line": 1, - "column": 4492 - }, - "end": { - "line": 1, - "column": 4542 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4542, - "end": 4543, - "loc": { - "start": { - "line": 1, - "column": 4542 - }, - "end": { - "line": 1, - "column": 4543 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 4544, - "end": 4554, - "loc": { - "start": { - "line": 1, - "column": 4544 - }, - "end": { - "line": 1, - "column": 4554 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4554, - "end": 4555, - "loc": { - "start": { - "line": 1, - "column": 4554 - }, - "end": { - "line": 1, - "column": 4555 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4555, - "end": 4556, - "loc": { - "start": { - "line": 1, - "column": 4555 - }, - "end": { - "line": 1, - "column": 4556 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4557, - "end": 4558, - "loc": { - "start": { - "line": 1, - "column": 4557 - }, - "end": { - "line": 1, - "column": 4558 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~int8array", - "start": 4558, - "end": 4607, - "loc": { - "start": { - "line": 1, - "column": 4558 - }, - "end": { - "line": 1, - "column": 4607 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4607, - "end": 4608, - "loc": { - "start": { - "line": 1, - "column": 4607 - }, - "end": { - "line": 1, - "column": 4608 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array", - "start": 4609, - "end": 4701, - "loc": { - "start": { - "line": 1, - "column": 4609 - }, - "end": { - "line": 1, - "column": 4701 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4701, - "end": 4702, - "loc": { - "start": { - "line": 1, - "column": 4701 - }, - "end": { - "line": 1, - "column": 4702 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Int8Array", - "start": 4703, - "end": 4752, - "loc": { - "start": { - "line": 1, - "column": 4703 - }, - "end": { - "line": 1, - "column": 4752 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4752, - "end": 4753, - "loc": { - "start": { - "line": 1, - "column": 4752 - }, - "end": { - "line": 1, - "column": 4753 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 4754, - "end": 4764, - "loc": { - "start": { - "line": 1, - "column": 4754 - }, - "end": { - "line": 1, - "column": 4764 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4764, - "end": 4765, - "loc": { - "start": { - "line": 1, - "column": 4764 - }, - "end": { - "line": 1, - "column": 4765 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4765, - "end": 4766, - "loc": { - "start": { - "line": 1, - "column": 4765 - }, - "end": { - "line": 1, - "column": 4766 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4767, - "end": 4768, - "loc": { - "start": { - "line": 1, - "column": 4767 - }, - "end": { - "line": 1, - "column": 4768 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~internalerror", - "start": 4768, - "end": 4821, - "loc": { - "start": { - "line": 1, - "column": 4768 - }, - "end": { - "line": 1, - "column": 4821 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4821, - "end": 4822, - "loc": { - "start": { - "line": 1, - "column": 4821 - }, - "end": { - "line": 1, - "column": 4822 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError", - "start": 4823, - "end": 4919, - "loc": { - "start": { - "line": 1, - "column": 4823 - }, - "end": { - "line": 1, - "column": 4919 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4919, - "end": 4920, - "loc": { - "start": { - "line": 1, - "column": 4919 - }, - "end": { - "line": 1, - "column": 4920 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~InternalError", - "start": 4921, - "end": 4974, - "loc": { - "start": { - "line": 1, - "column": 4921 - }, - "end": { - "line": 1, - "column": 4974 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4974, - "end": 4975, - "loc": { - "start": { - "line": 1, - "column": 4974 - }, - "end": { - "line": 1, - "column": 4975 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 4976, - "end": 4986, - "loc": { - "start": { - "line": 1, - "column": 4976 - }, - "end": { - "line": 1, - "column": 4986 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4986, - "end": 4987, - "loc": { - "start": { - "line": 1, - "column": 4986 - }, - "end": { - "line": 1, - "column": 4987 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4987, - "end": 4988, - "loc": { - "start": { - "line": 1, - "column": 4987 - }, - "end": { - "line": 1, - "column": 4988 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4989, - "end": 4990, - "loc": { - "start": { - "line": 1, - "column": 4989 - }, - "end": { - "line": 1, - "column": 4990 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~json", - "start": 4990, - "end": 5034, - "loc": { - "start": { - "line": 1, - "column": 4990 - }, - "end": { - "line": 1, - "column": 5034 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5034, - "end": 5035, - "loc": { - "start": { - "line": 1, - "column": 5034 - }, - "end": { - "line": 1, - "column": 5035 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", - "start": 5036, - "end": 5123, - "loc": { - "start": { - "line": 1, - "column": 5036 - }, - "end": { - "line": 1, - "column": 5123 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5123, - "end": 5124, - "loc": { - "start": { - "line": 1, - "column": 5123 - }, - "end": { - "line": 1, - "column": 5124 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~JSON", - "start": 5125, - "end": 5169, - "loc": { - "start": { - "line": 1, - "column": 5125 - }, - "end": { - "line": 1, - "column": 5169 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5169, - "end": 5170, - "loc": { - "start": { - "line": 1, - "column": 5169 - }, - "end": { - "line": 1, - "column": 5170 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 5171, - "end": 5181, - "loc": { - "start": { - "line": 1, - "column": 5171 - }, - "end": { - "line": 1, - "column": 5181 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5181, - "end": 5182, - "loc": { - "start": { - "line": 1, - "column": 5181 - }, - "end": { - "line": 1, - "column": 5182 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5182, - "end": 5183, - "loc": { - "start": { - "line": 1, - "column": 5182 - }, - "end": { - "line": 1, - "column": 5183 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5184, - "end": 5185, - "loc": { - "start": { - "line": 1, - "column": 5184 - }, - "end": { - "line": 1, - "column": 5185 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~map", - "start": 5185, - "end": 5228, - "loc": { - "start": { - "line": 1, - "column": 5185 - }, - "end": { - "line": 1, - "column": 5228 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5228, - "end": 5229, - "loc": { - "start": { - "line": 1, - "column": 5228 - }, - "end": { - "line": 1, - "column": 5229 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map", - "start": 5230, - "end": 5316, - "loc": { - "start": { - "line": 1, - "column": 5230 - }, - "end": { - "line": 1, - "column": 5316 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5316, - "end": 5317, - "loc": { - "start": { - "line": 1, - "column": 5316 - }, - "end": { - "line": 1, - "column": 5317 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Map", - "start": 5318, - "end": 5361, - "loc": { - "start": { - "line": 1, - "column": 5318 - }, - "end": { - "line": 1, - "column": 5361 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5361, - "end": 5362, - "loc": { - "start": { - "line": 1, - "column": 5361 - }, - "end": { - "line": 1, - "column": 5362 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 5363, - "end": 5373, - "loc": { - "start": { - "line": 1, - "column": 5363 - }, - "end": { - "line": 1, - "column": 5373 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5373, - "end": 5374, - "loc": { - "start": { - "line": 1, - "column": 5373 - }, - "end": { - "line": 1, - "column": 5374 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5374, - "end": 5375, - "loc": { - "start": { - "line": 1, - "column": 5374 - }, - "end": { - "line": 1, - "column": 5375 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5376, - "end": 5377, - "loc": { - "start": { - "line": 1, - "column": 5376 - }, - "end": { - "line": 1, - "column": 5377 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~nan", - "start": 5377, - "end": 5420, - "loc": { - "start": { - "line": 1, - "column": 5377 - }, - "end": { - "line": 1, - "column": 5420 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5420, - "end": 5421, - "loc": { - "start": { - "line": 1, - "column": 5420 - }, - "end": { - "line": 1, - "column": 5421 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", - "start": 5422, - "end": 5508, - "loc": { - "start": { - "line": 1, - "column": 5422 - }, - "end": { - "line": 1, - "column": 5508 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5508, - "end": 5509, - "loc": { - "start": { - "line": 1, - "column": 5508 - }, - "end": { - "line": 1, - "column": 5509 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~NaN", - "start": 5510, - "end": 5553, - "loc": { - "start": { - "line": 1, - "column": 5510 - }, - "end": { - "line": 1, - "column": 5553 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5553, - "end": 5554, - "loc": { - "start": { - "line": 1, - "column": 5553 - }, - "end": { - "line": 1, - "column": 5554 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 5555, - "end": 5565, - "loc": { - "start": { - "line": 1, - "column": 5555 - }, - "end": { - "line": 1, - "column": 5565 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5565, - "end": 5566, - "loc": { - "start": { - "line": 1, - "column": 5565 - }, - "end": { - "line": 1, - "column": 5566 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5566, - "end": 5567, - "loc": { - "start": { - "line": 1, - "column": 5566 - }, - "end": { - "line": 1, - "column": 5567 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5568, - "end": 5569, - "loc": { - "start": { - "line": 1, - "column": 5568 - }, - "end": { - "line": 1, - "column": 5569 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~number", - "start": 5569, - "end": 5615, - "loc": { - "start": { - "line": 1, - "column": 5569 - }, - "end": { - "line": 1, - "column": 5615 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5615, - "end": 5616, - "loc": { - "start": { - "line": 1, - "column": 5615 - }, - "end": { - "line": 1, - "column": 5616 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "start": 5617, - "end": 5706, - "loc": { - "start": { - "line": 1, - "column": 5617 - }, - "end": { - "line": 1, - "column": 5706 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5706, - "end": 5707, - "loc": { - "start": { - "line": 1, - "column": 5706 - }, - "end": { - "line": 1, - "column": 5707 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Number", - "start": 5708, - "end": 5754, - "loc": { - "start": { - "line": 1, - "column": 5708 - }, - "end": { - "line": 1, - "column": 5754 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5754, - "end": 5755, - "loc": { - "start": { - "line": 1, - "column": 5754 - }, - "end": { - "line": 1, - "column": 5755 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 5756, - "end": 5766, - "loc": { - "start": { - "line": 1, - "column": 5756 - }, - "end": { - "line": 1, - "column": 5766 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5766, - "end": 5767, - "loc": { - "start": { - "line": 1, - "column": 5766 - }, - "end": { - "line": 1, - "column": 5767 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5767, - "end": 5768, - "loc": { - "start": { - "line": 1, - "column": 5767 - }, - "end": { - "line": 1, - "column": 5768 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5769, - "end": 5770, - "loc": { - "start": { - "line": 1, - "column": 5769 - }, - "end": { - "line": 1, - "column": 5770 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~object", - "start": 5770, - "end": 5816, - "loc": { - "start": { - "line": 1, - "column": 5770 - }, - "end": { - "line": 1, - "column": 5816 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5816, - "end": 5817, - "loc": { - "start": { - "line": 1, - "column": 5816 - }, - "end": { - "line": 1, - "column": 5817 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "start": 5818, - "end": 5907, - "loc": { - "start": { - "line": 1, - "column": 5818 - }, - "end": { - "line": 1, - "column": 5907 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5907, - "end": 5908, - "loc": { - "start": { - "line": 1, - "column": 5907 - }, - "end": { - "line": 1, - "column": 5908 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Object", - "start": 5909, - "end": 5955, - "loc": { - "start": { - "line": 1, - "column": 5909 - }, - "end": { - "line": 1, - "column": 5955 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5955, - "end": 5956, - "loc": { - "start": { - "line": 1, - "column": 5955 - }, - "end": { - "line": 1, - "column": 5956 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 5957, - "end": 5967, - "loc": { - "start": { - "line": 1, - "column": 5957 - }, - "end": { - "line": 1, - "column": 5967 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5967, - "end": 5968, - "loc": { - "start": { - "line": 1, - "column": 5967 - }, - "end": { - "line": 1, - "column": 5968 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5968, - "end": 5969, - "loc": { - "start": { - "line": 1, - "column": 5968 - }, - "end": { - "line": 1, - "column": 5969 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5970, - "end": 5971, - "loc": { - "start": { - "line": 1, - "column": 5970 - }, - "end": { - "line": 1, - "column": 5971 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~promise", - "start": 5971, - "end": 6018, - "loc": { - "start": { - "line": 1, - "column": 5971 - }, - "end": { - "line": 1, - "column": 6018 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6018, - "end": 6019, - "loc": { - "start": { - "line": 1, - "column": 6018 - }, - "end": { - "line": 1, - "column": 6019 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise", - "start": 6020, - "end": 6110, - "loc": { - "start": { - "line": 1, - "column": 6020 - }, - "end": { - "line": 1, - "column": 6110 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6110, - "end": 6111, - "loc": { - "start": { - "line": 1, - "column": 6110 - }, - "end": { - "line": 1, - "column": 6111 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Promise", - "start": 6112, - "end": 6159, - "loc": { - "start": { - "line": 1, - "column": 6112 - }, - "end": { - "line": 1, - "column": 6159 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6159, - "end": 6160, - "loc": { - "start": { - "line": 1, - "column": 6159 - }, - "end": { - "line": 1, - "column": 6160 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 6161, - "end": 6171, - "loc": { - "start": { - "line": 1, - "column": 6161 - }, - "end": { - "line": 1, - "column": 6171 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6171, - "end": 6172, - "loc": { - "start": { - "line": 1, - "column": 6171 - }, - "end": { - "line": 1, - "column": 6172 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6172, - "end": 6173, - "loc": { - "start": { - "line": 1, - "column": 6172 - }, - "end": { - "line": 1, - "column": 6173 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6174, - "end": 6175, - "loc": { - "start": { - "line": 1, - "column": 6174 - }, - "end": { - "line": 1, - "column": 6175 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~proxy", - "start": 6175, - "end": 6220, - "loc": { - "start": { - "line": 1, - "column": 6175 - }, - "end": { - "line": 1, - "column": 6220 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6220, - "end": 6221, - "loc": { - "start": { - "line": 1, - "column": 6220 - }, - "end": { - "line": 1, - "column": 6221 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy", - "start": 6222, - "end": 6310, - "loc": { - "start": { - "line": 1, - "column": 6222 - }, - "end": { - "line": 1, - "column": 6310 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6310, - "end": 6311, - "loc": { - "start": { - "line": 1, - "column": 6310 - }, - "end": { - "line": 1, - "column": 6311 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Proxy", - "start": 6312, - "end": 6357, - "loc": { - "start": { - "line": 1, - "column": 6312 - }, - "end": { - "line": 1, - "column": 6357 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6357, - "end": 6358, - "loc": { - "start": { - "line": 1, - "column": 6357 - }, - "end": { - "line": 1, - "column": 6358 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 6359, - "end": 6369, - "loc": { - "start": { - "line": 1, - "column": 6359 - }, - "end": { - "line": 1, - "column": 6369 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6369, - "end": 6370, - "loc": { - "start": { - "line": 1, - "column": 6369 - }, - "end": { - "line": 1, - "column": 6370 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6370, - "end": 6371, - "loc": { - "start": { - "line": 1, - "column": 6370 - }, - "end": { - "line": 1, - "column": 6371 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6372, - "end": 6373, - "loc": { - "start": { - "line": 1, - "column": 6372 - }, - "end": { - "line": 1, - "column": 6373 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~rangeerror", - "start": 6373, - "end": 6423, - "loc": { - "start": { - "line": 1, - "column": 6373 - }, - "end": { - "line": 1, - "column": 6423 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6423, - "end": 6424, - "loc": { - "start": { - "line": 1, - "column": 6423 - }, - "end": { - "line": 1, - "column": 6424 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError", - "start": 6425, - "end": 6518, - "loc": { - "start": { - "line": 1, - "column": 6425 - }, - "end": { - "line": 1, - "column": 6518 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6518, - "end": 6519, - "loc": { - "start": { - "line": 1, - "column": 6518 - }, - "end": { - "line": 1, - "column": 6519 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~RangeError", - "start": 6520, - "end": 6570, - "loc": { - "start": { - "line": 1, - "column": 6520 - }, - "end": { - "line": 1, - "column": 6570 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6570, - "end": 6571, - "loc": { - "start": { - "line": 1, - "column": 6570 - }, - "end": { - "line": 1, - "column": 6571 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 6572, - "end": 6582, - "loc": { - "start": { - "line": 1, - "column": 6572 - }, - "end": { - "line": 1, - "column": 6582 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6582, - "end": 6583, - "loc": { - "start": { - "line": 1, - "column": 6582 - }, - "end": { - "line": 1, - "column": 6583 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6583, - "end": 6584, - "loc": { - "start": { - "line": 1, - "column": 6583 - }, - "end": { - "line": 1, - "column": 6584 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6585, - "end": 6586, - "loc": { - "start": { - "line": 1, - "column": 6585 - }, - "end": { - "line": 1, - "column": 6586 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~referenceerror", - "start": 6586, - "end": 6640, - "loc": { - "start": { - "line": 1, - "column": 6586 - }, - "end": { - "line": 1, - "column": 6640 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6640, - "end": 6641, - "loc": { - "start": { - "line": 1, - "column": 6640 - }, - "end": { - "line": 1, - "column": 6641 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError", - "start": 6642, - "end": 6739, - "loc": { - "start": { - "line": 1, - "column": 6642 - }, - "end": { - "line": 1, - "column": 6739 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6739, - "end": 6740, - "loc": { - "start": { - "line": 1, - "column": 6739 - }, - "end": { - "line": 1, - "column": 6740 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError", - "start": 6741, - "end": 6795, - "loc": { - "start": { - "line": 1, - "column": 6741 - }, - "end": { - "line": 1, - "column": 6795 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6795, - "end": 6796, - "loc": { - "start": { - "line": 1, - "column": 6795 - }, - "end": { - "line": 1, - "column": 6796 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 6797, - "end": 6807, - "loc": { - "start": { - "line": 1, - "column": 6797 - }, - "end": { - "line": 1, - "column": 6807 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6807, - "end": 6808, - "loc": { - "start": { - "line": 1, - "column": 6807 - }, - "end": { - "line": 1, - "column": 6808 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6808, - "end": 6809, - "loc": { - "start": { - "line": 1, - "column": 6808 - }, - "end": { - "line": 1, - "column": 6809 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6810, - "end": 6811, - "loc": { - "start": { - "line": 1, - "column": 6810 - }, - "end": { - "line": 1, - "column": 6811 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~reflect", - "start": 6811, - "end": 6858, - "loc": { - "start": { - "line": 1, - "column": 6811 - }, - "end": { - "line": 1, - "column": 6858 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6858, - "end": 6859, - "loc": { - "start": { - "line": 1, - "column": 6858 - }, - "end": { - "line": 1, - "column": 6859 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", - "start": 6860, - "end": 6950, - "loc": { - "start": { - "line": 1, - "column": 6860 - }, - "end": { - "line": 1, - "column": 6950 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6950, - "end": 6951, - "loc": { - "start": { - "line": 1, - "column": 6950 - }, - "end": { - "line": 1, - "column": 6951 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Reflect", - "start": 6952, - "end": 6999, - "loc": { - "start": { - "line": 1, - "column": 6952 - }, - "end": { - "line": 1, - "column": 6999 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6999, - "end": 7000, - "loc": { - "start": { - "line": 1, - "column": 6999 - }, - "end": { - "line": 1, - "column": 7000 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 7001, - "end": 7011, - "loc": { - "start": { - "line": 1, - "column": 7001 - }, - "end": { - "line": 1, - "column": 7011 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7011, - "end": 7012, - "loc": { - "start": { - "line": 1, - "column": 7011 - }, - "end": { - "line": 1, - "column": 7012 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7012, - "end": 7013, - "loc": { - "start": { - "line": 1, - "column": 7012 - }, - "end": { - "line": 1, - "column": 7013 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7014, - "end": 7015, - "loc": { - "start": { - "line": 1, - "column": 7014 - }, - "end": { - "line": 1, - "column": 7015 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~regexp", - "start": 7015, - "end": 7061, - "loc": { - "start": { - "line": 1, - "column": 7015 - }, - "end": { - "line": 1, - "column": 7061 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7061, - "end": 7062, - "loc": { - "start": { - "line": 1, - "column": 7061 - }, - "end": { - "line": 1, - "column": 7062 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp", - "start": 7063, - "end": 7152, - "loc": { - "start": { - "line": 1, - "column": 7063 - }, - "end": { - "line": 1, - "column": 7152 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7152, - "end": 7153, - "loc": { - "start": { - "line": 1, - "column": 7152 - }, - "end": { - "line": 1, - "column": 7153 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~RegExp", - "start": 7154, - "end": 7200, - "loc": { - "start": { - "line": 1, - "column": 7154 - }, - "end": { - "line": 1, - "column": 7200 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7200, - "end": 7201, - "loc": { - "start": { - "line": 1, - "column": 7200 - }, - "end": { - "line": 1, - "column": 7201 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 7202, - "end": 7212, - "loc": { - "start": { - "line": 1, - "column": 7202 - }, - "end": { - "line": 1, - "column": 7212 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7212, - "end": 7213, - "loc": { - "start": { - "line": 1, - "column": 7212 - }, - "end": { - "line": 1, - "column": 7213 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7213, - "end": 7214, - "loc": { - "start": { - "line": 1, - "column": 7213 - }, - "end": { - "line": 1, - "column": 7214 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7215, - "end": 7216, - "loc": { - "start": { - "line": 1, - "column": 7215 - }, - "end": { - "line": 1, - "column": 7216 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~set", - "start": 7216, - "end": 7259, - "loc": { - "start": { - "line": 1, - "column": 7216 - }, - "end": { - "line": 1, - "column": 7259 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7259, - "end": 7260, - "loc": { - "start": { - "line": 1, - "column": 7259 - }, - "end": { - "line": 1, - "column": 7260 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set", - "start": 7261, - "end": 7347, - "loc": { - "start": { - "line": 1, - "column": 7261 - }, - "end": { - "line": 1, - "column": 7347 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7347, - "end": 7348, - "loc": { - "start": { - "line": 1, - "column": 7347 - }, - "end": { - "line": 1, - "column": 7348 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Set", - "start": 7349, - "end": 7392, - "loc": { - "start": { - "line": 1, - "column": 7349 - }, - "end": { - "line": 1, - "column": 7392 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7392, - "end": 7393, - "loc": { - "start": { - "line": 1, - "column": 7392 - }, - "end": { - "line": 1, - "column": 7393 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 7394, - "end": 7404, - "loc": { - "start": { - "line": 1, - "column": 7394 - }, - "end": { - "line": 1, - "column": 7404 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7404, - "end": 7405, - "loc": { - "start": { - "line": 1, - "column": 7404 - }, - "end": { - "line": 1, - "column": 7405 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7405, - "end": 7406, - "loc": { - "start": { - "line": 1, - "column": 7405 - }, - "end": { - "line": 1, - "column": 7406 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7407, - "end": 7408, - "loc": { - "start": { - "line": 1, - "column": 7407 - }, - "end": { - "line": 1, - "column": 7408 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~string", - "start": 7408, - "end": 7454, - "loc": { - "start": { - "line": 1, - "column": 7408 - }, - "end": { - "line": 1, - "column": 7454 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7454, - "end": 7455, - "loc": { - "start": { - "line": 1, - "column": 7454 - }, - "end": { - "line": 1, - "column": 7455 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "start": 7456, - "end": 7545, - "loc": { - "start": { - "line": 1, - "column": 7456 - }, - "end": { - "line": 1, - "column": 7545 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7545, - "end": 7546, - "loc": { - "start": { - "line": 1, - "column": 7545 - }, - "end": { - "line": 1, - "column": 7546 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~String", - "start": 7547, - "end": 7593, - "loc": { - "start": { - "line": 1, - "column": 7547 - }, - "end": { - "line": 1, - "column": 7593 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7593, - "end": 7594, - "loc": { - "start": { - "line": 1, - "column": 7593 - }, - "end": { - "line": 1, - "column": 7594 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 7595, - "end": 7605, - "loc": { - "start": { - "line": 1, - "column": 7595 - }, - "end": { - "line": 1, - "column": 7605 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7605, - "end": 7606, - "loc": { - "start": { - "line": 1, - "column": 7605 - }, - "end": { - "line": 1, - "column": 7606 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7606, - "end": 7607, - "loc": { - "start": { - "line": 1, - "column": 7606 - }, - "end": { - "line": 1, - "column": 7607 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7608, - "end": 7609, - "loc": { - "start": { - "line": 1, - "column": 7608 - }, - "end": { - "line": 1, - "column": 7609 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~symbol", - "start": 7609, - "end": 7655, - "loc": { - "start": { - "line": 1, - "column": 7609 - }, - "end": { - "line": 1, - "column": 7655 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7655, - "end": 7656, - "loc": { - "start": { - "line": 1, - "column": 7655 - }, - "end": { - "line": 1, - "column": 7656 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol", - "start": 7657, - "end": 7746, - "loc": { - "start": { - "line": 1, - "column": 7657 - }, - "end": { - "line": 1, - "column": 7746 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7746, - "end": 7747, - "loc": { - "start": { - "line": 1, - "column": 7746 - }, - "end": { - "line": 1, - "column": 7747 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Symbol", - "start": 7748, - "end": 7794, - "loc": { - "start": { - "line": 1, - "column": 7748 - }, - "end": { - "line": 1, - "column": 7794 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7794, - "end": 7795, - "loc": { - "start": { - "line": 1, - "column": 7794 - }, - "end": { - "line": 1, - "column": 7795 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 7796, - "end": 7806, - "loc": { - "start": { - "line": 1, - "column": 7796 - }, - "end": { - "line": 1, - "column": 7806 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7806, - "end": 7807, - "loc": { - "start": { - "line": 1, - "column": 7806 - }, - "end": { - "line": 1, - "column": 7807 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7807, - "end": 7808, - "loc": { - "start": { - "line": 1, - "column": 7807 - }, - "end": { - "line": 1, - "column": 7808 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7809, - "end": 7810, - "loc": { - "start": { - "line": 1, - "column": 7809 - }, - "end": { - "line": 1, - "column": 7810 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~syntaxerror", - "start": 7810, - "end": 7861, - "loc": { - "start": { - "line": 1, - "column": 7810 - }, - "end": { - "line": 1, - "column": 7861 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7861, - "end": 7862, - "loc": { - "start": { - "line": 1, - "column": 7861 - }, - "end": { - "line": 1, - "column": 7862 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError", - "start": 7863, - "end": 7957, - "loc": { - "start": { - "line": 1, - "column": 7863 - }, - "end": { - "line": 1, - "column": 7957 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7957, - "end": 7958, - "loc": { - "start": { - "line": 1, - "column": 7957 - }, - "end": { - "line": 1, - "column": 7958 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError", - "start": 7959, - "end": 8010, - "loc": { - "start": { - "line": 1, - "column": 7959 - }, - "end": { - "line": 1, - "column": 8010 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8010, - "end": 8011, - "loc": { - "start": { - "line": 1, - "column": 8010 - }, - "end": { - "line": 1, - "column": 8011 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 8012, - "end": 8022, - "loc": { - "start": { - "line": 1, - "column": 8012 - }, - "end": { - "line": 1, - "column": 8022 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8022, - "end": 8023, - "loc": { - "start": { - "line": 1, - "column": 8022 - }, - "end": { - "line": 1, - "column": 8023 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8023, - "end": 8024, - "loc": { - "start": { - "line": 1, - "column": 8023 - }, - "end": { - "line": 1, - "column": 8024 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8025, - "end": 8026, - "loc": { - "start": { - "line": 1, - "column": 8025 - }, - "end": { - "line": 1, - "column": 8026 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~typeerror", - "start": 8026, - "end": 8075, - "loc": { - "start": { - "line": 1, - "column": 8026 - }, - "end": { - "line": 1, - "column": 8075 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8075, - "end": 8076, - "loc": { - "start": { - "line": 1, - "column": 8075 - }, - "end": { - "line": 1, - "column": 8076 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError", - "start": 8077, - "end": 8169, - "loc": { - "start": { - "line": 1, - "column": 8077 - }, - "end": { - "line": 1, - "column": 8169 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8169, - "end": 8170, - "loc": { - "start": { - "line": 1, - "column": 8169 - }, - "end": { - "line": 1, - "column": 8170 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~TypeError", - "start": 8171, - "end": 8220, - "loc": { - "start": { - "line": 1, - "column": 8171 - }, - "end": { - "line": 1, - "column": 8220 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8220, - "end": 8221, - "loc": { - "start": { - "line": 1, - "column": 8220 - }, - "end": { - "line": 1, - "column": 8221 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 8222, - "end": 8232, - "loc": { - "start": { - "line": 1, - "column": 8222 - }, - "end": { - "line": 1, - "column": 8232 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8232, - "end": 8233, - "loc": { - "start": { - "line": 1, - "column": 8232 - }, - "end": { - "line": 1, - "column": 8233 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8233, - "end": 8234, - "loc": { - "start": { - "line": 1, - "column": 8233 - }, - "end": { - "line": 1, - "column": 8234 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8235, - "end": 8236, - "loc": { - "start": { - "line": 1, - "column": 8235 - }, - "end": { - "line": 1, - "column": 8236 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~urierror", - "start": 8236, - "end": 8284, - "loc": { - "start": { - "line": 1, - "column": 8236 - }, - "end": { - "line": 1, - "column": 8284 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8284, - "end": 8285, - "loc": { - "start": { - "line": 1, - "column": 8284 - }, - "end": { - "line": 1, - "column": 8285 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError", - "start": 8286, - "end": 8377, - "loc": { - "start": { - "line": 1, - "column": 8286 - }, - "end": { - "line": 1, - "column": 8377 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8377, - "end": 8378, - "loc": { - "start": { - "line": 1, - "column": 8377 - }, - "end": { - "line": 1, - "column": 8378 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~URIError", - "start": 8379, - "end": 8427, - "loc": { - "start": { - "line": 1, - "column": 8379 - }, - "end": { - "line": 1, - "column": 8427 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8427, - "end": 8428, - "loc": { - "start": { - "line": 1, - "column": 8427 - }, - "end": { - "line": 1, - "column": 8428 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 8429, - "end": 8439, - "loc": { - "start": { - "line": 1, - "column": 8429 - }, - "end": { - "line": 1, - "column": 8439 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8439, - "end": 8440, - "loc": { - "start": { - "line": 1, - "column": 8439 - }, - "end": { - "line": 1, - "column": 8440 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8440, - "end": 8441, - "loc": { - "start": { - "line": 1, - "column": 8440 - }, - "end": { - "line": 1, - "column": 8441 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8442, - "end": 8443, - "loc": { - "start": { - "line": 1, - "column": 8442 - }, - "end": { - "line": 1, - "column": 8443 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~uint16array", - "start": 8443, - "end": 8494, - "loc": { - "start": { - "line": 1, - "column": 8443 - }, - "end": { - "line": 1, - "column": 8494 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8494, - "end": 8495, - "loc": { - "start": { - "line": 1, - "column": 8494 - }, - "end": { - "line": 1, - "column": 8495 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array", - "start": 8496, - "end": 8590, - "loc": { - "start": { - "line": 1, - "column": 8496 - }, - "end": { - "line": 1, - "column": 8590 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8590, - "end": 8591, - "loc": { - "start": { - "line": 1, - "column": 8590 - }, - "end": { - "line": 1, - "column": 8591 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array", - "start": 8592, - "end": 8643, - "loc": { - "start": { - "line": 1, - "column": 8592 - }, - "end": { - "line": 1, - "column": 8643 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8643, - "end": 8644, - "loc": { - "start": { - "line": 1, - "column": 8643 - }, - "end": { - "line": 1, - "column": 8644 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 8645, - "end": 8655, - "loc": { - "start": { - "line": 1, - "column": 8645 - }, - "end": { - "line": 1, - "column": 8655 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8655, - "end": 8656, - "loc": { - "start": { - "line": 1, - "column": 8655 - }, - "end": { - "line": 1, - "column": 8656 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8656, - "end": 8657, - "loc": { - "start": { - "line": 1, - "column": 8656 - }, - "end": { - "line": 1, - "column": 8657 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8658, - "end": 8659, - "loc": { - "start": { - "line": 1, - "column": 8658 - }, - "end": { - "line": 1, - "column": 8659 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~uint32array", - "start": 8659, - "end": 8710, - "loc": { - "start": { - "line": 1, - "column": 8659 - }, - "end": { - "line": 1, - "column": 8710 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8710, - "end": 8711, - "loc": { - "start": { - "line": 1, - "column": 8710 - }, - "end": { - "line": 1, - "column": 8711 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array", - "start": 8712, - "end": 8806, - "loc": { - "start": { - "line": 1, - "column": 8712 - }, - "end": { - "line": 1, - "column": 8806 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8806, - "end": 8807, - "loc": { - "start": { - "line": 1, - "column": 8806 - }, - "end": { - "line": 1, - "column": 8807 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array", - "start": 8808, - "end": 8859, - "loc": { - "start": { - "line": 1, - "column": 8808 - }, - "end": { - "line": 1, - "column": 8859 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8859, - "end": 8860, - "loc": { - "start": { - "line": 1, - "column": 8859 - }, - "end": { - "line": 1, - "column": 8860 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 8861, - "end": 8871, - "loc": { - "start": { - "line": 1, - "column": 8861 - }, - "end": { - "line": 1, - "column": 8871 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8871, - "end": 8872, - "loc": { - "start": { - "line": 1, - "column": 8871 - }, - "end": { - "line": 1, - "column": 8872 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8872, - "end": 8873, - "loc": { - "start": { - "line": 1, - "column": 8872 - }, - "end": { - "line": 1, - "column": 8873 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8874, - "end": 8875, - "loc": { - "start": { - "line": 1, - "column": 8874 - }, - "end": { - "line": 1, - "column": 8875 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~uint8array", - "start": 8875, - "end": 8925, - "loc": { - "start": { - "line": 1, - "column": 8875 - }, - "end": { - "line": 1, - "column": 8925 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8925, - "end": 8926, - "loc": { - "start": { - "line": 1, - "column": 8925 - }, - "end": { - "line": 1, - "column": 8926 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array", - "start": 8927, - "end": 9020, - "loc": { - "start": { - "line": 1, - "column": 8927 - }, - "end": { - "line": 1, - "column": 9020 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9020, - "end": 9021, - "loc": { - "start": { - "line": 1, - "column": 9020 - }, - "end": { - "line": 1, - "column": 9021 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array", - "start": 9022, - "end": 9072, - "loc": { - "start": { - "line": 1, - "column": 9022 - }, - "end": { - "line": 1, - "column": 9072 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9072, - "end": 9073, - "loc": { - "start": { - "line": 1, - "column": 9072 - }, - "end": { - "line": 1, - "column": 9073 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 9074, - "end": 9084, - "loc": { - "start": { - "line": 1, - "column": 9074 - }, - "end": { - "line": 1, - "column": 9084 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9084, - "end": 9085, - "loc": { - "start": { - "line": 1, - "column": 9084 - }, - "end": { - "line": 1, - "column": 9085 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9085, - "end": 9086, - "loc": { - "start": { - "line": 1, - "column": 9085 - }, - "end": { - "line": 1, - "column": 9086 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9087, - "end": 9088, - "loc": { - "start": { - "line": 1, - "column": 9087 - }, - "end": { - "line": 1, - "column": 9088 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~uint8clampedarray", - "start": 9088, - "end": 9145, - "loc": { - "start": { - "line": 1, - "column": 9088 - }, - "end": { - "line": 1, - "column": 9145 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9145, - "end": 9146, - "loc": { - "start": { - "line": 1, - "column": 9145 - }, - "end": { - "line": 1, - "column": 9146 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray", - "start": 9147, - "end": 9247, - "loc": { - "start": { - "line": 1, - "column": 9147 - }, - "end": { - "line": 1, - "column": 9247 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9247, - "end": 9248, - "loc": { - "start": { - "line": 1, - "column": 9247 - }, - "end": { - "line": 1, - "column": 9248 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray", - "start": 9249, - "end": 9306, - "loc": { - "start": { - "line": 1, - "column": 9249 - }, - "end": { - "line": 1, - "column": 9306 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9306, - "end": 9307, - "loc": { - "start": { - "line": 1, - "column": 9306 - }, - "end": { - "line": 1, - "column": 9307 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 9308, - "end": 9318, - "loc": { - "start": { - "line": 1, - "column": 9308 - }, - "end": { - "line": 1, - "column": 9318 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9318, - "end": 9319, - "loc": { - "start": { - "line": 1, - "column": 9318 - }, - "end": { - "line": 1, - "column": 9319 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9319, - "end": 9320, - "loc": { - "start": { - "line": 1, - "column": 9319 - }, - "end": { - "line": 1, - "column": 9320 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9321, - "end": 9322, - "loc": { - "start": { - "line": 1, - "column": 9321 - }, - "end": { - "line": 1, - "column": 9322 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~weakmap", - "start": 9322, - "end": 9369, - "loc": { - "start": { - "line": 1, - "column": 9322 - }, - "end": { - "line": 1, - "column": 9369 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9369, - "end": 9370, - "loc": { - "start": { - "line": 1, - "column": 9369 - }, - "end": { - "line": 1, - "column": 9370 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", - "start": 9371, - "end": 9461, - "loc": { - "start": { - "line": 1, - "column": 9371 - }, - "end": { - "line": 1, - "column": 9461 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9461, - "end": 9462, - "loc": { - "start": { - "line": 1, - "column": 9461 - }, - "end": { - "line": 1, - "column": 9462 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~WeakMap", - "start": 9463, - "end": 9510, - "loc": { - "start": { - "line": 1, - "column": 9463 - }, - "end": { - "line": 1, - "column": 9510 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9510, - "end": 9511, - "loc": { - "start": { - "line": 1, - "column": 9510 - }, - "end": { - "line": 1, - "column": 9511 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 9512, - "end": 9522, - "loc": { - "start": { - "line": 1, - "column": 9512 - }, - "end": { - "line": 1, - "column": 9522 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9522, - "end": 9523, - "loc": { - "start": { - "line": 1, - "column": 9522 - }, - "end": { - "line": 1, - "column": 9523 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9523, - "end": 9524, - "loc": { - "start": { - "line": 1, - "column": 9523 - }, - "end": { - "line": 1, - "column": 9524 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9525, - "end": 9526, - "loc": { - "start": { - "line": 1, - "column": 9525 - }, - "end": { - "line": 1, - "column": 9526 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~weakset", - "start": 9526, - "end": 9573, - "loc": { - "start": { - "line": 1, - "column": 9526 - }, - "end": { - "line": 1, - "column": 9573 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9573, - "end": 9574, - "loc": { - "start": { - "line": 1, - "column": 9573 - }, - "end": { - "line": 1, - "column": 9574 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", - "start": 9575, - "end": 9665, - "loc": { - "start": { - "line": 1, - "column": 9575 - }, - "end": { - "line": 1, - "column": 9665 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9665, - "end": 9666, - "loc": { - "start": { - "line": 1, - "column": 9665 - }, - "end": { - "line": 1, - "column": 9666 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~WeakSet", - "start": 9667, - "end": 9714, - "loc": { - "start": { - "line": 1, - "column": 9667 - }, - "end": { - "line": 1, - "column": 9714 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9714, - "end": 9715, - "loc": { - "start": { - "line": 1, - "column": 9714 - }, - "end": { - "line": 1, - "column": 9715 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 9716, - "end": 9726, - "loc": { - "start": { - "line": 1, - "column": 9716 - }, - "end": { - "line": 1, - "column": 9726 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9726, - "end": 9727, - "loc": { - "start": { - "line": 1, - "column": 9726 - }, - "end": { - "line": 1, - "column": 9727 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9727, - "end": 9728, - "loc": { - "start": { - "line": 1, - "column": 9727 - }, - "end": { - "line": 1, - "column": 9728 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9729, - "end": 9730, - "loc": { - "start": { - "line": 1, - "column": 9729 - }, - "end": { - "line": 1, - "column": 9730 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~boolean", - "start": 9730, - "end": 9777, - "loc": { - "start": { - "line": 1, - "column": 9730 - }, - "end": { - "line": 1, - "column": 9777 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9777, - "end": 9778, - "loc": { - "start": { - "line": 1, - "column": 9777 - }, - "end": { - "line": 1, - "column": 9778 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "start": 9779, - "end": 9869, - "loc": { - "start": { - "line": 1, - "column": 9779 - }, - "end": { - "line": 1, - "column": 9869 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9869, - "end": 9870, - "loc": { - "start": { - "line": 1, - "column": 9869 - }, - "end": { - "line": 1, - "column": 9870 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~boolean", - "start": 9871, - "end": 9918, - "loc": { - "start": { - "line": 1, - "column": 9871 - }, - "end": { - "line": 1, - "column": 9918 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9918, - "end": 9919, - "loc": { - "start": { - "line": 1, - "column": 9918 - }, - "end": { - "line": 1, - "column": 9919 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 9920, - "end": 9930, - "loc": { - "start": { - "line": 1, - "column": 9920 - }, - "end": { - "line": 1, - "column": 9930 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9930, - "end": 9931, - "loc": { - "start": { - "line": 1, - "column": 9930 - }, - "end": { - "line": 1, - "column": 9931 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9931, - "end": 9932, - "loc": { - "start": { - "line": 1, - "column": 9931 - }, - "end": { - "line": 1, - "column": 9932 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9933, - "end": 9934, - "loc": { - "start": { - "line": 1, - "column": 9933 - }, - "end": { - "line": 1, - "column": 9934 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~function", - "start": 9934, - "end": 9982, - "loc": { - "start": { - "line": 1, - "column": 9934 - }, - "end": { - "line": 1, - "column": 9982 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9982, - "end": 9983, - "loc": { - "start": { - "line": 1, - "column": 9982 - }, - "end": { - "line": 1, - "column": 9983 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "start": 9984, - "end": 10075, - "loc": { - "start": { - "line": 1, - "column": 9984 - }, - "end": { - "line": 1, - "column": 10075 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10075, - "end": 10076, - "loc": { - "start": { - "line": 1, - "column": 10075 - }, - "end": { - "line": 1, - "column": 10076 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~function", - "start": 10077, - "end": 10125, - "loc": { - "start": { - "line": 1, - "column": 10077 - }, - "end": { - "line": 1, - "column": 10125 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10125, - "end": 10126, - "loc": { - "start": { - "line": 1, - "column": 10125 - }, - "end": { - "line": 1, - "column": 10126 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 10127, - "end": 10137, - "loc": { - "start": { - "line": 1, - "column": 10127 - }, - "end": { - "line": 1, - "column": 10137 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10137, - "end": 10138, - "loc": { - "start": { - "line": 1, - "column": 10137 - }, - "end": { - "line": 1, - "column": 10138 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10138, - "end": 10139, - "loc": { - "start": { - "line": 1, - "column": 10138 - }, - "end": { - "line": 1, - "column": 10139 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10140, - "end": 10141, - "loc": { - "start": { - "line": 1, - "column": 10140 - }, - "end": { - "line": 1, - "column": 10141 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~null", - "start": 10141, - "end": 10185, - "loc": { - "start": { - "line": 1, - "column": 10141 - }, - "end": { - "line": 1, - "column": 10185 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10185, - "end": 10186, - "loc": { - "start": { - "line": 1, - "column": 10185 - }, - "end": { - "line": 1, - "column": 10186 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null", - "start": 10187, - "end": 10274, - "loc": { - "start": { - "line": 1, - "column": 10187 - }, - "end": { - "line": 1, - "column": 10274 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10274, - "end": 10275, - "loc": { - "start": { - "line": 1, - "column": 10274 - }, - "end": { - "line": 1, - "column": 10275 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~null", - "start": 10276, - "end": 10320, - "loc": { - "start": { - "line": 1, - "column": 10276 - }, - "end": { - "line": 1, - "column": 10320 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10320, - "end": 10321, - "loc": { - "start": { - "line": 1, - "column": 10320 - }, - "end": { - "line": 1, - "column": 10321 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 10322, - "end": 10332, - "loc": { - "start": { - "line": 1, - "column": 10322 - }, - "end": { - "line": 1, - "column": 10332 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10332, - "end": 10333, - "loc": { - "start": { - "line": 1, - "column": 10332 - }, - "end": { - "line": 1, - "column": 10333 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10333, - "end": 10334, - "loc": { - "start": { - "line": 1, - "column": 10333 - }, - "end": { - "line": 1, - "column": 10334 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10335, - "end": 10336, - "loc": { - "start": { - "line": 1, - "column": 10335 - }, - "end": { - "line": 1, - "column": 10336 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~number", - "start": 10336, - "end": 10382, - "loc": { - "start": { - "line": 1, - "column": 10336 - }, - "end": { - "line": 1, - "column": 10382 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10382, - "end": 10383, - "loc": { - "start": { - "line": 1, - "column": 10382 - }, - "end": { - "line": 1, - "column": 10383 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "start": 10384, - "end": 10473, - "loc": { - "start": { - "line": 1, - "column": 10384 - }, - "end": { - "line": 1, - "column": 10473 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10473, - "end": 10474, - "loc": { - "start": { - "line": 1, - "column": 10473 - }, - "end": { - "line": 1, - "column": 10474 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~number", - "start": 10475, - "end": 10521, - "loc": { - "start": { - "line": 1, - "column": 10475 - }, - "end": { - "line": 1, - "column": 10521 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10521, - "end": 10522, - "loc": { - "start": { - "line": 1, - "column": 10521 - }, - "end": { - "line": 1, - "column": 10522 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 10523, - "end": 10533, - "loc": { - "start": { - "line": 1, - "column": 10523 - }, - "end": { - "line": 1, - "column": 10533 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10533, - "end": 10534, - "loc": { - "start": { - "line": 1, - "column": 10533 - }, - "end": { - "line": 1, - "column": 10534 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10534, - "end": 10535, - "loc": { - "start": { - "line": 1, - "column": 10534 - }, - "end": { - "line": 1, - "column": 10535 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10536, - "end": 10537, - "loc": { - "start": { - "line": 1, - "column": 10536 - }, - "end": { - "line": 1, - "column": 10537 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~object", - "start": 10537, - "end": 10583, - "loc": { - "start": { - "line": 1, - "column": 10537 - }, - "end": { - "line": 1, - "column": 10583 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10583, - "end": 10584, - "loc": { - "start": { - "line": 1, - "column": 10583 - }, - "end": { - "line": 1, - "column": 10584 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "start": 10585, - "end": 10674, - "loc": { - "start": { - "line": 1, - "column": 10585 - }, - "end": { - "line": 1, - "column": 10674 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10674, - "end": 10675, - "loc": { - "start": { - "line": 1, - "column": 10674 - }, - "end": { - "line": 1, - "column": 10675 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~object", - "start": 10676, - "end": 10722, - "loc": { - "start": { - "line": 1, - "column": 10676 - }, - "end": { - "line": 1, - "column": 10722 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10722, - "end": 10723, - "loc": { - "start": { - "line": 1, - "column": 10722 - }, - "end": { - "line": 1, - "column": 10723 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 10724, - "end": 10734, - "loc": { - "start": { - "line": 1, - "column": 10724 - }, - "end": { - "line": 1, - "column": 10734 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10734, - "end": 10735, - "loc": { - "start": { - "line": 1, - "column": 10734 - }, - "end": { - "line": 1, - "column": 10735 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10735, - "end": 10736, - "loc": { - "start": { - "line": 1, - "column": 10735 - }, - "end": { - "line": 1, - "column": 10736 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10737, - "end": 10738, - "loc": { - "start": { - "line": 1, - "column": 10737 - }, - "end": { - "line": 1, - "column": 10738 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~string", - "start": 10738, - "end": 10784, - "loc": { - "start": { - "line": 1, - "column": 10738 - }, - "end": { - "line": 1, - "column": 10784 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10784, - "end": 10785, - "loc": { - "start": { - "line": 1, - "column": 10784 - }, - "end": { - "line": 1, - "column": 10785 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "start": 10786, - "end": 10875, - "loc": { - "start": { - "line": 1, - "column": 10786 - }, - "end": { - "line": 1, - "column": 10875 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10875, - "end": 10876, - "loc": { - "start": { - "line": 1, - "column": 10875 - }, - "end": { - "line": 1, - "column": 10876 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~string", - "start": 10877, - "end": 10923, - "loc": { - "start": { - "line": 1, - "column": 10877 - }, - "end": { - "line": 1, - "column": 10923 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10923, - "end": 10924, - "loc": { - "start": { - "line": 1, - "column": 10923 - }, - "end": { - "line": 1, - "column": 10924 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 10925, - "end": 10935, - "loc": { - "start": { - "line": 1, - "column": 10925 - }, - "end": { - "line": 1, - "column": 10935 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10935, - "end": 10936, - "loc": { - "start": { - "line": 1, - "column": 10935 - }, - "end": { - "line": 1, - "column": 10936 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10936, - "end": 10937, - "loc": { - "start": { - "line": 1, - "column": 10936 - }, - "end": { - "line": 1, - "column": 10937 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10938, - "end": 10939, - "loc": { - "start": { - "line": 1, - "column": 10938 - }, - "end": { - "line": 1, - "column": 10939 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/ecmascriptexternal.js~undefined", - "start": 10939, - "end": 10988, - "loc": { - "start": { - "line": 1, - "column": 10939 - }, - "end": { - "line": 1, - "column": 10988 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10988, - "end": 10989, - "loc": { - "start": { - "line": 1, - "column": 10988 - }, - "end": { - "line": 1, - "column": 10989 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", - "start": 10990, - "end": 11082, - "loc": { - "start": { - "line": 1, - "column": 10990 - }, - "end": { - "line": 1, - "column": 11082 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11082, - "end": 11083, - "loc": { - "start": { - "line": 1, - "column": 11082 - }, - "end": { - "line": 1, - "column": 11083 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/ECMAScriptExternal.js~undefined", - "start": 11084, - "end": 11133, - "loc": { - "start": { - "line": 1, - "column": 11084 - }, - "end": { - "line": 1, - "column": 11133 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11133, - "end": 11134, - "loc": { - "start": { - "line": 1, - "column": 11133 - }, - "end": { - "line": 1, - "column": 11134 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 11135, - "end": 11145, - "loc": { - "start": { - "line": 1, - "column": 11135 - }, - "end": { - "line": 1, - "column": 11145 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11145, - "end": 11146, - "loc": { - "start": { - "line": 1, - "column": 11145 - }, - "end": { - "line": 1, - "column": 11146 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11146, - "end": 11147, - "loc": { - "start": { - "line": 1, - "column": 11146 - }, - "end": { - "line": 1, - "column": 11147 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11148, - "end": 11149, - "loc": { - "start": { - "line": 1, - "column": 11148 - }, - "end": { - "line": 1, - "column": 11149 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~audiocontext", - "start": 11149, - "end": 11197, - "loc": { - "start": { - "line": 1, - "column": 11149 - }, - "end": { - "line": 1, - "column": 11197 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11197, - "end": 11198, - "loc": { - "start": { - "line": 1, - "column": 11197 - }, - "end": { - "line": 1, - "column": 11198 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en/docs/Web/API/AudioContext", - "start": 11199, - "end": 11259, - "loc": { - "start": { - "line": 1, - "column": 11199 - }, - "end": { - "line": 1, - "column": 11259 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11259, - "end": 11260, - "loc": { - "start": { - "line": 1, - "column": 11259 - }, - "end": { - "line": 1, - "column": 11260 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~AudioContext", - "start": 11261, - "end": 11309, - "loc": { - "start": { - "line": 1, - "column": 11261 - }, - "end": { - "line": 1, - "column": 11309 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11309, - "end": 11310, - "loc": { - "start": { - "line": 1, - "column": 11309 - }, - "end": { - "line": 1, - "column": 11310 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 11311, - "end": 11321, - "loc": { - "start": { - "line": 1, - "column": 11311 - }, - "end": { - "line": 1, - "column": 11321 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11321, - "end": 11322, - "loc": { - "start": { - "line": 1, - "column": 11321 - }, - "end": { - "line": 1, - "column": 11322 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11322, - "end": 11323, - "loc": { - "start": { - "line": 1, - "column": 11322 - }, - "end": { - "line": 1, - "column": 11323 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11324, - "end": 11325, - "loc": { - "start": { - "line": 1, - "column": 11324 - }, - "end": { - "line": 1, - "column": 11325 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~canvasrenderingcontext2d", - "start": 11325, - "end": 11385, - "loc": { - "start": { - "line": 1, - "column": 11325 - }, - "end": { - "line": 1, - "column": 11385 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11385, - "end": 11386, - "loc": { - "start": { - "line": 1, - "column": 11385 - }, - "end": { - "line": 1, - "column": 11386 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D", - "start": 11387, - "end": 11462, - "loc": { - "start": { - "line": 1, - "column": 11387 - }, - "end": { - "line": 1, - "column": 11462 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11462, - "end": 11463, - "loc": { - "start": { - "line": 1, - "column": 11462 - }, - "end": { - "line": 1, - "column": 11463 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D", - "start": 11464, - "end": 11524, - "loc": { - "start": { - "line": 1, - "column": 11464 - }, - "end": { - "line": 1, - "column": 11524 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11524, - "end": 11525, - "loc": { - "start": { - "line": 1, - "column": 11524 - }, - "end": { - "line": 1, - "column": 11525 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 11526, - "end": 11536, - "loc": { - "start": { - "line": 1, - "column": 11526 - }, - "end": { - "line": 1, - "column": 11536 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11536, - "end": 11537, - "loc": { - "start": { - "line": 1, - "column": 11536 - }, - "end": { - "line": 1, - "column": 11537 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11537, - "end": 11538, - "loc": { - "start": { - "line": 1, - "column": 11537 - }, - "end": { - "line": 1, - "column": 11538 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11539, - "end": 11540, - "loc": { - "start": { - "line": 1, - "column": 11539 - }, - "end": { - "line": 1, - "column": 11540 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~documentfragment", - "start": 11540, - "end": 11592, - "loc": { - "start": { - "line": 1, - "column": 11540 - }, - "end": { - "line": 1, - "column": 11592 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11592, - "end": 11593, - "loc": { - "start": { - "line": 1, - "column": 11592 - }, - "end": { - "line": 1, - "column": 11593 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment", - "start": 11594, - "end": 11661, - "loc": { - "start": { - "line": 1, - "column": 11594 - }, - "end": { - "line": 1, - "column": 11661 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11661, - "end": 11662, - "loc": { - "start": { - "line": 1, - "column": 11661 - }, - "end": { - "line": 1, - "column": 11662 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~DocumentFragment", - "start": 11663, - "end": 11715, - "loc": { - "start": { - "line": 1, - "column": 11663 - }, - "end": { - "line": 1, - "column": 11715 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11715, - "end": 11716, - "loc": { - "start": { - "line": 1, - "column": 11715 - }, - "end": { - "line": 1, - "column": 11716 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 11717, - "end": 11727, - "loc": { - "start": { - "line": 1, - "column": 11717 - }, - "end": { - "line": 1, - "column": 11727 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11727, - "end": 11728, - "loc": { - "start": { - "line": 1, - "column": 11727 - }, - "end": { - "line": 1, - "column": 11728 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11728, - "end": 11729, - "loc": { - "start": { - "line": 1, - "column": 11728 - }, - "end": { - "line": 1, - "column": 11729 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11730, - "end": 11731, - "loc": { - "start": { - "line": 1, - "column": 11730 - }, - "end": { - "line": 1, - "column": 11731 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~element", - "start": 11731, - "end": 11774, - "loc": { - "start": { - "line": 1, - "column": 11731 - }, - "end": { - "line": 1, - "column": 11774 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11774, - "end": 11775, - "loc": { - "start": { - "line": 1, - "column": 11774 - }, - "end": { - "line": 1, - "column": 11775 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Element", - "start": 11776, - "end": 11834, - "loc": { - "start": { - "line": 1, - "column": 11776 - }, - "end": { - "line": 1, - "column": 11834 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11834, - "end": 11835, - "loc": { - "start": { - "line": 1, - "column": 11834 - }, - "end": { - "line": 1, - "column": 11835 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~Element", - "start": 11836, - "end": 11879, - "loc": { - "start": { - "line": 1, - "column": 11836 - }, - "end": { - "line": 1, - "column": 11879 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11879, - "end": 11880, - "loc": { - "start": { - "line": 1, - "column": 11879 - }, - "end": { - "line": 1, - "column": 11880 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 11881, - "end": 11891, - "loc": { - "start": { - "line": 1, - "column": 11881 - }, - "end": { - "line": 1, - "column": 11891 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11891, - "end": 11892, - "loc": { - "start": { - "line": 1, - "column": 11891 - }, - "end": { - "line": 1, - "column": 11892 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11892, - "end": 11893, - "loc": { - "start": { - "line": 1, - "column": 11892 - }, - "end": { - "line": 1, - "column": 11893 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11894, - "end": 11895, - "loc": { - "start": { - "line": 1, - "column": 11894 - }, - "end": { - "line": 1, - "column": 11895 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~event", - "start": 11895, - "end": 11936, - "loc": { - "start": { - "line": 1, - "column": 11895 - }, - "end": { - "line": 1, - "column": 11936 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11936, - "end": 11937, - "loc": { - "start": { - "line": 1, - "column": 11936 - }, - "end": { - "line": 1, - "column": 11937 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Event", - "start": 11938, - "end": 11994, - "loc": { - "start": { - "line": 1, - "column": 11938 - }, - "end": { - "line": 1, - "column": 11994 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11994, - "end": 11995, - "loc": { - "start": { - "line": 1, - "column": 11994 - }, - "end": { - "line": 1, - "column": 11995 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~Event", - "start": 11996, - "end": 12037, - "loc": { - "start": { - "line": 1, - "column": 11996 - }, - "end": { - "line": 1, - "column": 12037 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12037, - "end": 12038, - "loc": { - "start": { - "line": 1, - "column": 12037 - }, - "end": { - "line": 1, - "column": 12038 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 12039, - "end": 12049, - "loc": { - "start": { - "line": 1, - "column": 12039 - }, - "end": { - "line": 1, - "column": 12049 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12049, - "end": 12050, - "loc": { - "start": { - "line": 1, - "column": 12049 - }, - "end": { - "line": 1, - "column": 12050 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12050, - "end": 12051, - "loc": { - "start": { - "line": 1, - "column": 12050 - }, - "end": { - "line": 1, - "column": 12051 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12052, - "end": 12053, - "loc": { - "start": { - "line": 1, - "column": 12052 - }, - "end": { - "line": 1, - "column": 12053 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~node", - "start": 12053, - "end": 12093, - "loc": { - "start": { - "line": 1, - "column": 12053 - }, - "end": { - "line": 1, - "column": 12093 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12093, - "end": 12094, - "loc": { - "start": { - "line": 1, - "column": 12093 - }, - "end": { - "line": 1, - "column": 12094 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/Node", - "start": 12095, - "end": 12150, - "loc": { - "start": { - "line": 1, - "column": 12095 - }, - "end": { - "line": 1, - "column": 12150 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12150, - "end": 12151, - "loc": { - "start": { - "line": 1, - "column": 12150 - }, - "end": { - "line": 1, - "column": 12151 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~Node", - "start": 12152, - "end": 12192, - "loc": { - "start": { - "line": 1, - "column": 12152 - }, - "end": { - "line": 1, - "column": 12192 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12192, - "end": 12193, - "loc": { - "start": { - "line": 1, - "column": 12192 - }, - "end": { - "line": 1, - "column": 12193 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 12194, - "end": 12204, - "loc": { - "start": { - "line": 1, - "column": 12194 - }, - "end": { - "line": 1, - "column": 12204 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12204, - "end": 12205, - "loc": { - "start": { - "line": 1, - "column": 12204 - }, - "end": { - "line": 1, - "column": 12205 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12205, - "end": 12206, - "loc": { - "start": { - "line": 1, - "column": 12205 - }, - "end": { - "line": 1, - "column": 12206 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12207, - "end": 12208, - "loc": { - "start": { - "line": 1, - "column": 12207 - }, - "end": { - "line": 1, - "column": 12208 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~nodelist", - "start": 12208, - "end": 12252, - "loc": { - "start": { - "line": 1, - "column": 12208 - }, - "end": { - "line": 1, - "column": 12252 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12252, - "end": 12253, - "loc": { - "start": { - "line": 1, - "column": 12252 - }, - "end": { - "line": 1, - "column": 12253 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", - "start": 12254, - "end": 12313, - "loc": { - "start": { - "line": 1, - "column": 12254 - }, - "end": { - "line": 1, - "column": 12313 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12313, - "end": 12314, - "loc": { - "start": { - "line": 1, - "column": 12313 - }, - "end": { - "line": 1, - "column": 12314 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~NodeList", - "start": 12315, - "end": 12359, - "loc": { - "start": { - "line": 1, - "column": 12315 - }, - "end": { - "line": 1, - "column": 12359 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12359, - "end": 12360, - "loc": { - "start": { - "line": 1, - "column": 12359 - }, - "end": { - "line": 1, - "column": 12360 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 12361, - "end": 12371, - "loc": { - "start": { - "line": 1, - "column": 12361 - }, - "end": { - "line": 1, - "column": 12371 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12371, - "end": 12372, - "loc": { - "start": { - "line": 1, - "column": 12371 - }, - "end": { - "line": 1, - "column": 12372 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12372, - "end": 12373, - "loc": { - "start": { - "line": 1, - "column": 12372 - }, - "end": { - "line": 1, - "column": 12373 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12374, - "end": 12375, - "loc": { - "start": { - "line": 1, - "column": 12374 - }, - "end": { - "line": 1, - "column": 12375 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "builtinexternal/webapiexternal.js~xmlhttprequest", - "start": 12375, - "end": 12425, - "loc": { - "start": { - "line": 1, - "column": 12375 - }, - "end": { - "line": 1, - "column": 12425 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12425, - "end": 12426, - "loc": { - "start": { - "line": 1, - "column": 12425 - }, - "end": { - "line": 1, - "column": 12426 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest", - "start": 12427, - "end": 12489, - "loc": { - "start": { - "line": 1, - "column": 12427 - }, - "end": { - "line": 1, - "column": 12489 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12489, - "end": 12490, - "loc": { - "start": { - "line": 1, - "column": 12489 - }, - "end": { - "line": 1, - "column": 12490 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest", - "start": 12491, - "end": 12541, - "loc": { - "start": { - "line": 1, - "column": 12491 - }, - "end": { - "line": 1, - "column": 12541 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12541, - "end": 12542, - "loc": { - "start": { - "line": 1, - "column": 12541 - }, - "end": { - "line": 1, - "column": 12542 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "external", - "start": 12543, - "end": 12553, - "loc": { - "start": { - "line": 1, - "column": 12543 - }, - "end": { - "line": 1, - "column": 12553 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12553, - "end": 12554, - "loc": { - "start": { - "line": 1, - "column": 12553 - }, - "end": { - "line": 1, - "column": 12554 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12554, - "end": 12555, - "loc": { - "start": { - "line": 1, - "column": 12554 - }, - "end": { - "line": 1, - "column": 12555 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12556, - "end": 12557, - "loc": { - "start": { - "line": 1, - "column": 12556 - }, - "end": { - "line": 1, - "column": 12557 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/inherited-summary.js", - "start": 12557, - "end": 12611, - "loc": { - "start": { - "line": 1, - "column": 12557 - }, - "end": { - "line": 1, - "column": 12611 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12611, - "end": 12612, - "loc": { - "start": { - "line": 1, - "column": 12611 - }, - "end": { - "line": 1, - "column": 12612 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/inherited-summary.js.html", - "start": 12613, - "end": 12677, - "loc": { - "start": { - "line": 1, - "column": 12613 - }, - "end": { - "line": 1, - "column": 12677 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12677, - "end": 12678, - "loc": { - "start": { - "line": 1, - "column": 12677 - }, - "end": { - "line": 1, - "column": 12678 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/inherited-summary.js", - "start": 12679, - "end": 12733, - "loc": { - "start": { - "line": 1, - "column": 12679 - }, - "end": { - "line": 1, - "column": 12733 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12733, - "end": 12734, - "loc": { - "start": { - "line": 1, - "column": 12733 - }, - "end": { - "line": 1, - "column": 12734 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 12735, - "end": 12741, - "loc": { - "start": { - "line": 1, - "column": 12735 - }, - "end": { - "line": 1, - "column": 12741 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12741, - "end": 12742, - "loc": { - "start": { - "line": 1, - "column": 12741 - }, - "end": { - "line": 1, - "column": 12742 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12742, - "end": 12743, - "loc": { - "start": { - "line": 1, - "column": 12742 - }, - "end": { - "line": 1, - "column": 12743 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12744, - "end": 12745, - "loc": { - "start": { - "line": 1, - "column": 12744 - }, - "end": { - "line": 1, - "column": 12745 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/inner-link.js", - "start": 12745, - "end": 12792, - "loc": { - "start": { - "line": 1, - "column": 12745 - }, - "end": { - "line": 1, - "column": 12792 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12792, - "end": 12793, - "loc": { - "start": { - "line": 1, - "column": 12792 - }, - "end": { - "line": 1, - "column": 12793 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/inner-link.js.html", - "start": 12794, - "end": 12851, - "loc": { - "start": { - "line": 1, - "column": 12794 - }, - "end": { - "line": 1, - "column": 12851 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12851, - "end": 12852, - "loc": { - "start": { - "line": 1, - "column": 12851 - }, - "end": { - "line": 1, - "column": 12852 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/inner-link.js", - "start": 12853, - "end": 12900, - "loc": { - "start": { - "line": 1, - "column": 12853 - }, - "end": { - "line": 1, - "column": 12900 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12900, - "end": 12901, - "loc": { - "start": { - "line": 1, - "column": 12900 - }, - "end": { - "line": 1, - "column": 12901 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 12902, - "end": 12908, - "loc": { - "start": { - "line": 1, - "column": 12902 - }, - "end": { - "line": 1, - "column": 12908 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12908, - "end": 12909, - "loc": { - "start": { - "line": 1, - "column": 12908 - }, - "end": { - "line": 1, - "column": 12909 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12909, - "end": 12910, - "loc": { - "start": { - "line": 1, - "column": 12909 - }, - "end": { - "line": 1, - "column": 12910 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12911, - "end": 12912, - "loc": { - "start": { - "line": 1, - "column": 12911 - }, - "end": { - "line": 1, - "column": 12912 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/manual.js", - "start": 12912, - "end": 12955, - "loc": { - "start": { - "line": 1, - "column": 12912 - }, - "end": { - "line": 1, - "column": 12955 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12955, - "end": 12956, - "loc": { - "start": { - "line": 1, - "column": 12955 - }, - "end": { - "line": 1, - "column": 12956 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/manual.js.html", - "start": 12957, - "end": 13010, - "loc": { - "start": { - "line": 1, - "column": 12957 - }, - "end": { - "line": 1, - "column": 13010 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13010, - "end": 13011, - "loc": { - "start": { - "line": 1, - "column": 13010 - }, - "end": { - "line": 1, - "column": 13011 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/manual.js", - "start": 13012, - "end": 13055, - "loc": { - "start": { - "line": 1, - "column": 13012 - }, - "end": { - "line": 1, - "column": 13055 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13055, - "end": 13056, - "loc": { - "start": { - "line": 1, - "column": 13055 - }, - "end": { - "line": 1, - "column": 13056 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13057, - "end": 13063, - "loc": { - "start": { - "line": 1, - "column": 13057 - }, - "end": { - "line": 1, - "column": 13063 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13063, - "end": 13064, - "loc": { - "start": { - "line": 1, - "column": 13063 - }, - "end": { - "line": 1, - "column": 13064 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13064, - "end": 13065, - "loc": { - "start": { - "line": 1, - "column": 13064 - }, - "end": { - "line": 1, - "column": 13065 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13066, - "end": 13067, - "loc": { - "start": { - "line": 1, - "column": 13066 - }, - "end": { - "line": 1, - "column": 13067 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/patch-for-local.js", - "start": 13067, - "end": 13119, - "loc": { - "start": { - "line": 1, - "column": 13067 - }, - "end": { - "line": 1, - "column": 13119 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13119, - "end": 13120, - "loc": { - "start": { - "line": 1, - "column": 13119 - }, - "end": { - "line": 1, - "column": 13120 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/patch-for-local.js.html", - "start": 13121, - "end": 13183, - "loc": { - "start": { - "line": 1, - "column": 13121 - }, - "end": { - "line": 1, - "column": 13183 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13183, - "end": 13184, - "loc": { - "start": { - "line": 1, - "column": 13183 - }, - "end": { - "line": 1, - "column": 13184 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/patch-for-local.js", - "start": 13185, - "end": 13237, - "loc": { - "start": { - "line": 1, - "column": 13185 - }, - "end": { - "line": 1, - "column": 13237 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13237, - "end": 13238, - "loc": { - "start": { - "line": 1, - "column": 13237 - }, - "end": { - "line": 1, - "column": 13238 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13239, - "end": 13245, - "loc": { - "start": { - "line": 1, - "column": 13239 - }, - "end": { - "line": 1, - "column": 13245 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13245, - "end": 13246, - "loc": { - "start": { - "line": 1, - "column": 13245 - }, - "end": { - "line": 1, - "column": 13246 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13246, - "end": 13247, - "loc": { - "start": { - "line": 1, - "column": 13246 - }, - "end": { - "line": 1, - "column": 13247 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13248, - "end": 13249, - "loc": { - "start": { - "line": 1, - "column": 13248 - }, - "end": { - "line": 1, - "column": 13249 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/prettify/prettify.js", - "start": 13249, - "end": 13303, - "loc": { - "start": { - "line": 1, - "column": 13249 - }, - "end": { - "line": 1, - "column": 13303 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13303, - "end": 13304, - "loc": { - "start": { - "line": 1, - "column": 13303 - }, - "end": { - "line": 1, - "column": 13304 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/prettify/prettify.js.html", - "start": 13305, - "end": 13369, - "loc": { - "start": { - "line": 1, - "column": 13305 - }, - "end": { - "line": 1, - "column": 13369 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13369, - "end": 13370, - "loc": { - "start": { - "line": 1, - "column": 13369 - }, - "end": { - "line": 1, - "column": 13370 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/prettify/prettify.js", - "start": 13371, - "end": 13425, - "loc": { - "start": { - "line": 1, - "column": 13371 - }, - "end": { - "line": 1, - "column": 13425 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13425, - "end": 13426, - "loc": { - "start": { - "line": 1, - "column": 13425 - }, - "end": { - "line": 1, - "column": 13426 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13427, - "end": 13433, - "loc": { - "start": { - "line": 1, - "column": 13427 - }, - "end": { - "line": 1, - "column": 13433 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13433, - "end": 13434, - "loc": { - "start": { - "line": 1, - "column": 13433 - }, - "end": { - "line": 1, - "column": 13434 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13434, - "end": 13435, - "loc": { - "start": { - "line": 1, - "column": 13434 - }, - "end": { - "line": 1, - "column": 13435 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13436, - "end": 13437, - "loc": { - "start": { - "line": 1, - "column": 13436 - }, - "end": { - "line": 1, - "column": 13437 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/pretty-print.js", - "start": 13437, - "end": 13486, - "loc": { - "start": { - "line": 1, - "column": 13437 - }, - "end": { - "line": 1, - "column": 13486 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13486, - "end": 13487, - "loc": { - "start": { - "line": 1, - "column": 13486 - }, - "end": { - "line": 1, - "column": 13487 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/pretty-print.js.html", - "start": 13488, - "end": 13547, - "loc": { - "start": { - "line": 1, - "column": 13488 - }, - "end": { - "line": 1, - "column": 13547 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13547, - "end": 13548, - "loc": { - "start": { - "line": 1, - "column": 13547 - }, - "end": { - "line": 1, - "column": 13548 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/pretty-print.js", - "start": 13549, - "end": 13598, - "loc": { - "start": { - "line": 1, - "column": 13549 - }, - "end": { - "line": 1, - "column": 13598 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13598, - "end": 13599, - "loc": { - "start": { - "line": 1, - "column": 13598 - }, - "end": { - "line": 1, - "column": 13599 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13600, - "end": 13606, - "loc": { - "start": { - "line": 1, - "column": 13600 - }, - "end": { - "line": 1, - "column": 13606 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13606, - "end": 13607, - "loc": { - "start": { - "line": 1, - "column": 13606 - }, - "end": { - "line": 1, - "column": 13607 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13607, - "end": 13608, - "loc": { - "start": { - "line": 1, - "column": 13607 - }, - "end": { - "line": 1, - "column": 13608 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13609, - "end": 13610, - "loc": { - "start": { - "line": 1, - "column": 13609 - }, - "end": { - "line": 1, - "column": 13610 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/search.js", - "start": 13610, - "end": 13653, - "loc": { - "start": { - "line": 1, - "column": 13610 - }, - "end": { - "line": 1, - "column": 13653 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13653, - "end": 13654, - "loc": { - "start": { - "line": 1, - "column": 13653 - }, - "end": { - "line": 1, - "column": 13654 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/search.js.html", - "start": 13655, - "end": 13708, - "loc": { - "start": { - "line": 1, - "column": 13655 - }, - "end": { - "line": 1, - "column": 13708 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13708, - "end": 13709, - "loc": { - "start": { - "line": 1, - "column": 13708 - }, - "end": { - "line": 1, - "column": 13709 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/search.js", - "start": 13710, - "end": 13753, - "loc": { - "start": { - "line": 1, - "column": 13710 - }, - "end": { - "line": 1, - "column": 13753 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13753, - "end": 13754, - "loc": { - "start": { - "line": 1, - "column": 13753 - }, - "end": { - "line": 1, - "column": 13754 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13755, - "end": 13761, - "loc": { - "start": { - "line": 1, - "column": 13755 - }, - "end": { - "line": 1, - "column": 13761 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13761, - "end": 13762, - "loc": { - "start": { - "line": 1, - "column": 13761 - }, - "end": { - "line": 1, - "column": 13762 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13762, - "end": 13763, - "loc": { - "start": { - "line": 1, - "column": 13762 - }, - "end": { - "line": 1, - "column": 13763 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13764, - "end": 13765, - "loc": { - "start": { - "line": 1, - "column": 13764 - }, - "end": { - "line": 1, - "column": 13765 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/search_index.js", - "start": 13765, - "end": 13814, - "loc": { - "start": { - "line": 1, - "column": 13765 - }, - "end": { - "line": 1, - "column": 13814 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13814, - "end": 13815, - "loc": { - "start": { - "line": 1, - "column": 13814 - }, - "end": { - "line": 1, - "column": 13815 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/search_index.js.html", - "start": 13816, - "end": 13875, - "loc": { - "start": { - "line": 1, - "column": 13816 - }, - "end": { - "line": 1, - "column": 13875 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13875, - "end": 13876, - "loc": { - "start": { - "line": 1, - "column": 13875 - }, - "end": { - "line": 1, - "column": 13876 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/search_index.js", - "start": 13877, - "end": 13926, - "loc": { - "start": { - "line": 1, - "column": 13877 - }, - "end": { - "line": 1, - "column": 13926 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13926, - "end": 13927, - "loc": { - "start": { - "line": 1, - "column": 13926 - }, - "end": { - "line": 1, - "column": 13927 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 13928, - "end": 13934, - "loc": { - "start": { - "line": 1, - "column": 13928 - }, - "end": { - "line": 1, - "column": 13934 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13934, - "end": 13935, - "loc": { - "start": { - "line": 1, - "column": 13934 - }, - "end": { - "line": 1, - "column": 13935 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13935, - "end": 13936, - "loc": { - "start": { - "line": 1, - "column": 13935 - }, - "end": { - "line": 1, - "column": 13936 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13937, - "end": 13938, - "loc": { - "start": { - "line": 1, - "column": 13937 - }, - "end": { - "line": 1, - "column": 13938 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/test-summary.js", - "start": 13938, - "end": 13987, - "loc": { - "start": { - "line": 1, - "column": 13938 - }, - "end": { - "line": 1, - "column": 13987 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13987, - "end": 13988, - "loc": { - "start": { - "line": 1, - "column": 13987 - }, - "end": { - "line": 1, - "column": 13988 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/doc/script/test-summary.js.html", - "start": 13989, - "end": 14048, - "loc": { - "start": { - "line": 1, - "column": 13989 - }, - "end": { - "line": 1, - "column": 14048 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14048, - "end": 14049, - "loc": { - "start": { - "line": 1, - "column": 14048 - }, - "end": { - "line": 1, - "column": 14049 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/doc/script/test-summary.js", - "start": 14050, - "end": 14099, - "loc": { - "start": { - "line": 1, - "column": 14050 - }, - "end": { - "line": 1, - "column": 14099 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14099, - "end": 14100, - "loc": { - "start": { - "line": 1, - "column": 14099 - }, - "end": { - "line": 1, - "column": 14100 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 14101, - "end": 14107, - "loc": { - "start": { - "line": 1, - "column": 14101 - }, - "end": { - "line": 1, - "column": 14107 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14107, - "end": 14108, - "loc": { - "start": { - "line": 1, - "column": 14107 - }, - "end": { - "line": 1, - "column": 14108 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14108, - "end": 14109, - "loc": { - "start": { - "line": 1, - "column": 14108 - }, - "end": { - "line": 1, - "column": 14109 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14110, - "end": 14111, - "loc": { - "start": { - "line": 1, - "column": 14110 - }, - "end": { - "line": 1, - "column": 14111 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/index.js", - "start": 14111, - "end": 14142, - "loc": { - "start": { - "line": 1, - "column": 14111 - }, - "end": { - "line": 1, - "column": 14142 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14142, - "end": 14143, - "loc": { - "start": { - "line": 1, - "column": 14142 - }, - "end": { - "line": 1, - "column": 14143 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/index.js.html", - "start": 14144, - "end": 14185, - "loc": { - "start": { - "line": 1, - "column": 14144 - }, - "end": { - "line": 1, - "column": 14185 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14185, - "end": 14186, - "loc": { - "start": { - "line": 1, - "column": 14185 - }, - "end": { - "line": 1, - "column": 14186 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/index.js", - "start": 14187, - "end": 14218, - "loc": { - "start": { - "line": 1, - "column": 14187 - }, - "end": { - "line": 1, - "column": 14218 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14218, - "end": 14219, - "loc": { - "start": { - "line": 1, - "column": 14218 - }, - "end": { - "line": 1, - "column": 14219 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 14220, - "end": 14226, - "loc": { - "start": { - "line": 1, - "column": 14220 - }, - "end": { - "line": 1, - "column": 14226 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14226, - "end": 14227, - "loc": { - "start": { - "line": 1, - "column": 14226 - }, - "end": { - "line": 1, - "column": 14227 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14227, - "end": 14228, - "loc": { - "start": { - "line": 1, - "column": 14227 - }, - "end": { - "line": 1, - "column": 14228 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14229, - "end": 14230, - "loc": { - "start": { - "line": 1, - "column": 14229 - }, - "end": { - "line": 1, - "column": 14230 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js", - "start": 14230, - "end": 14270, - "loc": { - "start": { - "line": 1, - "column": 14230 - }, - "end": { - "line": 1, - "column": 14270 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14270, - "end": 14271, - "loc": { - "start": { - "line": 1, - "column": 14270 - }, - "end": { - "line": 1, - "column": 14271 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/src/BleManager.js.html", - "start": 14272, - "end": 14322, - "loc": { - "start": { - "line": 1, - "column": 14272 - }, - "end": { - "line": 1, - "column": 14322 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14322, - "end": 14323, - "loc": { - "start": { - "line": 1, - "column": 14322 - }, - "end": { - "line": 1, - "column": 14323 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js", - "start": 14324, - "end": 14364, - "loc": { - "start": { - "line": 1, - "column": 14324 - }, - "end": { - "line": 1, - "column": 14364 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14364, - "end": 14365, - "loc": { - "start": { - "line": 1, - "column": 14364 - }, - "end": { - "line": 1, - "column": 14365 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 14366, - "end": 14372, - "loc": { - "start": { - "line": 1, - "column": 14366 - }, - "end": { - "line": 1, - "column": 14372 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14372, - "end": 14373, - "loc": { - "start": { - "line": 1, - "column": 14372 - }, - "end": { - "line": 1, - "column": 14373 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14373, - "end": 14374, - "loc": { - "start": { - "line": 1, - "column": 14373 - }, - "end": { - "line": 1, - "column": 14374 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14375, - "end": 14376, - "loc": { - "start": { - "line": 1, - "column": 14375 - }, - "end": { - "line": 1, - "column": 14376 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection", - "start": 14376, - "end": 14450, - "loc": { - "start": { - "line": 1, - "column": 14376 - }, - "end": { - "line": 1, - "column": 14450 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14450, - "end": 14451, - "loc": { - "start": { - "line": 1, - "column": 14450 - }, - "end": { - "line": 1, - "column": 14451 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection", - "start": 14452, - "end": 14553, - "loc": { - "start": { - "line": 1, - "column": 14452 - }, - "end": { - "line": 1, - "column": 14553 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14553, - "end": 14554, - "loc": { - "start": { - "line": 1, - "column": 14553 - }, - "end": { - "line": 1, - "column": 14554 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection", - "start": 14555, - "end": 14629, - "loc": { - "start": { - "line": 1, - "column": 14555 - }, - "end": { - "line": 1, - "column": 14629 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14629, - "end": 14630, - "loc": { - "start": { - "line": 1, - "column": 14629 - }, - "end": { - "line": 1, - "column": 14630 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 14631, - "end": 14639, - "loc": { - "start": { - "line": 1, - "column": 14631 - }, - "end": { - "line": 1, - "column": 14639 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14639, - "end": 14640, - "loc": { - "start": { - "line": 1, - "column": 14639 - }, - "end": { - "line": 1, - "column": 14640 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14640, - "end": 14641, - "loc": { - "start": { - "line": 1, - "column": 14640 - }, - "end": { - "line": 1, - "column": 14641 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14642, - "end": 14643, - "loc": { - "start": { - "line": 1, - "column": 14642 - }, - "end": { - "line": 1, - "column": 14643 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction", - "start": 14643, - "end": 14712, - "loc": { - "start": { - "line": 1, - "column": 14643 - }, - "end": { - "line": 1, - "column": 14712 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14712, - "end": 14713, - "loc": { - "start": { - "line": 1, - "column": 14712 - }, - "end": { - "line": 1, - "column": 14713 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction", - "start": 14714, - "end": 14810, - "loc": { - "start": { - "line": 1, - "column": 14714 - }, - "end": { - "line": 1, - "column": 14810 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14810, - "end": 14811, - "loc": { - "start": { - "line": 1, - "column": 14810 - }, - "end": { - "line": 1, - "column": 14811 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction", - "start": 14812, - "end": 14881, - "loc": { - "start": { - "line": 1, - "column": 14812 - }, - "end": { - "line": 1, - "column": 14881 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14881, - "end": 14882, - "loc": { - "start": { - "line": 1, - "column": 14881 - }, - "end": { - "line": 1, - "column": 14882 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 14883, - "end": 14891, - "loc": { - "start": { - "line": 1, - "column": 14883 - }, - "end": { - "line": 1, - "column": 14891 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14891, - "end": 14892, - "loc": { - "start": { - "line": 1, - "column": 14891 - }, - "end": { - "line": 1, - "column": 14892 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14892, - "end": 14893, - "loc": { - "start": { - "line": 1, - "column": 14892 - }, - "end": { - "line": 1, - "column": 14893 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14894, - "end": 14895, - "loc": { - "start": { - "line": 1, - "column": 14894 - }, - "end": { - "line": 1, - "column": 14895 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice", - "start": 14895, - "end": 14971, - "loc": { - "start": { - "line": 1, - "column": 14895 - }, - "end": { - "line": 1, - "column": 14971 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14971, - "end": 14972, - "loc": { - "start": { - "line": 1, - "column": 14971 - }, - "end": { - "line": 1, - "column": 14972 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice", - "start": 14973, - "end": 15076, - "loc": { - "start": { - "line": 1, - "column": 14973 - }, - "end": { - "line": 1, - "column": 15076 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15076, - "end": 15077, - "loc": { - "start": { - "line": 1, - "column": 15076 - }, - "end": { - "line": 1, - "column": 15077 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice", - "start": 15078, - "end": 15154, - "loc": { - "start": { - "line": 1, - "column": 15078 - }, - "end": { - "line": 1, - "column": 15154 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15154, - "end": 15155, - "loc": { - "start": { - "line": 1, - "column": 15154 - }, - "end": { - "line": 1, - "column": 15155 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 15156, - "end": 15164, - "loc": { - "start": { - "line": 1, - "column": 15156 - }, - "end": { - "line": 1, - "column": 15164 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15164, - "end": 15165, - "loc": { - "start": { - "line": 1, - "column": 15164 - }, - "end": { - "line": 1, - "column": 15165 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15165, - "end": 15166, - "loc": { - "start": { - "line": 1, - "column": 15165 - }, - "end": { - "line": 1, - "column": 15166 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15167, - "end": 15168, - "loc": { - "start": { - "line": 1, - "column": 15167 - }, - "end": { - "line": 1, - "column": 15168 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice", - "start": 15168, - "end": 15235, - "loc": { - "start": { - "line": 1, - "column": 15168 - }, - "end": { - "line": 1, - "column": 15235 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15235, - "end": 15236, - "loc": { - "start": { - "line": 1, - "column": 15235 - }, - "end": { - "line": 1, - "column": 15236 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice", - "start": 15237, - "end": 15331, - "loc": { - "start": { - "line": 1, - "column": 15237 - }, - "end": { - "line": 1, - "column": 15331 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15331, - "end": 15332, - "loc": { - "start": { - "line": 1, - "column": 15331 - }, - "end": { - "line": 1, - "column": 15332 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice", - "start": 15333, - "end": 15400, - "loc": { - "start": { - "line": 1, - "column": 15333 - }, - "end": { - "line": 1, - "column": 15400 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15400, - "end": 15401, - "loc": { - "start": { - "line": 1, - "column": 15400 - }, - "end": { - "line": 1, - "column": 15401 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 15402, - "end": 15410, - "loc": { - "start": { - "line": 1, - "column": 15402 - }, - "end": { - "line": 1, - "column": 15410 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15410, - "end": 15411, - "loc": { - "start": { - "line": 1, - "column": 15410 - }, - "end": { - "line": 1, - "column": 15411 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15411, - "end": 15412, - "loc": { - "start": { - "line": 1, - "column": 15411 - }, - "end": { - "line": 1, - "column": 15412 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15413, - "end": 15414, - "loc": { - "start": { - "line": 1, - "column": 15413 - }, - "end": { - "line": 1, - "column": 15414 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#constructor", - "start": 15414, - "end": 15477, - "loc": { - "start": { - "line": 1, - "column": 15414 - }, - "end": { - "line": 1, - "column": 15477 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15477, - "end": 15478, - "loc": { - "start": { - "line": 1, - "column": 15477 - }, - "end": { - "line": 1, - "column": 15478 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor", - "start": 15479, - "end": 15574, - "loc": { - "start": { - "line": 1, - "column": 15479 - }, - "end": { - "line": 1, - "column": 15574 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15574, - "end": 15575, - "loc": { - "start": { - "line": 1, - "column": 15574 - }, - "end": { - "line": 1, - "column": 15575 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#constructor", - "start": 15576, - "end": 15639, - "loc": { - "start": { - "line": 1, - "column": 15576 - }, - "end": { - "line": 1, - "column": 15639 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15639, - "end": 15640, - "loc": { - "start": { - "line": 1, - "column": 15639 - }, - "end": { - "line": 1, - "column": 15640 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 15641, - "end": 15649, - "loc": { - "start": { - "line": 1, - "column": 15641 - }, - "end": { - "line": 1, - "column": 15649 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15649, - "end": 15650, - "loc": { - "start": { - "line": 1, - "column": 15649 - }, - "end": { - "line": 1, - "column": 15650 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15650, - "end": 15651, - "loc": { - "start": { - "line": 1, - "column": 15650 - }, - "end": { - "line": 1, - "column": 15651 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15652, - "end": 15653, - "loc": { - "start": { - "line": 1, - "column": 15652 - }, - "end": { - "line": 1, - "column": 15653 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#destroy", - "start": 15653, - "end": 15712, - "loc": { - "start": { - "line": 1, - "column": 15653 - }, - "end": { - "line": 1, - "column": 15712 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15712, - "end": 15713, - "loc": { - "start": { - "line": 1, - "column": 15712 - }, - "end": { - "line": 1, - "column": 15713 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy", - "start": 15714, - "end": 15800, - "loc": { - "start": { - "line": 1, - "column": 15714 - }, - "end": { - "line": 1, - "column": 15800 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15800, - "end": 15801, - "loc": { - "start": { - "line": 1, - "column": 15800 - }, - "end": { - "line": 1, - "column": 15801 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#destroy", - "start": 15802, - "end": 15861, - "loc": { - "start": { - "line": 1, - "column": 15802 - }, - "end": { - "line": 1, - "column": 15861 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15861, - "end": 15862, - "loc": { - "start": { - "line": 1, - "column": 15861 - }, - "end": { - "line": 1, - "column": 15862 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 15863, - "end": 15871, - "loc": { - "start": { - "line": 1, - "column": 15863 - }, - "end": { - "line": 1, - "column": 15871 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15871, - "end": 15872, - "loc": { - "start": { - "line": 1, - "column": 15871 - }, - "end": { - "line": 1, - "column": 15872 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15872, - "end": 15873, - "loc": { - "start": { - "line": 1, - "column": 15872 - }, - "end": { - "line": 1, - "column": 15873 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15874, - "end": 15875, - "loc": { - "start": { - "line": 1, - "column": 15874 - }, - "end": { - "line": 1, - "column": 15875 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice", - "start": 15875, - "end": 15973, - "loc": { - "start": { - "line": 1, - "column": 15875 - }, - "end": { - "line": 1, - "column": 15973 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15973, - "end": 15974, - "loc": { - "start": { - "line": 1, - "column": 15973 - }, - "end": { - "line": 1, - "column": 15974 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice", - "start": 15975, - "end": 16100, - "loc": { - "start": { - "line": 1, - "column": 15975 - }, - "end": { - "line": 1, - "column": 16100 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16100, - "end": 16101, - "loc": { - "start": { - "line": 1, - "column": 16100 - }, - "end": { - "line": 1, - "column": 16101 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice", - "start": 16102, - "end": 16200, - "loc": { - "start": { - "line": 1, - "column": 16102 - }, - "end": { - "line": 1, - "column": 16200 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16200, - "end": 16201, - "loc": { - "start": { - "line": 1, - "column": 16200 - }, - "end": { - "line": 1, - "column": 16201 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 16202, - "end": 16210, - "loc": { - "start": { - "line": 1, - "column": 16202 - }, - "end": { - "line": 1, - "column": 16210 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16210, - "end": 16211, - "loc": { - "start": { - "line": 1, - "column": 16210 - }, - "end": { - "line": 1, - "column": 16211 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16211, - "end": 16212, - "loc": { - "start": { - "line": 1, - "column": 16211 - }, - "end": { - "line": 1, - "column": 16212 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16213, - "end": 16214, - "loc": { - "start": { - "line": 1, - "column": 16213 - }, - "end": { - "line": 1, - "column": 16214 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected", - "start": 16214, - "end": 16283, - "loc": { - "start": { - "line": 1, - "column": 16214 - }, - "end": { - "line": 1, - "column": 16283 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16283, - "end": 16284, - "loc": { - "start": { - "line": 1, - "column": 16283 - }, - "end": { - "line": 1, - "column": 16284 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected", - "start": 16285, - "end": 16381, - "loc": { - "start": { - "line": 1, - "column": 16285 - }, - "end": { - "line": 1, - "column": 16381 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16381, - "end": 16382, - "loc": { - "start": { - "line": 1, - "column": 16381 - }, - "end": { - "line": 1, - "column": 16382 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected", - "start": 16383, - "end": 16452, - "loc": { - "start": { - "line": 1, - "column": 16383 - }, - "end": { - "line": 1, - "column": 16452 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16452, - "end": 16453, - "loc": { - "start": { - "line": 1, - "column": 16452 - }, - "end": { - "line": 1, - "column": 16453 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 16454, - "end": 16462, - "loc": { - "start": { - "line": 1, - "column": 16454 - }, - "end": { - "line": 1, - "column": 16462 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16462, - "end": 16463, - "loc": { - "start": { - "line": 1, - "column": 16462 - }, - "end": { - "line": 1, - "column": 16463 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16463, - "end": 16464, - "loc": { - "start": { - "line": 1, - "column": 16463 - }, - "end": { - "line": 1, - "column": 16464 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16465, - "end": 16466, - "loc": { - "start": { - "line": 1, - "column": 16465 - }, - "end": { - "line": 1, - "column": 16466 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice", - "start": 16466, - "end": 16548, - "loc": { - "start": { - "line": 1, - "column": 16466 - }, - "end": { - "line": 1, - "column": 16548 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16548, - "end": 16549, - "loc": { - "start": { - "line": 1, - "column": 16548 - }, - "end": { - "line": 1, - "column": 16549 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice", - "start": 16550, - "end": 16659, - "loc": { - "start": { - "line": 1, - "column": 16550 - }, - "end": { - "line": 1, - "column": 16659 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16659, - "end": 16660, - "loc": { - "start": { - "line": 1, - "column": 16659 - }, - "end": { - "line": 1, - "column": 16660 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice", - "start": 16661, - "end": 16743, - "loc": { - "start": { - "line": 1, - "column": 16661 - }, - "end": { - "line": 1, - "column": 16743 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16743, - "end": 16744, - "loc": { - "start": { - "line": 1, - "column": 16743 - }, - "end": { - "line": 1, - "column": 16744 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 16745, - "end": 16753, - "loc": { - "start": { - "line": 1, - "column": 16745 - }, - "end": { - "line": 1, - "column": 16753 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16753, - "end": 16754, - "loc": { - "start": { - "line": 1, - "column": 16753 - }, - "end": { - "line": 1, - "column": 16754 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16754, - "end": 16755, - "loc": { - "start": { - "line": 1, - "column": 16754 - }, - "end": { - "line": 1, - "column": 16755 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16756, - "end": 16757, - "loc": { - "start": { - "line": 1, - "column": 16756 - }, - "end": { - "line": 1, - "column": 16757 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected", - "start": 16757, - "end": 16829, - "loc": { - "start": { - "line": 1, - "column": 16757 - }, - "end": { - "line": 1, - "column": 16829 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16829, - "end": 16830, - "loc": { - "start": { - "line": 1, - "column": 16829 - }, - "end": { - "line": 1, - "column": 16830 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected", - "start": 16831, - "end": 16930, - "loc": { - "start": { - "line": 1, - "column": 16831 - }, - "end": { - "line": 1, - "column": 16930 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 16930, - "end": 16931, - "loc": { - "start": { - "line": 1, - "column": 16930 - }, - "end": { - "line": 1, - "column": 16931 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected", - "start": 16932, - "end": 17004, - "loc": { - "start": { - "line": 1, - "column": 16932 - }, - "end": { - "line": 1, - "column": 17004 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17004, - "end": 17005, - "loc": { - "start": { - "line": 1, - "column": 17004 - }, - "end": { - "line": 1, - "column": 17005 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 17006, - "end": 17014, - "loc": { - "start": { - "line": 1, - "column": 17006 - }, - "end": { - "line": 1, - "column": 17014 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17014, - "end": 17015, - "loc": { - "start": { - "line": 1, - "column": 17014 - }, - "end": { - "line": 1, - "column": 17015 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17015, - "end": 17016, - "loc": { - "start": { - "line": 1, - "column": 17015 - }, - "end": { - "line": 1, - "column": 17016 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17017, - "end": 17018, - "loc": { - "start": { - "line": 1, - "column": 17017 - }, - "end": { - "line": 1, - "column": 17018 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#onstatechange", - "start": 17018, - "end": 17083, - "loc": { - "start": { - "line": 1, - "column": 17018 - }, - "end": { - "line": 1, - "column": 17083 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17083, - "end": 17084, - "loc": { - "start": { - "line": 1, - "column": 17083 - }, - "end": { - "line": 1, - "column": 17084 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange", - "start": 17085, - "end": 17177, - "loc": { - "start": { - "line": 1, - "column": 17085 - }, - "end": { - "line": 1, - "column": 17177 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17177, - "end": 17178, - "loc": { - "start": { - "line": 1, - "column": 17177 - }, - "end": { - "line": 1, - "column": 17178 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange", - "start": 17179, - "end": 17244, - "loc": { - "start": { - "line": 1, - "column": 17179 - }, - "end": { - "line": 1, - "column": 17244 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17244, - "end": 17245, - "loc": { - "start": { - "line": 1, - "column": 17244 - }, - "end": { - "line": 1, - "column": 17245 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 17246, - "end": 17254, - "loc": { - "start": { - "line": 1, - "column": 17246 - }, - "end": { - "line": 1, - "column": 17254 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17254, - "end": 17255, - "loc": { - "start": { - "line": 1, - "column": 17254 - }, - "end": { - "line": 1, - "column": 17255 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17255, - "end": 17256, - "loc": { - "start": { - "line": 1, - "column": 17255 - }, - "end": { - "line": 1, - "column": 17256 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17257, - "end": 17258, - "loc": { - "start": { - "line": 1, - "column": 17257 - }, - "end": { - "line": 1, - "column": 17258 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice", - "start": 17258, - "end": 17337, - "loc": { - "start": { - "line": 1, - "column": 17258 - }, - "end": { - "line": 1, - "column": 17337 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17337, - "end": 17338, - "loc": { - "start": { - "line": 1, - "column": 17337 - }, - "end": { - "line": 1, - "column": 17338 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice", - "start": 17339, - "end": 17445, - "loc": { - "start": { - "line": 1, - "column": 17339 - }, - "end": { - "line": 1, - "column": 17445 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17445, - "end": 17446, - "loc": { - "start": { - "line": 1, - "column": 17445 - }, - "end": { - "line": 1, - "column": 17446 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice", - "start": 17447, - "end": 17526, - "loc": { - "start": { - "line": 1, - "column": 17447 - }, - "end": { - "line": 1, - "column": 17526 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17526, - "end": 17527, - "loc": { - "start": { - "line": 1, - "column": 17526 - }, - "end": { - "line": 1, - "column": 17527 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 17528, - "end": 17536, - "loc": { - "start": { - "line": 1, - "column": 17528 - }, - "end": { - "line": 1, - "column": 17536 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17536, - "end": 17537, - "loc": { - "start": { - "line": 1, - "column": 17536 - }, - "end": { - "line": 1, - "column": 17537 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17537, - "end": 17538, - "loc": { - "start": { - "line": 1, - "column": 17537 - }, - "end": { - "line": 1, - "column": 17538 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17539, - "end": 17540, - "loc": { - "start": { - "line": 1, - "column": 17539 - }, - "end": { - "line": 1, - "column": 17540 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice", - "start": 17540, - "end": 17609, - "loc": { - "start": { - "line": 1, - "column": 17540 - }, - "end": { - "line": 1, - "column": 17609 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17609, - "end": 17610, - "loc": { - "start": { - "line": 1, - "column": 17609 - }, - "end": { - "line": 1, - "column": 17610 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice", - "start": 17611, - "end": 17707, - "loc": { - "start": { - "line": 1, - "column": 17611 - }, - "end": { - "line": 1, - "column": 17707 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17707, - "end": 17708, - "loc": { - "start": { - "line": 1, - "column": 17707 - }, - "end": { - "line": 1, - "column": 17708 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice", - "start": 17709, - "end": 17778, - "loc": { - "start": { - "line": 1, - "column": 17709 - }, - "end": { - "line": 1, - "column": 17778 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17778, - "end": 17779, - "loc": { - "start": { - "line": 1, - "column": 17778 - }, - "end": { - "line": 1, - "column": 17779 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 17780, - "end": 17788, - "loc": { - "start": { - "line": 1, - "column": 17780 - }, - "end": { - "line": 1, - "column": 17788 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17788, - "end": 17789, - "loc": { - "start": { - "line": 1, - "column": 17788 - }, - "end": { - "line": 1, - "column": 17789 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17789, - "end": 17790, - "loc": { - "start": { - "line": 1, - "column": 17789 - }, - "end": { - "line": 1, - "column": 17790 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17791, - "end": 17792, - "loc": { - "start": { - "line": 1, - "column": 17791 - }, - "end": { - "line": 1, - "column": 17792 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan", - "start": 17792, - "end": 17859, - "loc": { - "start": { - "line": 1, - "column": 17792 - }, - "end": { - "line": 1, - "column": 17859 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17859, - "end": 17860, - "loc": { - "start": { - "line": 1, - "column": 17859 - }, - "end": { - "line": 1, - "column": 17860 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan", - "start": 17861, - "end": 17955, - "loc": { - "start": { - "line": 1, - "column": 17861 - }, - "end": { - "line": 1, - "column": 17955 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 17955, - "end": 17956, - "loc": { - "start": { - "line": 1, - "column": 17955 - }, - "end": { - "line": 1, - "column": 17956 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan", - "start": 17957, - "end": 18024, - "loc": { - "start": { - "line": 1, - "column": 17957 - }, - "end": { - "line": 1, - "column": 18024 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18024, - "end": 18025, - "loc": { - "start": { - "line": 1, - "column": 18024 - }, - "end": { - "line": 1, - "column": 18025 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 18026, - "end": 18034, - "loc": { - "start": { - "line": 1, - "column": 18026 - }, - "end": { - "line": 1, - "column": 18034 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18034, - "end": 18035, - "loc": { - "start": { - "line": 1, - "column": 18034 - }, - "end": { - "line": 1, - "column": 18035 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18035, - "end": 18036, - "loc": { - "start": { - "line": 1, - "column": 18035 - }, - "end": { - "line": 1, - "column": 18036 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18037, - "end": 18038, - "loc": { - "start": { - "line": 1, - "column": 18037 - }, - "end": { - "line": 1, - "column": 18038 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#state", - "start": 18038, - "end": 18095, - "loc": { - "start": { - "line": 1, - "column": 18038 - }, - "end": { - "line": 1, - "column": 18095 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18095, - "end": 18096, - "loc": { - "start": { - "line": 1, - "column": 18095 - }, - "end": { - "line": 1, - "column": 18096 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state", - "start": 18097, - "end": 18181, - "loc": { - "start": { - "line": 1, - "column": 18097 - }, - "end": { - "line": 1, - "column": 18181 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18181, - "end": 18182, - "loc": { - "start": { - "line": 1, - "column": 18181 - }, - "end": { - "line": 1, - "column": 18182 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#state", - "start": 18183, - "end": 18240, - "loc": { - "start": { - "line": 1, - "column": 18183 - }, - "end": { - "line": 1, - "column": 18240 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18240, - "end": 18241, - "loc": { - "start": { - "line": 1, - "column": 18240 - }, - "end": { - "line": 1, - "column": 18241 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 18242, - "end": 18250, - "loc": { - "start": { - "line": 1, - "column": 18242 - }, - "end": { - "line": 1, - "column": 18250 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18250, - "end": 18251, - "loc": { - "start": { - "line": 1, - "column": 18250 - }, - "end": { - "line": 1, - "column": 18251 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18251, - "end": 18252, - "loc": { - "start": { - "line": 1, - "column": 18251 - }, - "end": { - "line": 1, - "column": 18252 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18253, - "end": 18254, - "loc": { - "start": { - "line": 1, - "column": 18253 - }, - "end": { - "line": 1, - "column": 18254 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan", - "start": 18254, - "end": 18320, - "loc": { - "start": { - "line": 1, - "column": 18254 - }, - "end": { - "line": 1, - "column": 18320 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18320, - "end": 18321, - "loc": { - "start": { - "line": 1, - "column": 18320 - }, - "end": { - "line": 1, - "column": 18321 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan", - "start": 18322, - "end": 18415, - "loc": { - "start": { - "line": 1, - "column": 18322 - }, - "end": { - "line": 1, - "column": 18415 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18415, - "end": 18416, - "loc": { - "start": { - "line": 1, - "column": 18415 - }, - "end": { - "line": 1, - "column": 18416 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan", - "start": 18417, - "end": 18483, - "loc": { - "start": { - "line": 1, - "column": 18417 - }, - "end": { - "line": 1, - "column": 18483 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18483, - "end": 18484, - "loc": { - "start": { - "line": 1, - "column": 18483 - }, - "end": { - "line": 1, - "column": 18484 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 18485, - "end": 18493, - "loc": { - "start": { - "line": 1, - "column": 18485 - }, - "end": { - "line": 1, - "column": 18493 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18493, - "end": 18494, - "loc": { - "start": { - "line": 1, - "column": 18493 - }, - "end": { - "line": 1, - "column": 18494 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18494, - "end": 18495, - "loc": { - "start": { - "line": 1, - "column": 18494 - }, - "end": { - "line": 1, - "column": 18495 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18496, - "end": 18497, - "loc": { - "start": { - "line": 1, - "column": 18496 - }, - "end": { - "line": 1, - "column": 18497 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice", - "start": 18497, - "end": 18589, - "loc": { - "start": { - "line": 1, - "column": 18497 - }, - "end": { - "line": 1, - "column": 18589 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18589, - "end": 18590, - "loc": { - "start": { - "line": 1, - "column": 18589 - }, - "end": { - "line": 1, - "column": 18590 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice", - "start": 18591, - "end": 18710, - "loc": { - "start": { - "line": 1, - "column": 18591 - }, - "end": { - "line": 1, - "column": 18710 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18710, - "end": 18711, - "loc": { - "start": { - "line": 1, - "column": 18710 - }, - "end": { - "line": 1, - "column": 18711 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice", - "start": 18712, - "end": 18804, - "loc": { - "start": { - "line": 1, - "column": 18712 - }, - "end": { - "line": 1, - "column": 18804 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18804, - "end": 18805, - "loc": { - "start": { - "line": 1, - "column": 18804 - }, - "end": { - "line": 1, - "column": 18805 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 18806, - "end": 18814, - "loc": { - "start": { - "line": 1, - "column": 18806 - }, - "end": { - "line": 1, - "column": 18814 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18814, - "end": 18815, - "loc": { - "start": { - "line": 1, - "column": 18814 - }, - "end": { - "line": 1, - "column": 18815 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18815, - "end": 18816, - "loc": { - "start": { - "line": 1, - "column": 18815 - }, - "end": { - "line": 1, - "column": 18816 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18817, - "end": 18818, - "loc": { - "start": { - "line": 1, - "column": 18817 - }, - "end": { - "line": 1, - "column": 18818 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice", - "start": 18818, - "end": 18913, - "loc": { - "start": { - "line": 1, - "column": 18818 - }, - "end": { - "line": 1, - "column": 18913 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 18913, - "end": 18914, - "loc": { - "start": { - "line": 1, - "column": 18913 - }, - "end": { - "line": 1, - "column": 18914 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice", - "start": 18915, - "end": 19037, - "loc": { - "start": { - "line": 1, - "column": 18915 - }, - "end": { - "line": 1, - "column": 19037 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19037, - "end": 19038, - "loc": { - "start": { - "line": 1, - "column": 19037 - }, - "end": { - "line": 1, - "column": 19038 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice", - "start": 19039, - "end": 19134, - "loc": { - "start": { - "line": 1, - "column": 19039 - }, - "end": { - "line": 1, - "column": 19134 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19134, - "end": 19135, - "loc": { - "start": { - "line": 1, - "column": 19134 - }, - "end": { - "line": 1, - "column": 19135 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 19136, - "end": 19144, - "loc": { - "start": { - "line": 1, - "column": 19136 - }, - "end": { - "line": 1, - "column": 19144 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19144, - "end": 19145, - "loc": { - "start": { - "line": 1, - "column": 19144 - }, - "end": { - "line": 1, - "column": 19145 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19145, - "end": 19146, - "loc": { - "start": { - "line": 1, - "column": 19145 - }, - "end": { - "line": 1, - "column": 19146 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19147, - "end": 19148, - "loc": { - "start": { - "line": 1, - "column": 19147 - }, - "end": { - "line": 1, - "column": 19148 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js", - "start": 19148, - "end": 19192, - "loc": { - "start": { - "line": 1, - "column": 19148 - }, - "end": { - "line": 1, - "column": 19192 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19192, - "end": 19193, - "loc": { - "start": { - "line": 1, - "column": 19192 - }, - "end": { - "line": 1, - "column": 19193 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/src/Characteristic.js.html", - "start": 19194, - "end": 19248, - "loc": { - "start": { - "line": 1, - "column": 19194 - }, - "end": { - "line": 1, - "column": 19248 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19248, - "end": 19249, - "loc": { - "start": { - "line": 1, - "column": 19248 - }, - "end": { - "line": 1, - "column": 19249 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js", - "start": 19250, - "end": 19294, - "loc": { - "start": { - "line": 1, - "column": 19250 - }, - "end": { - "line": 1, - "column": 19294 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19294, - "end": 19295, - "loc": { - "start": { - "line": 1, - "column": 19294 - }, - "end": { - "line": 1, - "column": 19295 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 19296, - "end": 19302, - "loc": { - "start": { - "line": 1, - "column": 19296 - }, - "end": { - "line": 1, - "column": 19302 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19302, - "end": 19303, - "loc": { - "start": { - "line": 1, - "column": 19302 - }, - "end": { - "line": 1, - "column": 19303 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19303, - "end": 19304, - "loc": { - "start": { - "line": 1, - "column": 19303 - }, - "end": { - "line": 1, - "column": 19304 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19305, - "end": 19306, - "loc": { - "start": { - "line": 1, - "column": 19305 - }, - "end": { - "line": 1, - "column": 19306 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#constructor", - "start": 19306, - "end": 19377, - "loc": { - "start": { - "line": 1, - "column": 19306 - }, - "end": { - "line": 1, - "column": 19377 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19377, - "end": 19378, - "loc": { - "start": { - "line": 1, - "column": 19377 - }, - "end": { - "line": 1, - "column": 19378 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-constructor-constructor", - "start": 19379, - "end": 19482, - "loc": { - "start": { - "line": 1, - "column": 19379 - }, - "end": { - "line": 1, - "column": 19482 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19482, - "end": 19483, - "loc": { - "start": { - "line": 1, - "column": 19482 - }, - "end": { - "line": 1, - "column": 19483 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#constructor", - "start": 19484, - "end": 19555, - "loc": { - "start": { - "line": 1, - "column": 19484 - }, - "end": { - "line": 1, - "column": 19555 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19555, - "end": 19556, - "loc": { - "start": { - "line": 1, - "column": 19555 - }, - "end": { - "line": 1, - "column": 19556 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 19557, - "end": 19565, - "loc": { - "start": { - "line": 1, - "column": 19557 - }, - "end": { - "line": 1, - "column": 19565 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19565, - "end": 19566, - "loc": { - "start": { - "line": 1, - "column": 19565 - }, - "end": { - "line": 1, - "column": 19566 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19566, - "end": 19567, - "loc": { - "start": { - "line": 1, - "column": 19566 - }, - "end": { - "line": 1, - "column": 19567 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19568, - "end": 19569, - "loc": { - "start": { - "line": 1, - "column": 19568 - }, - "end": { - "line": 1, - "column": 19569 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#monitor", - "start": 19569, - "end": 19636, - "loc": { - "start": { - "line": 1, - "column": 19569 - }, - "end": { - "line": 1, - "column": 19636 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19636, - "end": 19637, - "loc": { - "start": { - "line": 1, - "column": 19636 - }, - "end": { - "line": 1, - "column": 19637 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor", - "start": 19638, - "end": 19732, - "loc": { - "start": { - "line": 1, - "column": 19638 - }, - "end": { - "line": 1, - "column": 19732 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19732, - "end": 19733, - "loc": { - "start": { - "line": 1, - "column": 19732 - }, - "end": { - "line": 1, - "column": 19733 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor", - "start": 19734, - "end": 19801, - "loc": { - "start": { - "line": 1, - "column": 19734 - }, - "end": { - "line": 1, - "column": 19801 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19801, - "end": 19802, - "loc": { - "start": { - "line": 1, - "column": 19801 - }, - "end": { - "line": 1, - "column": 19802 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 19803, - "end": 19811, - "loc": { - "start": { - "line": 1, - "column": 19803 - }, - "end": { - "line": 1, - "column": 19811 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19811, - "end": 19812, - "loc": { - "start": { - "line": 1, - "column": 19811 - }, - "end": { - "line": 1, - "column": 19812 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19812, - "end": 19813, - "loc": { - "start": { - "line": 1, - "column": 19812 - }, - "end": { - "line": 1, - "column": 19813 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19814, - "end": 19815, - "loc": { - "start": { - "line": 1, - "column": 19814 - }, - "end": { - "line": 1, - "column": 19815 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#read", - "start": 19815, - "end": 19879, - "loc": { - "start": { - "line": 1, - "column": 19815 - }, - "end": { - "line": 1, - "column": 19879 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19879, - "end": 19880, - "loc": { - "start": { - "line": 1, - "column": 19879 - }, - "end": { - "line": 1, - "column": 19880 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read", - "start": 19881, - "end": 19972, - "loc": { - "start": { - "line": 1, - "column": 19881 - }, - "end": { - "line": 1, - "column": 19972 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 19972, - "end": 19973, - "loc": { - "start": { - "line": 1, - "column": 19972 - }, - "end": { - "line": 1, - "column": 19973 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#read", - "start": 19974, - "end": 20038, - "loc": { - "start": { - "line": 1, - "column": 19974 - }, - "end": { - "line": 1, - "column": 20038 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20038, - "end": 20039, - "loc": { - "start": { - "line": 1, - "column": 20038 - }, - "end": { - "line": 1, - "column": 20039 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 20040, - "end": 20048, - "loc": { - "start": { - "line": 1, - "column": 20040 - }, - "end": { - "line": 1, - "column": 20048 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20048, - "end": 20049, - "loc": { - "start": { - "line": 1, - "column": 20048 - }, - "end": { - "line": 1, - "column": 20049 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20049, - "end": 20050, - "loc": { - "start": { - "line": 1, - "column": 20049 - }, - "end": { - "line": 1, - "column": 20050 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20051, - "end": 20052, - "loc": { - "start": { - "line": 1, - "column": 20051 - }, - "end": { - "line": 1, - "column": 20052 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse", - "start": 20052, - "end": 20129, - "loc": { - "start": { - "line": 1, - "column": 20052 - }, - "end": { - "line": 1, - "column": 20129 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20129, - "end": 20130, - "loc": { - "start": { - "line": 1, - "column": 20129 - }, - "end": { - "line": 1, - "column": 20130 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse", - "start": 20131, - "end": 20235, - "loc": { - "start": { - "line": 1, - "column": 20131 - }, - "end": { - "line": 1, - "column": 20235 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20235, - "end": 20236, - "loc": { - "start": { - "line": 1, - "column": 20235 - }, - "end": { - "line": 1, - "column": 20236 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse", - "start": 20237, - "end": 20314, - "loc": { - "start": { - "line": 1, - "column": 20237 - }, - "end": { - "line": 1, - "column": 20314 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20314, - "end": 20315, - "loc": { - "start": { - "line": 1, - "column": 20314 - }, - "end": { - "line": 1, - "column": 20315 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 20316, - "end": 20324, - "loc": { - "start": { - "line": 1, - "column": 20316 - }, - "end": { - "line": 1, - "column": 20324 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20324, - "end": 20325, - "loc": { - "start": { - "line": 1, - "column": 20324 - }, - "end": { - "line": 1, - "column": 20325 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20325, - "end": 20326, - "loc": { - "start": { - "line": 1, - "column": 20325 - }, - "end": { - "line": 1, - "column": 20326 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20327, - "end": 20328, - "loc": { - "start": { - "line": 1, - "column": 20327 - }, - "end": { - "line": 1, - "column": 20328 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse", - "start": 20328, - "end": 20408, - "loc": { - "start": { - "line": 1, - "column": 20328 - }, - "end": { - "line": 1, - "column": 20408 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20408, - "end": 20409, - "loc": { - "start": { - "line": 1, - "column": 20408 - }, - "end": { - "line": 1, - "column": 20409 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse", - "start": 20410, - "end": 20517, - "loc": { - "start": { - "line": 1, - "column": 20410 - }, - "end": { - "line": 1, - "column": 20517 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20517, - "end": 20518, - "loc": { - "start": { - "line": 1, - "column": 20517 - }, - "end": { - "line": 1, - "column": 20518 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse", - "start": 20519, - "end": 20599, - "loc": { - "start": { - "line": 1, - "column": 20519 - }, - "end": { - "line": 1, - "column": 20599 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20599, - "end": 20600, - "loc": { - "start": { - "line": 1, - "column": 20599 - }, - "end": { - "line": 1, - "column": 20600 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 20601, - "end": 20609, - "loc": { - "start": { - "line": 1, - "column": 20601 - }, - "end": { - "line": 1, - "column": 20609 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20609, - "end": 20610, - "loc": { - "start": { - "line": 1, - "column": 20609 - }, - "end": { - "line": 1, - "column": 20610 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20610, - "end": 20611, - "loc": { - "start": { - "line": 1, - "column": 20610 - }, - "end": { - "line": 1, - "column": 20611 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20612, - "end": 20613, - "loc": { - "start": { - "line": 1, - "column": 20612 - }, - "end": { - "line": 1, - "column": 20613 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js", - "start": 20613, - "end": 20649, - "loc": { - "start": { - "line": 1, - "column": 20613 - }, - "end": { - "line": 1, - "column": 20649 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20649, - "end": 20650, - "loc": { - "start": { - "line": 1, - "column": 20649 - }, - "end": { - "line": 1, - "column": 20650 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/src/Device.js.html", - "start": 20651, - "end": 20697, - "loc": { - "start": { - "line": 1, - "column": 20651 - }, - "end": { - "line": 1, - "column": 20697 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20697, - "end": 20698, - "loc": { - "start": { - "line": 1, - "column": 20697 - }, - "end": { - "line": 1, - "column": 20698 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js", - "start": 20699, - "end": 20735, - "loc": { - "start": { - "line": 1, - "column": 20699 - }, - "end": { - "line": 1, - "column": 20735 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20735, - "end": 20736, - "loc": { - "start": { - "line": 1, - "column": 20735 - }, - "end": { - "line": 1, - "column": 20736 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 20737, - "end": 20743, - "loc": { - "start": { - "line": 1, - "column": 20737 - }, - "end": { - "line": 1, - "column": 20743 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20743, - "end": 20744, - "loc": { - "start": { - "line": 1, - "column": 20743 - }, - "end": { - "line": 1, - "column": 20744 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20744, - "end": 20745, - "loc": { - "start": { - "line": 1, - "column": 20744 - }, - "end": { - "line": 1, - "column": 20745 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20746, - "end": 20747, - "loc": { - "start": { - "line": 1, - "column": 20746 - }, - "end": { - "line": 1, - "column": 20747 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#cancelconnection", - "start": 20747, - "end": 20807, - "loc": { - "start": { - "line": 1, - "column": 20747 - }, - "end": { - "line": 1, - "column": 20807 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20807, - "end": 20808, - "loc": { - "start": { - "line": 1, - "column": 20807 - }, - "end": { - "line": 1, - "column": 20808 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection", - "start": 20809, - "end": 20896, - "loc": { - "start": { - "line": 1, - "column": 20809 - }, - "end": { - "line": 1, - "column": 20896 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20896, - "end": 20897, - "loc": { - "start": { - "line": 1, - "column": 20896 - }, - "end": { - "line": 1, - "column": 20897 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#cancelConnection", - "start": 20898, - "end": 20958, - "loc": { - "start": { - "line": 1, - "column": 20898 - }, - "end": { - "line": 1, - "column": 20958 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20958, - "end": 20959, - "loc": { - "start": { - "line": 1, - "column": 20958 - }, - "end": { - "line": 1, - "column": 20959 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 20960, - "end": 20968, - "loc": { - "start": { - "line": 1, - "column": 20960 - }, - "end": { - "line": 1, - "column": 20968 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20968, - "end": 20969, - "loc": { - "start": { - "line": 1, - "column": 20968 - }, - "end": { - "line": 1, - "column": 20969 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20969, - "end": 20970, - "loc": { - "start": { - "line": 1, - "column": 20969 - }, - "end": { - "line": 1, - "column": 20970 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 20971, - "end": 20972, - "loc": { - "start": { - "line": 1, - "column": 20971 - }, - "end": { - "line": 1, - "column": 20972 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#characteristicsforservice", - "start": 20972, - "end": 21041, - "loc": { - "start": { - "line": 1, - "column": 20972 - }, - "end": { - "line": 1, - "column": 21041 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21041, - "end": 21042, - "loc": { - "start": { - "line": 1, - "column": 21041 - }, - "end": { - "line": 1, - "column": 21042 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService", - "start": 21043, - "end": 21139, - "loc": { - "start": { - "line": 1, - "column": 21043 - }, - "end": { - "line": 1, - "column": 21139 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21139, - "end": 21140, - "loc": { - "start": { - "line": 1, - "column": 21139 - }, - "end": { - "line": 1, - "column": 21140 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#characteristicsForService", - "start": 21141, - "end": 21210, - "loc": { - "start": { - "line": 1, - "column": 21141 - }, - "end": { - "line": 1, - "column": 21210 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21210, - "end": 21211, - "loc": { - "start": { - "line": 1, - "column": 21210 - }, - "end": { - "line": 1, - "column": 21211 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 21212, - "end": 21220, - "loc": { - "start": { - "line": 1, - "column": 21212 - }, - "end": { - "line": 1, - "column": 21220 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21220, - "end": 21221, - "loc": { - "start": { - "line": 1, - "column": 21220 - }, - "end": { - "line": 1, - "column": 21221 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21221, - "end": 21222, - "loc": { - "start": { - "line": 1, - "column": 21221 - }, - "end": { - "line": 1, - "column": 21222 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21223, - "end": 21224, - "loc": { - "start": { - "line": 1, - "column": 21223 - }, - "end": { - "line": 1, - "column": 21224 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#connect", - "start": 21224, - "end": 21275, - "loc": { - "start": { - "line": 1, - "column": 21224 - }, - "end": { - "line": 1, - "column": 21275 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21275, - "end": 21276, - "loc": { - "start": { - "line": 1, - "column": 21275 - }, - "end": { - "line": 1, - "column": 21276 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect", - "start": 21277, - "end": 21355, - "loc": { - "start": { - "line": 1, - "column": 21277 - }, - "end": { - "line": 1, - "column": 21355 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21355, - "end": 21356, - "loc": { - "start": { - "line": 1, - "column": 21355 - }, - "end": { - "line": 1, - "column": 21356 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#connect", - "start": 21357, - "end": 21408, - "loc": { - "start": { - "line": 1, - "column": 21357 - }, - "end": { - "line": 1, - "column": 21408 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21408, - "end": 21409, - "loc": { - "start": { - "line": 1, - "column": 21408 - }, - "end": { - "line": 1, - "column": 21409 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 21410, - "end": 21418, - "loc": { - "start": { - "line": 1, - "column": 21410 - }, - "end": { - "line": 1, - "column": 21418 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21418, - "end": 21419, - "loc": { - "start": { - "line": 1, - "column": 21418 - }, - "end": { - "line": 1, - "column": 21419 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21419, - "end": 21420, - "loc": { - "start": { - "line": 1, - "column": 21419 - }, - "end": { - "line": 1, - "column": 21420 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21421, - "end": 21422, - "loc": { - "start": { - "line": 1, - "column": 21421 - }, - "end": { - "line": 1, - "column": 21422 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#constructor", - "start": 21422, - "end": 21477, - "loc": { - "start": { - "line": 1, - "column": 21422 - }, - "end": { - "line": 1, - "column": 21477 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21477, - "end": 21478, - "loc": { - "start": { - "line": 1, - "column": 21477 - }, - "end": { - "line": 1, - "column": 21478 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-constructor-constructor", - "start": 21479, - "end": 21566, - "loc": { - "start": { - "line": 1, - "column": 21479 - }, - "end": { - "line": 1, - "column": 21566 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21566, - "end": 21567, - "loc": { - "start": { - "line": 1, - "column": 21566 - }, - "end": { - "line": 1, - "column": 21567 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#constructor", - "start": 21568, - "end": 21623, - "loc": { - "start": { - "line": 1, - "column": 21568 - }, - "end": { - "line": 1, - "column": 21623 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21623, - "end": 21624, - "loc": { - "start": { - "line": 1, - "column": 21623 - }, - "end": { - "line": 1, - "column": 21624 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 21625, - "end": 21633, - "loc": { - "start": { - "line": 1, - "column": 21625 - }, - "end": { - "line": 1, - "column": 21633 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21633, - "end": 21634, - "loc": { - "start": { - "line": 1, - "column": 21633 - }, - "end": { - "line": 1, - "column": 21634 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21634, - "end": 21635, - "loc": { - "start": { - "line": 1, - "column": 21634 - }, - "end": { - "line": 1, - "column": 21635 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21636, - "end": 21637, - "loc": { - "start": { - "line": 1, - "column": 21636 - }, - "end": { - "line": 1, - "column": 21637 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics", - "start": 21637, - "end": 21718, - "loc": { - "start": { - "line": 1, - "column": 21637 - }, - "end": { - "line": 1, - "column": 21718 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21718, - "end": 21719, - "loc": { - "start": { - "line": 1, - "column": 21718 - }, - "end": { - "line": 1, - "column": 21719 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics", - "start": 21720, - "end": 21828, - "loc": { - "start": { - "line": 1, - "column": 21720 - }, - "end": { - "line": 1, - "column": 21828 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21828, - "end": 21829, - "loc": { - "start": { - "line": 1, - "column": 21828 - }, - "end": { - "line": 1, - "column": 21829 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics", - "start": 21830, - "end": 21911, - "loc": { - "start": { - "line": 1, - "column": 21830 - }, - "end": { - "line": 1, - "column": 21911 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21911, - "end": 21912, - "loc": { - "start": { - "line": 1, - "column": 21911 - }, - "end": { - "line": 1, - "column": 21912 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 21913, - "end": 21921, - "loc": { - "start": { - "line": 1, - "column": 21913 - }, - "end": { - "line": 1, - "column": 21921 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21921, - "end": 21922, - "loc": { - "start": { - "line": 1, - "column": 21921 - }, - "end": { - "line": 1, - "column": 21922 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21922, - "end": 21923, - "loc": { - "start": { - "line": 1, - "column": 21922 - }, - "end": { - "line": 1, - "column": 21923 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21924, - "end": 21925, - "loc": { - "start": { - "line": 1, - "column": 21924 - }, - "end": { - "line": 1, - "column": 21925 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#isconnected", - "start": 21925, - "end": 21980, - "loc": { - "start": { - "line": 1, - "column": 21925 - }, - "end": { - "line": 1, - "column": 21980 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 21980, - "end": 21981, - "loc": { - "start": { - "line": 1, - "column": 21980 - }, - "end": { - "line": 1, - "column": 21981 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected", - "start": 21982, - "end": 22064, - "loc": { - "start": { - "line": 1, - "column": 21982 - }, - "end": { - "line": 1, - "column": 22064 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22064, - "end": 22065, - "loc": { - "start": { - "line": 1, - "column": 22064 - }, - "end": { - "line": 1, - "column": 22065 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#isConnected", - "start": 22066, - "end": 22121, - "loc": { - "start": { - "line": 1, - "column": 22066 - }, - "end": { - "line": 1, - "column": 22121 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22121, - "end": 22122, - "loc": { - "start": { - "line": 1, - "column": 22121 - }, - "end": { - "line": 1, - "column": 22122 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 22123, - "end": 22131, - "loc": { - "start": { - "line": 1, - "column": 22123 - }, - "end": { - "line": 1, - "column": 22131 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22131, - "end": 22132, - "loc": { - "start": { - "line": 1, - "column": 22131 - }, - "end": { - "line": 1, - "column": 22132 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22132, - "end": 22133, - "loc": { - "start": { - "line": 1, - "column": 22132 - }, - "end": { - "line": 1, - "column": 22133 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22134, - "end": 22135, - "loc": { - "start": { - "line": 1, - "column": 22134 - }, - "end": { - "line": 1, - "column": 22135 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice", - "start": 22135, - "end": 22210, - "loc": { - "start": { - "line": 1, - "column": 22135 - }, - "end": { - "line": 1, - "column": 22210 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22210, - "end": 22211, - "loc": { - "start": { - "line": 1, - "column": 22210 - }, - "end": { - "line": 1, - "column": 22211 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService", - "start": 22212, - "end": 22314, - "loc": { - "start": { - "line": 1, - "column": 22212 - }, - "end": { - "line": 1, - "column": 22314 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22314, - "end": 22315, - "loc": { - "start": { - "line": 1, - "column": 22314 - }, - "end": { - "line": 1, - "column": 22315 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService", - "start": 22316, - "end": 22391, - "loc": { - "start": { - "line": 1, - "column": 22316 - }, - "end": { - "line": 1, - "column": 22391 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22391, - "end": 22392, - "loc": { - "start": { - "line": 1, - "column": 22391 - }, - "end": { - "line": 1, - "column": 22392 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 22393, - "end": 22401, - "loc": { - "start": { - "line": 1, - "column": 22393 - }, - "end": { - "line": 1, - "column": 22401 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22401, - "end": 22402, - "loc": { - "start": { - "line": 1, - "column": 22401 - }, - "end": { - "line": 1, - "column": 22402 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22402, - "end": 22403, - "loc": { - "start": { - "line": 1, - "column": 22402 - }, - "end": { - "line": 1, - "column": 22403 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22404, - "end": 22405, - "loc": { - "start": { - "line": 1, - "column": 22404 - }, - "end": { - "line": 1, - "column": 22405 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#ondisconnected", - "start": 22405, - "end": 22463, - "loc": { - "start": { - "line": 1, - "column": 22405 - }, - "end": { - "line": 1, - "column": 22463 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22463, - "end": 22464, - "loc": { - "start": { - "line": 1, - "column": 22463 - }, - "end": { - "line": 1, - "column": 22464 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected", - "start": 22465, - "end": 22550, - "loc": { - "start": { - "line": 1, - "column": 22465 - }, - "end": { - "line": 1, - "column": 22550 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22550, - "end": 22551, - "loc": { - "start": { - "line": 1, - "column": 22550 - }, - "end": { - "line": 1, - "column": 22551 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#onDisconnected", - "start": 22552, - "end": 22610, - "loc": { - "start": { - "line": 1, - "column": 22552 - }, - "end": { - "line": 1, - "column": 22610 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22610, - "end": 22611, - "loc": { - "start": { - "line": 1, - "column": 22610 - }, - "end": { - "line": 1, - "column": 22611 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 22612, - "end": 22620, - "loc": { - "start": { - "line": 1, - "column": 22612 - }, - "end": { - "line": 1, - "column": 22620 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22620, - "end": 22621, - "loc": { - "start": { - "line": 1, - "column": 22620 - }, - "end": { - "line": 1, - "column": 22621 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22621, - "end": 22622, - "loc": { - "start": { - "line": 1, - "column": 22621 - }, - "end": { - "line": 1, - "column": 22622 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22623, - "end": 22624, - "loc": { - "start": { - "line": 1, - "column": 22623 - }, - "end": { - "line": 1, - "column": 22624 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#readcharacteristicforservice", - "start": 22624, - "end": 22696, - "loc": { - "start": { - "line": 1, - "column": 22624 - }, - "end": { - "line": 1, - "column": 22696 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22696, - "end": 22697, - "loc": { - "start": { - "line": 1, - "column": 22696 - }, - "end": { - "line": 1, - "column": 22697 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService", - "start": 22698, - "end": 22797, - "loc": { - "start": { - "line": 1, - "column": 22698 - }, - "end": { - "line": 1, - "column": 22797 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22797, - "end": 22798, - "loc": { - "start": { - "line": 1, - "column": 22797 - }, - "end": { - "line": 1, - "column": 22798 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService", - "start": 22799, - "end": 22871, - "loc": { - "start": { - "line": 1, - "column": 22799 - }, - "end": { - "line": 1, - "column": 22871 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22871, - "end": 22872, - "loc": { - "start": { - "line": 1, - "column": 22871 - }, - "end": { - "line": 1, - "column": 22872 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 22873, - "end": 22881, - "loc": { - "start": { - "line": 1, - "column": 22873 - }, - "end": { - "line": 1, - "column": 22881 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22881, - "end": 22882, - "loc": { - "start": { - "line": 1, - "column": 22881 - }, - "end": { - "line": 1, - "column": 22882 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22882, - "end": 22883, - "loc": { - "start": { - "line": 1, - "column": 22882 - }, - "end": { - "line": 1, - "column": 22883 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22884, - "end": 22885, - "loc": { - "start": { - "line": 1, - "column": 22884 - }, - "end": { - "line": 1, - "column": 22885 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#services", - "start": 22885, - "end": 22937, - "loc": { - "start": { - "line": 1, - "column": 22885 - }, - "end": { - "line": 1, - "column": 22937 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 22937, - "end": 22938, - "loc": { - "start": { - "line": 1, - "column": 22937 - }, - "end": { - "line": 1, - "column": 22938 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services", - "start": 22939, - "end": 23018, - "loc": { - "start": { - "line": 1, - "column": 22939 - }, - "end": { - "line": 1, - "column": 23018 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23018, - "end": 23019, - "loc": { - "start": { - "line": 1, - "column": 23018 - }, - "end": { - "line": 1, - "column": 23019 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#services", - "start": 23020, - "end": 23072, - "loc": { - "start": { - "line": 1, - "column": 23020 - }, - "end": { - "line": 1, - "column": 23072 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23072, - "end": 23073, - "loc": { - "start": { - "line": 1, - "column": 23072 - }, - "end": { - "line": 1, - "column": 23073 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 23074, - "end": 23082, - "loc": { - "start": { - "line": 1, - "column": 23074 - }, - "end": { - "line": 1, - "column": 23082 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23082, - "end": 23083, - "loc": { - "start": { - "line": 1, - "column": 23082 - }, - "end": { - "line": 1, - "column": 23083 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23083, - "end": 23084, - "loc": { - "start": { - "line": 1, - "column": 23083 - }, - "end": { - "line": 1, - "column": 23084 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23085, - "end": 23086, - "loc": { - "start": { - "line": 1, - "column": 23085 - }, - "end": { - "line": 1, - "column": 23086 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice", - "start": 23086, - "end": 23171, - "loc": { - "start": { - "line": 1, - "column": 23086 - }, - "end": { - "line": 1, - "column": 23171 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23171, - "end": 23172, - "loc": { - "start": { - "line": 1, - "column": 23171 - }, - "end": { - "line": 1, - "column": 23172 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService", - "start": 23173, - "end": 23285, - "loc": { - "start": { - "line": 1, - "column": 23173 - }, - "end": { - "line": 1, - "column": 23285 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23285, - "end": 23286, - "loc": { - "start": { - "line": 1, - "column": 23285 - }, - "end": { - "line": 1, - "column": 23286 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService", - "start": 23287, - "end": 23372, - "loc": { - "start": { - "line": 1, - "column": 23287 - }, - "end": { - "line": 1, - "column": 23372 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23372, - "end": 23373, - "loc": { - "start": { - "line": 1, - "column": 23372 - }, - "end": { - "line": 1, - "column": 23373 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 23374, - "end": 23382, - "loc": { - "start": { - "line": 1, - "column": 23374 - }, - "end": { - "line": 1, - "column": 23382 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23382, - "end": 23383, - "loc": { - "start": { - "line": 1, - "column": 23382 - }, - "end": { - "line": 1, - "column": 23383 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23383, - "end": 23384, - "loc": { - "start": { - "line": 1, - "column": 23383 - }, - "end": { - "line": 1, - "column": 23384 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23385, - "end": 23386, - "loc": { - "start": { - "line": 1, - "column": 23385 - }, - "end": { - "line": 1, - "column": 23386 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice", - "start": 23386, - "end": 23474, - "loc": { - "start": { - "line": 1, - "column": 23386 - }, - "end": { - "line": 1, - "column": 23474 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23474, - "end": 23475, - "loc": { - "start": { - "line": 1, - "column": 23474 - }, - "end": { - "line": 1, - "column": 23475 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService", - "start": 23476, - "end": 23591, - "loc": { - "start": { - "line": 1, - "column": 23476 - }, - "end": { - "line": 1, - "column": 23591 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23591, - "end": 23592, - "loc": { - "start": { - "line": 1, - "column": 23591 - }, - "end": { - "line": 1, - "column": 23592 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService", - "start": 23593, - "end": 23681, - "loc": { - "start": { - "line": 1, - "column": 23593 - }, - "end": { - "line": 1, - "column": 23681 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23681, - "end": 23682, - "loc": { - "start": { - "line": 1, - "column": 23681 - }, - "end": { - "line": 1, - "column": 23682 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 23683, - "end": 23691, - "loc": { - "start": { - "line": 1, - "column": 23683 - }, - "end": { - "line": 1, - "column": 23691 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23691, - "end": 23692, - "loc": { - "start": { - "line": 1, - "column": 23691 - }, - "end": { - "line": 1, - "column": 23692 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23692, - "end": 23693, - "loc": { - "start": { - "line": 1, - "column": 23692 - }, - "end": { - "line": 1, - "column": 23693 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23694, - "end": 23695, - "loc": { - "start": { - "line": 1, - "column": 23694 - }, - "end": { - "line": 1, - "column": 23695 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js", - "start": 23695, - "end": 23732, - "loc": { - "start": { - "line": 1, - "column": 23695 - }, - "end": { - "line": 1, - "column": 23732 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23732, - "end": 23733, - "loc": { - "start": { - "line": 1, - "column": 23732 - }, - "end": { - "line": 1, - "column": 23733 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/src/Service.js.html", - "start": 23734, - "end": 23781, - "loc": { - "start": { - "line": 1, - "column": 23734 - }, - "end": { - "line": 1, - "column": 23781 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23781, - "end": 23782, - "loc": { - "start": { - "line": 1, - "column": 23781 - }, - "end": { - "line": 1, - "column": 23782 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js", - "start": 23783, - "end": 23820, - "loc": { - "start": { - "line": 1, - "column": 23783 - }, - "end": { - "line": 1, - "column": 23820 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23820, - "end": 23821, - "loc": { - "start": { - "line": 1, - "column": 23820 - }, - "end": { - "line": 1, - "column": 23821 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 23822, - "end": 23828, - "loc": { - "start": { - "line": 1, - "column": 23822 - }, - "end": { - "line": 1, - "column": 23828 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23828, - "end": 23829, - "loc": { - "start": { - "line": 1, - "column": 23828 - }, - "end": { - "line": 1, - "column": 23829 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23829, - "end": 23830, - "loc": { - "start": { - "line": 1, - "column": 23829 - }, - "end": { - "line": 1, - "column": 23830 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23831, - "end": 23832, - "loc": { - "start": { - "line": 1, - "column": 23831 - }, - "end": { - "line": 1, - "column": 23832 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#characteristics", - "start": 23832, - "end": 23893, - "loc": { - "start": { - "line": 1, - "column": 23832 - }, - "end": { - "line": 1, - "column": 23893 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23893, - "end": 23894, - "loc": { - "start": { - "line": 1, - "column": 23893 - }, - "end": { - "line": 1, - "column": 23894 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics", - "start": 23895, - "end": 23983, - "loc": { - "start": { - "line": 1, - "column": 23895 - }, - "end": { - "line": 1, - "column": 23983 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 23983, - "end": 23984, - "loc": { - "start": { - "line": 1, - "column": 23983 - }, - "end": { - "line": 1, - "column": 23984 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#characteristics", - "start": 23985, - "end": 24046, - "loc": { - "start": { - "line": 1, - "column": 23985 - }, - "end": { - "line": 1, - "column": 24046 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24046, - "end": 24047, - "loc": { - "start": { - "line": 1, - "column": 24046 - }, - "end": { - "line": 1, - "column": 24047 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 24048, - "end": 24056, - "loc": { - "start": { - "line": 1, - "column": 24048 - }, - "end": { - "line": 1, - "column": 24056 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24056, - "end": 24057, - "loc": { - "start": { - "line": 1, - "column": 24056 - }, - "end": { - "line": 1, - "column": 24057 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24057, - "end": 24058, - "loc": { - "start": { - "line": 1, - "column": 24057 - }, - "end": { - "line": 1, - "column": 24058 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24059, - "end": 24060, - "loc": { - "start": { - "line": 1, - "column": 24059 - }, - "end": { - "line": 1, - "column": 24060 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#constructor", - "start": 24060, - "end": 24117, - "loc": { - "start": { - "line": 1, - "column": 24060 - }, - "end": { - "line": 1, - "column": 24117 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24117, - "end": 24118, - "loc": { - "start": { - "line": 1, - "column": 24117 - }, - "end": { - "line": 1, - "column": 24118 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-constructor-constructor", - "start": 24119, - "end": 24208, - "loc": { - "start": { - "line": 1, - "column": 24119 - }, - "end": { - "line": 1, - "column": 24208 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24208, - "end": 24209, - "loc": { - "start": { - "line": 1, - "column": 24208 - }, - "end": { - "line": 1, - "column": 24209 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#constructor", - "start": 24210, - "end": 24267, - "loc": { - "start": { - "line": 1, - "column": 24210 - }, - "end": { - "line": 1, - "column": 24267 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24267, - "end": 24268, - "loc": { - "start": { - "line": 1, - "column": 24267 - }, - "end": { - "line": 1, - "column": 24268 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 24269, - "end": 24277, - "loc": { - "start": { - "line": 1, - "column": 24269 - }, - "end": { - "line": 1, - "column": 24277 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24277, - "end": 24278, - "loc": { - "start": { - "line": 1, - "column": 24277 - }, - "end": { - "line": 1, - "column": 24278 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24278, - "end": 24279, - "loc": { - "start": { - "line": 1, - "column": 24278 - }, - "end": { - "line": 1, - "column": 24279 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24280, - "end": 24281, - "loc": { - "start": { - "line": 1, - "column": 24280 - }, - "end": { - "line": 1, - "column": 24281 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#monitorcharacteristic", - "start": 24281, - "end": 24348, - "loc": { - "start": { - "line": 1, - "column": 24281 - }, - "end": { - "line": 1, - "column": 24348 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24348, - "end": 24349, - "loc": { - "start": { - "line": 1, - "column": 24348 - }, - "end": { - "line": 1, - "column": 24349 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic", - "start": 24350, - "end": 24444, - "loc": { - "start": { - "line": 1, - "column": 24350 - }, - "end": { - "line": 1, - "column": 24444 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24444, - "end": 24445, - "loc": { - "start": { - "line": 1, - "column": 24444 - }, - "end": { - "line": 1, - "column": 24445 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic", - "start": 24446, - "end": 24513, - "loc": { - "start": { - "line": 1, - "column": 24446 - }, - "end": { - "line": 1, - "column": 24513 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24513, - "end": 24514, - "loc": { - "start": { - "line": 1, - "column": 24513 - }, - "end": { - "line": 1, - "column": 24514 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 24515, - "end": 24523, - "loc": { - "start": { - "line": 1, - "column": 24515 - }, - "end": { - "line": 1, - "column": 24523 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24523, - "end": 24524, - "loc": { - "start": { - "line": 1, - "column": 24523 - }, - "end": { - "line": 1, - "column": 24524 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24524, - "end": 24525, - "loc": { - "start": { - "line": 1, - "column": 24524 - }, - "end": { - "line": 1, - "column": 24525 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24526, - "end": 24527, - "loc": { - "start": { - "line": 1, - "column": 24526 - }, - "end": { - "line": 1, - "column": 24527 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#readcharacteristic", - "start": 24527, - "end": 24591, - "loc": { - "start": { - "line": 1, - "column": 24527 - }, - "end": { - "line": 1, - "column": 24591 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24591, - "end": 24592, - "loc": { - "start": { - "line": 1, - "column": 24591 - }, - "end": { - "line": 1, - "column": 24592 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic", - "start": 24593, - "end": 24684, - "loc": { - "start": { - "line": 1, - "column": 24593 - }, - "end": { - "line": 1, - "column": 24684 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24684, - "end": 24685, - "loc": { - "start": { - "line": 1, - "column": 24684 - }, - "end": { - "line": 1, - "column": 24685 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#readCharacteristic", - "start": 24686, - "end": 24750, - "loc": { - "start": { - "line": 1, - "column": 24686 - }, - "end": { - "line": 1, - "column": 24750 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24750, - "end": 24751, - "loc": { - "start": { - "line": 1, - "column": 24750 - }, - "end": { - "line": 1, - "column": 24751 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 24752, - "end": 24760, - "loc": { - "start": { - "line": 1, - "column": 24752 - }, - "end": { - "line": 1, - "column": 24760 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24760, - "end": 24761, - "loc": { - "start": { - "line": 1, - "column": 24760 - }, - "end": { - "line": 1, - "column": 24761 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24761, - "end": 24762, - "loc": { - "start": { - "line": 1, - "column": 24761 - }, - "end": { - "line": 1, - "column": 24762 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24763, - "end": 24764, - "loc": { - "start": { - "line": 1, - "column": 24763 - }, - "end": { - "line": 1, - "column": 24764 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse", - "start": 24764, - "end": 24841, - "loc": { - "start": { - "line": 1, - "column": 24764 - }, - "end": { - "line": 1, - "column": 24841 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24841, - "end": 24842, - "loc": { - "start": { - "line": 1, - "column": 24841 - }, - "end": { - "line": 1, - "column": 24842 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse", - "start": 24843, - "end": 24947, - "loc": { - "start": { - "line": 1, - "column": 24843 - }, - "end": { - "line": 1, - "column": 24947 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 24947, - "end": 24948, - "loc": { - "start": { - "line": 1, - "column": 24947 - }, - "end": { - "line": 1, - "column": 24948 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse", - "start": 24949, - "end": 25026, - "loc": { - "start": { - "line": 1, - "column": 24949 - }, - "end": { - "line": 1, - "column": 25026 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25026, - "end": 25027, - "loc": { - "start": { - "line": 1, - "column": 25026 - }, - "end": { - "line": 1, - "column": 25027 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 25028, - "end": 25036, - "loc": { - "start": { - "line": 1, - "column": 25028 - }, - "end": { - "line": 1, - "column": 25036 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25036, - "end": 25037, - "loc": { - "start": { - "line": 1, - "column": 25036 - }, - "end": { - "line": 1, - "column": 25037 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25037, - "end": 25038, - "loc": { - "start": { - "line": 1, - "column": 25037 - }, - "end": { - "line": 1, - "column": 25038 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25039, - "end": 25040, - "loc": { - "start": { - "line": 1, - "column": 25039 - }, - "end": { - "line": 1, - "column": 25040 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse", - "start": 25040, - "end": 25120, - "loc": { - "start": { - "line": 1, - "column": 25040 - }, - "end": { - "line": 1, - "column": 25120 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25120, - "end": 25121, - "loc": { - "start": { - "line": 1, - "column": 25120 - }, - "end": { - "line": 1, - "column": 25121 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse", - "start": 25122, - "end": 25229, - "loc": { - "start": { - "line": 1, - "column": 25122 - }, - "end": { - "line": 1, - "column": 25229 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25229, - "end": 25230, - "loc": { - "start": { - "line": 1, - "column": 25229 - }, - "end": { - "line": 1, - "column": 25230 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse", - "start": 25231, - "end": 25311, - "loc": { - "start": { - "line": 1, - "column": 25231 - }, - "end": { - "line": 1, - "column": 25311 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25311, - "end": 25312, - "loc": { - "start": { - "line": 1, - "column": 25311 - }, - "end": { - "line": 1, - "column": 25312 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "method", - "start": 25313, - "end": 25321, - "loc": { - "start": { - "line": 1, - "column": 25313 - }, - "end": { - "line": 1, - "column": 25321 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25321, - "end": 25322, - "loc": { - "start": { - "line": 1, - "column": 25321 - }, - "end": { - "line": 1, - "column": 25322 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25322, - "end": 25323, - "loc": { - "start": { - "line": 1, - "column": 25322 - }, - "end": { - "line": 1, - "column": 25323 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25324, - "end": 25325, - "loc": { - "start": { - "line": 1, - "column": 25324 - }, - "end": { - "line": 1, - "column": 25325 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/utils.js", - "start": 25325, - "end": 25360, - "loc": { - "start": { - "line": 1, - "column": 25325 - }, - "end": { - "line": 1, - "column": 25360 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25360, - "end": 25361, - "loc": { - "start": { - "line": 1, - "column": 25360 - }, - "end": { - "line": 1, - "column": 25361 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file/react-native-ble-plx/src/Utils.js.html", - "start": 25362, - "end": 25407, - "loc": { - "start": { - "line": 1, - "column": 25362 - }, - "end": { - "line": 1, - "column": 25407 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25407, - "end": 25408, - "loc": { - "start": { - "line": 1, - "column": 25407 - }, - "end": { - "line": 1, - "column": 25408 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native-ble-plx/src/Utils.js", - "start": 25409, - "end": 25444, - "loc": { - "start": { - "line": 1, - "column": 25409 - }, - "end": { - "line": 1, - "column": 25444 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25444, - "end": 25445, - "loc": { - "start": { - "line": 1, - "column": 25444 - }, - "end": { - "line": 1, - "column": 25445 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "file", - "start": 25446, - "end": 25452, - "loc": { - "start": { - "line": 1, - "column": 25446 - }, - "end": { - "line": 1, - "column": 25452 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25452, - "end": 25453, - "loc": { - "start": { - "line": 1, - "column": 25452 - }, - "end": { - "line": 1, - "column": 25453 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25453, - "end": 25454, - "loc": { - "start": { - "line": 1, - "column": 25453 - }, - "end": { - "line": 1, - "column": 25454 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25454, - "end": 25455, - "loc": { - "start": { - "line": 1, - "column": 25454 - }, - "end": { - "line": 1, - "column": 25455 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 25455, - "end": 25455, - "loc": { - "start": { - "line": 1, - "column": 25455 - }, - "end": { - "line": 1, - "column": 25455 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/doc/script/test-summary.js.json b/docs/ast/source/doc/script/test-summary.js.json deleted file mode 100644 index 99b3902c..00000000 --- a/docs/ast/source/doc/script/test-summary.js.json +++ /dev/null @@ -1,14027 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 1760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 1760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 1760, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "expression": { - "type": "CallExpression", - "start": 0, - "end": 1759, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 54, - "column": 4 - } - }, - "callee": { - "type": "FunctionExpression", - "start": 1, - "end": 1756, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 13, - "end": 1756, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "body": [ - { - "type": "FunctionDeclaration", - "start": 17, - "end": 1385, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "id": { - "type": "Identifier", - "start": 26, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 11 - }, - "end": { - "line": 2, - "column": 17 - }, - "identifierName": "toggle" - }, - "name": "toggle" - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 33, - "end": 35, - "loc": { - "start": { - "line": 2, - "column": 18 - }, - "end": { - "line": 2, - "column": 20 - }, - "identifierName": "ev" - }, - "name": "ev" - } - ], - "body": { - "type": "BlockStatement", - "start": 37, - "end": 1385, - "loc": { - "start": { - "line": 2, - "column": 22 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 43, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 27 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 47, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 26 - } - }, - "id": { - "type": "Identifier", - "start": 47, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 14 - }, - "identifierName": "button" - }, - "name": "button" - }, - "init": { - "type": "MemberExpression", - "start": 56, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 56, - "end": 58, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 19 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 59, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 26 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 71, - "end": 108, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 41 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 75, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 40 - } - }, - "id": { - "type": "Identifier", - "start": 75, - "end": 81, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 14 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "init": { - "type": "MemberExpression", - "start": 84, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 40 - } - }, - "object": { - "type": "MemberExpression", - "start": 84, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 84, - "end": 86, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 19 - }, - "identifierName": "ev" - }, - "name": "ev" - }, - "property": { - "type": "Identifier", - "start": 87, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 26 - }, - "identifierName": "target" - }, - "name": "target" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 94, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 40 - }, - "identifierName": "parentElement" - }, - "name": "parentElement" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "WhileStatement", - "start": 113, - "end": 260, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 120, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 17 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "body": { - "type": "BlockStatement", - "start": 128, - "end": 260, - "loc": { - "start": { - "line": 5, - "column": 19 - }, - "end": { - "line": 8, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 136, - "end": 217, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 87 - } - }, - "test": { - "type": "LogicalExpression", - "start": 140, - "end": 209, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 79 - } - }, - "left": { - "type": "BinaryExpression", - "start": 140, - "end": 163, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 33 - } - }, - "left": { - "type": "MemberExpression", - "start": 140, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 140, - "end": 146, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 16 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 147, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 24 - }, - "identifierName": "tagName" - }, - "name": "tagName" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 159, - "end": 163, - "loc": { - "start": { - "line": 6, - "column": 29 - }, - "end": { - "line": 6, - "column": 33 - } - }, - "extra": { - "rawValue": "TR", - "raw": "'TR'" - }, - "value": "TR" - } - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 167, - "end": 209, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 79 - } - }, - "callee": { - "type": "MemberExpression", - "start": 167, - "end": 192, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 62 - } - }, - "object": { - "type": "MemberExpression", - "start": 167, - "end": 183, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 53 - } - }, - "object": { - "type": "Identifier", - "start": 167, - "end": 173, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 43 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 174, - "end": 183, - "loc": { - "start": { - "line": 6, - "column": 44 - }, - "end": { - "line": 6, - "column": 53 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 184, - "end": 192, - "loc": { - "start": { - "line": 6, - "column": 54 - }, - "end": { - "line": 6, - "column": 62 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 193, - "end": 208, - "loc": { - "start": { - "line": 6, - "column": 63 - }, - "end": { - "line": 6, - "column": 78 - } - }, - "extra": { - "rawValue": "test-describe", - "raw": "'test-describe'" - }, - "value": "test-describe" - } - ] - } - }, - "consequent": { - "type": "BreakStatement", - "start": 211, - "end": 217, - "loc": { - "start": { - "line": 6, - "column": 81 - }, - "end": { - "line": 6, - "column": 87 - } - }, - "label": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 224, - "end": 254, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 36 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 224, - "end": 253, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 35 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 224, - "end": 230, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 12 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "right": { - "type": "MemberExpression", - "start": 233, - "end": 253, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 233, - "end": 239, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 21 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 240, - "end": 253, - "loc": { - "start": { - "line": 7, - "column": 22 - }, - "end": { - "line": 7, - "column": 35 - }, - "identifierName": "parentElement" - }, - "name": "parentElement" - }, - "computed": false - } - } - } - ], - "directives": [] - } - }, - { - "type": "IfStatement", - "start": 266, - "end": 286, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "test": { - "type": "UnaryExpression", - "start": 270, - "end": 277, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 15 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 271, - "end": 277, - "loc": { - "start": { - "line": 10, - "column": 9 - }, - "end": { - "line": 10, - "column": 15 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 279, - "end": 286, - "loc": { - "start": { - "line": 10, - "column": 17 - }, - "end": { - "line": 10, - "column": 24 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 292, - "end": 306, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 18 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 296, - "end": 305, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 17 - } - }, - "id": { - "type": "Identifier", - "start": 296, - "end": 305, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 17 - }, - "identifierName": "direction" - }, - "name": "direction" - }, - "init": null - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 311, - "end": 586, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 21, - "column": 5 - } - }, - "test": { - "type": "CallExpression", - "start": 315, - "end": 350, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 43 - } - }, - "callee": { - "type": "MemberExpression", - "start": 315, - "end": 340, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 33 - } - }, - "object": { - "type": "MemberExpression", - "start": 315, - "end": 331, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 24 - } - }, - "object": { - "type": "Identifier", - "start": 315, - "end": 321, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 14 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 322, - "end": 331, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 24 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 332, - "end": 340, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 33 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 341, - "end": 349, - "loc": { - "start": { - "line": 13, - "column": 34 - }, - "end": { - "line": 13, - "column": 42 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - }, - "consequent": { - "type": "BlockStatement", - "start": 352, - "end": 466, - "loc": { - "start": { - "line": 13, - "column": 45 - }, - "end": { - "line": 17, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 360, - "end": 394, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 40 - } - }, - "expression": { - "type": "CallExpression", - "start": 360, - "end": 393, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 360, - "end": 383, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 29 - } - }, - "object": { - "type": "MemberExpression", - "start": 360, - "end": 376, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 360, - "end": 366, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 367, - "end": 376, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 377, - "end": 383, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 29 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 384, - "end": 392, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 14, - "column": 38 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 401, - "end": 432, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 37 - } - }, - "expression": { - "type": "CallExpression", - "start": 401, - "end": 431, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 401, - "end": 421, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 26 - } - }, - "object": { - "type": "MemberExpression", - "start": 401, - "end": 417, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 401, - "end": 407, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 408, - "end": 417, - "loc": { - "start": { - "line": 15, - "column": 13 - }, - "end": { - "line": 15, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 418, - "end": 421, - "loc": { - "start": { - "line": 15, - "column": 23 - }, - "end": { - "line": 15, - "column": 26 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 422, - "end": 430, - "loc": { - "start": { - "line": 15, - "column": 27 - }, - "end": { - "line": 15, - "column": 35 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 439, - "end": 460, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 439, - "end": 459, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 439, - "end": 448, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 15 - }, - "identifierName": "direction" - }, - "name": "direction" - }, - "right": { - "type": "StringLiteral", - "start": 451, - "end": 459, - "loc": { - "start": { - "line": 16, - "column": 18 - }, - "end": { - "line": 16, - "column": 26 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - } - } - ], - "directives": [] - }, - "alternate": { - "type": "BlockStatement", - "start": 472, - "end": 586, - "loc": { - "start": { - "line": 17, - "column": 11 - }, - "end": { - "line": 21, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 480, - "end": 514, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 40 - } - }, - "expression": { - "type": "CallExpression", - "start": 480, - "end": 513, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 39 - } - }, - "callee": { - "type": "MemberExpression", - "start": 480, - "end": 503, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 29 - } - }, - "object": { - "type": "MemberExpression", - "start": 480, - "end": 496, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 480, - "end": 486, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 487, - "end": 496, - "loc": { - "start": { - "line": 18, - "column": 13 - }, - "end": { - "line": 18, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 497, - "end": 503, - "loc": { - "start": { - "line": 18, - "column": 23 - }, - "end": { - "line": 18, - "column": 29 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 504, - "end": 512, - "loc": { - "start": { - "line": 18, - "column": 30 - }, - "end": { - "line": 18, - "column": 38 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 521, - "end": 552, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 37 - } - }, - "expression": { - "type": "CallExpression", - "start": 521, - "end": 551, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 521, - "end": 541, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 26 - } - }, - "object": { - "type": "MemberExpression", - "start": 521, - "end": 537, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 521, - "end": 527, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - }, - "identifierName": "button" - }, - "name": "button" - }, - "property": { - "type": "Identifier", - "start": 528, - "end": 537, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 22 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 538, - "end": 541, - "loc": { - "start": { - "line": 19, - "column": 23 - }, - "end": { - "line": 19, - "column": 26 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 542, - "end": 550, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 35 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 559, - "end": 580, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 559, - "end": 579, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 559, - "end": 568, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 15 - }, - "identifierName": "direction" - }, - "name": "direction" - }, - "right": { - "type": "StringLiteral", - "start": 571, - "end": 579, - "loc": { - "start": { - "line": 20, - "column": 18 - }, - "end": { - "line": 20, - "column": 26 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 592, - "end": 653, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 65 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 596, - "end": 652, - "loc": { - "start": { - "line": 23, - "column": 8 - }, - "end": { - "line": 23, - "column": 64 - } - }, - "id": { - "type": "Identifier", - "start": 596, - "end": 607, - "loc": { - "start": { - "line": 23, - "column": 8 - }, - "end": { - "line": 23, - "column": 19 - }, - "identifierName": "targetDepth" - }, - "name": "targetDepth" - }, - "init": { - "type": "BinaryExpression", - "start": 610, - "end": 652, - "loc": { - "start": { - "line": 23, - "column": 22 - }, - "end": { - "line": 23, - "column": 64 - } - }, - "left": { - "type": "CallExpression", - "start": 610, - "end": 648, - "loc": { - "start": { - "line": 23, - "column": 22 - }, - "end": { - "line": 23, - "column": 60 - } - }, - "callee": { - "type": "Identifier", - "start": 610, - "end": 618, - "loc": { - "start": { - "line": 23, - "column": 22 - }, - "end": { - "line": 23, - "column": 30 - }, - "identifierName": "parseInt" - }, - "name": "parseInt" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 619, - "end": 643, - "loc": { - "start": { - "line": 23, - "column": 31 - }, - "end": { - "line": 23, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 619, - "end": 633, - "loc": { - "start": { - "line": 23, - "column": 31 - }, - "end": { - "line": 23, - "column": 45 - } - }, - "object": { - "type": "Identifier", - "start": 619, - "end": 625, - "loc": { - "start": { - "line": 23, - "column": 31 - }, - "end": { - "line": 23, - "column": 37 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 626, - "end": 633, - "loc": { - "start": { - "line": 23, - "column": 38 - }, - "end": { - "line": 23, - "column": 45 - }, - "identifierName": "dataset" - }, - "name": "dataset" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 634, - "end": 643, - "loc": { - "start": { - "line": 23, - "column": 46 - }, - "end": { - "line": 23, - "column": 55 - }, - "identifierName": "testDepth" - }, - "name": "testDepth" - }, - "computed": false - }, - { - "type": "NumericLiteral", - "start": 645, - "end": 647, - "loc": { - "start": { - "line": 23, - "column": 57 - }, - "end": { - "line": 23, - "column": 59 - } - }, - "extra": { - "rawValue": 10, - "raw": "10" - }, - "value": 10 - } - ] - }, - "operator": "+", - "right": { - "type": "NumericLiteral", - "start": 651, - "end": 652, - "loc": { - "start": { - "line": 23, - "column": 63 - }, - "end": { - "line": 23, - "column": 64 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - } - } - ], - "kind": "var" - }, - { - "type": "VariableDeclaration", - "start": 658, - "end": 702, - "loc": { - "start": { - "line": 24, - "column": 4 - }, - "end": { - "line": 24, - "column": 48 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 662, - "end": 701, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 47 - } - }, - "id": { - "type": "Identifier", - "start": 662, - "end": 673, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 19 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "init": { - "type": "MemberExpression", - "start": 676, - "end": 701, - "loc": { - "start": { - "line": 24, - "column": 22 - }, - "end": { - "line": 24, - "column": 47 - } - }, - "object": { - "type": "Identifier", - "start": 676, - "end": 682, - "loc": { - "start": { - "line": 24, - "column": 22 - }, - "end": { - "line": 24, - "column": 28 - }, - "identifierName": "parent" - }, - "name": "parent" - }, - "property": { - "type": "Identifier", - "start": 683, - "end": 701, - "loc": { - "start": { - "line": 24, - "column": 29 - }, - "end": { - "line": 24, - "column": 47 - }, - "identifierName": "nextElementSibling" - }, - "name": "nextElementSibling" - }, - "computed": false - } - } - ], - "kind": "var" - }, - { - "type": "WhileStatement", - "start": 707, - "end": 1381, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 42, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 714, - "end": 725, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 22 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "body": { - "type": "BlockStatement", - "start": 727, - "end": 1381, - "loc": { - "start": { - "line": 25, - "column": 24 - }, - "end": { - "line": 42, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 735, - "end": 791, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 62 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 739, - "end": 790, - "loc": { - "start": { - "line": 26, - "column": 10 - }, - "end": { - "line": 26, - "column": 61 - } - }, - "id": { - "type": "Identifier", - "start": 739, - "end": 744, - "loc": { - "start": { - "line": 26, - "column": 10 - }, - "end": { - "line": 26, - "column": 15 - }, - "identifierName": "depth" - }, - "name": "depth" - }, - "init": { - "type": "CallExpression", - "start": 747, - "end": 790, - "loc": { - "start": { - "line": 26, - "column": 18 - }, - "end": { - "line": 26, - "column": 61 - } - }, - "callee": { - "type": "Identifier", - "start": 747, - "end": 755, - "loc": { - "start": { - "line": 26, - "column": 18 - }, - "end": { - "line": 26, - "column": 26 - }, - "identifierName": "parseInt" - }, - "name": "parseInt" - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 756, - "end": 785, - "loc": { - "start": { - "line": 26, - "column": 27 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "object": { - "type": "MemberExpression", - "start": 756, - "end": 775, - "loc": { - "start": { - "line": 26, - "column": 27 - }, - "end": { - "line": 26, - "column": 46 - } - }, - "object": { - "type": "Identifier", - "start": 756, - "end": 767, - "loc": { - "start": { - "line": 26, - "column": 27 - }, - "end": { - "line": 26, - "column": 38 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "property": { - "type": "Identifier", - "start": 768, - "end": 775, - "loc": { - "start": { - "line": 26, - "column": 39 - }, - "end": { - "line": 26, - "column": 46 - }, - "identifierName": "dataset" - }, - "name": "dataset" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 776, - "end": 785, - "loc": { - "start": { - "line": 26, - "column": 47 - }, - "end": { - "line": 26, - "column": 56 - }, - "identifierName": "testDepth" - }, - "name": "testDepth" - }, - "computed": false - }, - { - "type": "NumericLiteral", - "start": 787, - "end": 789, - "loc": { - "start": { - "line": 26, - "column": 58 - }, - "end": { - "line": 26, - "column": 60 - } - }, - "extra": { - "rawValue": 10, - "raw": "10" - }, - "value": 10 - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 798, - "end": 1323, - "loc": { - "start": { - "line": 27, - "column": 6 - }, - "end": { - "line": 40, - "column": 7 - } - }, - "test": { - "type": "BinaryExpression", - "start": 802, - "end": 822, - "loc": { - "start": { - "line": 27, - "column": 10 - }, - "end": { - "line": 27, - "column": 30 - } - }, - "left": { - "type": "Identifier", - "start": 802, - "end": 807, - "loc": { - "start": { - "line": 27, - "column": 10 - }, - "end": { - "line": 27, - "column": 15 - }, - "identifierName": "depth" - }, - "name": "depth" - }, - "operator": ">=", - "right": { - "type": "Identifier", - "start": 811, - "end": 822, - "loc": { - "start": { - "line": 27, - "column": 19 - }, - "end": { - "line": 27, - "column": 30 - }, - "identifierName": "targetDepth" - }, - "name": "targetDepth" - } - }, - "consequent": { - "type": "BlockStatement", - "start": 824, - "end": 1293, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 38, - "column": 7 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 834, - "end": 1285, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - } - }, - "test": { - "type": "BinaryExpression", - "start": 838, - "end": 860, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 34 - } - }, - "left": { - "type": "Identifier", - "start": 838, - "end": 847, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 21 - }, - "identifierName": "direction" - }, - "name": "direction" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 852, - "end": 860, - "loc": { - "start": { - "line": 28, - "column": 26 - }, - "end": { - "line": 28, - "column": 34 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - }, - "consequent": { - "type": "BlockStatement", - "start": 862, - "end": 942, - "loc": { - "start": { - "line": 28, - "column": 36 - }, - "end": { - "line": 30, - "column": 9 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 874, - "end": 932, - "loc": { - "start": { - "line": 29, - "column": 10 - }, - "end": { - "line": 29, - "column": 68 - } - }, - "test": { - "type": "BinaryExpression", - "start": 878, - "end": 899, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 35 - } - }, - "left": { - "type": "Identifier", - "start": 878, - "end": 883, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 19 - }, - "identifierName": "depth" - }, - "name": "depth" - }, - "operator": "===", - "right": { - "type": "Identifier", - "start": 888, - "end": 899, - "loc": { - "start": { - "line": 29, - "column": 24 - }, - "end": { - "line": 29, - "column": 35 - }, - "identifierName": "targetDepth" - }, - "name": "targetDepth" - } - }, - "consequent": { - "type": "ExpressionStatement", - "start": 901, - "end": 932, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 68 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 901, - "end": 931, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 67 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 901, - "end": 926, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 62 - } - }, - "object": { - "type": "MemberExpression", - "start": 901, - "end": 918, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 54 - } - }, - "object": { - "type": "Identifier", - "start": 901, - "end": 912, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 48 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "property": { - "type": "Identifier", - "start": 913, - "end": 918, - "loc": { - "start": { - "line": 29, - "column": 49 - }, - "end": { - "line": 29, - "column": 54 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 919, - "end": 926, - "loc": { - "start": { - "line": 29, - "column": 55 - }, - "end": { - "line": 29, - "column": 62 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 929, - "end": 931, - "loc": { - "start": { - "line": 29, - "column": 65 - }, - "end": { - "line": 29, - "column": 67 - } - }, - "extra": { - "rawValue": "", - "raw": "''" - }, - "value": "" - } - } - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": { - "type": "IfStatement", - "start": 948, - "end": 1285, - "loc": { - "start": { - "line": 30, - "column": 15 - }, - "end": { - "line": 37, - "column": 9 - } - }, - "test": { - "type": "BinaryExpression", - "start": 952, - "end": 974, - "loc": { - "start": { - "line": 30, - "column": 19 - }, - "end": { - "line": 30, - "column": 41 - } - }, - "left": { - "type": "Identifier", - "start": 952, - "end": 961, - "loc": { - "start": { - "line": 30, - "column": 19 - }, - "end": { - "line": 30, - "column": 28 - }, - "identifierName": "direction" - }, - "name": "direction" - }, - "operator": "===", - "right": { - "type": "StringLiteral", - "start": 966, - "end": 974, - "loc": { - "start": { - "line": 30, - "column": 33 - }, - "end": { - "line": 30, - "column": 41 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - }, - "consequent": { - "type": "BlockStatement", - "start": 976, - "end": 1285, - "loc": { - "start": { - "line": 30, - "column": 43 - }, - "end": { - "line": 37, - "column": 9 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 988, - "end": 1023, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 45 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 988, - "end": 1022, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 44 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 988, - "end": 1013, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 35 - } - }, - "object": { - "type": "MemberExpression", - "start": 988, - "end": 1005, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 988, - "end": 999, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 21 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "property": { - "type": "Identifier", - "start": 1000, - "end": 1005, - "loc": { - "start": { - "line": 31, - "column": 22 - }, - "end": { - "line": 31, - "column": 27 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1006, - "end": 1013, - "loc": { - "start": { - "line": 31, - "column": 28 - }, - "end": { - "line": 31, - "column": 35 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 1016, - "end": 1022, - "loc": { - "start": { - "line": 31, - "column": 38 - }, - "end": { - "line": 31, - "column": 44 - } - }, - "extra": { - "rawValue": "none", - "raw": "'none'" - }, - "value": "none" - } - } - }, - { - "type": "VariableDeclaration", - "start": 1034, - "end": 1089, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 65 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1038, - "end": 1088, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 64 - } - }, - "id": { - "type": "Identifier", - "start": 1038, - "end": 1049, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 25 - }, - "identifierName": "innerButton" - }, - "name": "innerButton" - }, - "init": { - "type": "CallExpression", - "start": 1052, - "end": 1088, - "loc": { - "start": { - "line": 32, - "column": 28 - }, - "end": { - "line": 32, - "column": 64 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1052, - "end": 1077, - "loc": { - "start": { - "line": 32, - "column": 28 - }, - "end": { - "line": 32, - "column": 53 - } - }, - "object": { - "type": "Identifier", - "start": 1052, - "end": 1063, - "loc": { - "start": { - "line": 32, - "column": 28 - }, - "end": { - "line": 32, - "column": 39 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "property": { - "type": "Identifier", - "start": 1064, - "end": 1077, - "loc": { - "start": { - "line": 32, - "column": 40 - }, - "end": { - "line": 32, - "column": 53 - }, - "identifierName": "querySelector" - }, - "name": "querySelector" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1078, - "end": 1087, - "loc": { - "start": { - "line": 32, - "column": 54 - }, - "end": { - "line": 32, - "column": 63 - } - }, - "extra": { - "rawValue": ".toggle", - "raw": "'.toggle'" - }, - "value": ".toggle" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "IfStatement", - "start": 1100, - "end": 1275, - "loc": { - "start": { - "line": 33, - "column": 10 - }, - "end": { - "line": 36, - "column": 11 - } - }, - "test": { - "type": "LogicalExpression", - "start": 1104, - "end": 1159, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 69 - } - }, - "left": { - "type": "Identifier", - "start": 1104, - "end": 1115, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 25 - }, - "identifierName": "innerButton" - }, - "name": "innerButton" - }, - "operator": "&&", - "right": { - "type": "CallExpression", - "start": 1119, - "end": 1159, - "loc": { - "start": { - "line": 33, - "column": 29 - }, - "end": { - "line": 33, - "column": 69 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1119, - "end": 1149, - "loc": { - "start": { - "line": 33, - "column": 29 - }, - "end": { - "line": 33, - "column": 59 - } - }, - "object": { - "type": "MemberExpression", - "start": 1119, - "end": 1140, - "loc": { - "start": { - "line": 33, - "column": 29 - }, - "end": { - "line": 33, - "column": 50 - } - }, - "object": { - "type": "Identifier", - "start": 1119, - "end": 1130, - "loc": { - "start": { - "line": 33, - "column": 29 - }, - "end": { - "line": 33, - "column": 40 - }, - "identifierName": "innerButton" - }, - "name": "innerButton" - }, - "property": { - "type": "Identifier", - "start": 1131, - "end": 1140, - "loc": { - "start": { - "line": 33, - "column": 41 - }, - "end": { - "line": 33, - "column": 50 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1141, - "end": 1149, - "loc": { - "start": { - "line": 33, - "column": 51 - }, - "end": { - "line": 33, - "column": 59 - }, - "identifierName": "contains" - }, - "name": "contains" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1150, - "end": 1158, - "loc": { - "start": { - "line": 33, - "column": 60 - }, - "end": { - "line": 33, - "column": 68 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - "consequent": { - "type": "BlockStatement", - "start": 1161, - "end": 1275, - "loc": { - "start": { - "line": 33, - "column": 71 - }, - "end": { - "line": 36, - "column": 11 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1175, - "end": 1214, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 51 - } - }, - "expression": { - "type": "CallExpression", - "start": 1175, - "end": 1213, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 50 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1175, - "end": 1203, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 40 - } - }, - "object": { - "type": "MemberExpression", - "start": 1175, - "end": 1196, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 33 - } - }, - "object": { - "type": "Identifier", - "start": 1175, - "end": 1186, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 23 - }, - "identifierName": "innerButton" - }, - "name": "innerButton" - }, - "property": { - "type": "Identifier", - "start": 1187, - "end": 1196, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 33 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1197, - "end": 1203, - "loc": { - "start": { - "line": 34, - "column": 34 - }, - "end": { - "line": 34, - "column": 40 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1204, - "end": 1212, - "loc": { - "start": { - "line": 34, - "column": 41 - }, - "end": { - "line": 34, - "column": 49 - } - }, - "extra": { - "rawValue": "opened", - "raw": "'opened'" - }, - "value": "opened" - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 1227, - "end": 1263, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 48 - } - }, - "expression": { - "type": "CallExpression", - "start": 1227, - "end": 1262, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 47 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1227, - "end": 1252, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 37 - } - }, - "object": { - "type": "MemberExpression", - "start": 1227, - "end": 1248, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 33 - } - }, - "object": { - "type": "Identifier", - "start": 1227, - "end": 1238, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 23 - }, - "identifierName": "innerButton" - }, - "name": "innerButton" - }, - "property": { - "type": "Identifier", - "start": 1239, - "end": 1248, - "loc": { - "start": { - "line": 35, - "column": 24 - }, - "end": { - "line": 35, - "column": 33 - }, - "identifierName": "classList" - }, - "name": "classList" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1249, - "end": 1252, - "loc": { - "start": { - "line": 35, - "column": 34 - }, - "end": { - "line": 35, - "column": 37 - }, - "identifierName": "add" - }, - "name": "add" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1253, - "end": 1261, - "loc": { - "start": { - "line": 35, - "column": 38 - }, - "end": { - "line": 35, - "column": 46 - } - }, - "extra": { - "rawValue": "closed", - "raw": "'closed'" - }, - "value": "closed" - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - }, - "alternate": null - } - } - ], - "directives": [] - }, - "alternate": { - "type": "BlockStatement", - "start": 1299, - "end": 1323, - "loc": { - "start": { - "line": 38, - "column": 13 - }, - "end": { - "line": 40, - "column": 7 - } - }, - "body": [ - { - "type": "BreakStatement", - "start": 1309, - "end": 1315, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 14 - } - }, - "label": null - } - ], - "directives": [] - } - }, - { - "type": "ExpressionStatement", - "start": 1330, - "end": 1375, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 51 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1330, - "end": 1374, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 50 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 1330, - "end": 1341, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 17 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "right": { - "type": "MemberExpression", - "start": 1344, - "end": 1374, - "loc": { - "start": { - "line": 41, - "column": 20 - }, - "end": { - "line": 41, - "column": 50 - } - }, - "object": { - "type": "Identifier", - "start": 1344, - "end": 1355, - "loc": { - "start": { - "line": 41, - "column": 20 - }, - "end": { - "line": 41, - "column": 31 - }, - "identifierName": "nextElement" - }, - "name": "nextElement" - }, - "property": { - "type": "Identifier", - "start": 1356, - "end": 1374, - "loc": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 50 - }, - "identifierName": "nextElementSibling" - }, - "name": "nextElementSibling" - }, - "computed": false - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 1389, - "end": 1471, - "loc": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 84 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1393, - "end": 1470, - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 45, - "column": 83 - } - }, - "id": { - "type": "Identifier", - "start": 1393, - "end": 1400, - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 45, - "column": 13 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "init": { - "type": "CallExpression", - "start": 1403, - "end": 1470, - "loc": { - "start": { - "line": 45, - "column": 16 - }, - "end": { - "line": 45, - "column": 83 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1403, - "end": 1428, - "loc": { - "start": { - "line": 45, - "column": 16 - }, - "end": { - "line": 45, - "column": 41 - } - }, - "object": { - "type": "Identifier", - "start": 1403, - "end": 1411, - "loc": { - "start": { - "line": 45, - "column": 16 - }, - "end": { - "line": 45, - "column": 24 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 1412, - "end": 1428, - "loc": { - "start": { - "line": 45, - "column": 25 - }, - "end": { - "line": 45, - "column": 41 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1429, - "end": 1469, - "loc": { - "start": { - "line": 45, - "column": 42 - }, - "end": { - "line": 45, - "column": 82 - } - }, - "extra": { - "rawValue": ".test-summary tr.test-describe .toggle", - "raw": "'.test-summary tr.test-describe .toggle'" - }, - "value": ".test-summary tr.test-describe .toggle" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 1474, - "end": 1570, - "loc": { - "start": { - "line": 46, - "column": 2 - }, - "end": { - "line": 48, - "column": 3 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 1479, - "end": 1488, - "loc": { - "start": { - "line": 46, - "column": 7 - }, - "end": { - "line": 46, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1483, - "end": 1488, - "loc": { - "start": { - "line": 46, - "column": 11 - }, - "end": { - "line": 46, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 1483, - "end": 1484, - "loc": { - "start": { - "line": 46, - "column": 11 - }, - "end": { - "line": 46, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 1487, - "end": 1488, - "loc": { - "start": { - "line": 46, - "column": 15 - }, - "end": { - "line": 46, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 1490, - "end": 1508, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 36 - } - }, - "left": { - "type": "Identifier", - "start": 1490, - "end": 1491, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 1494, - "end": 1508, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 1494, - "end": 1501, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 29 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "property": { - "type": "Identifier", - "start": 1502, - "end": 1508, - "loc": { - "start": { - "line": 46, - "column": 30 - }, - "end": { - "line": 46, - "column": 36 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 1510, - "end": 1513, - "loc": { - "start": { - "line": 46, - "column": 38 - }, - "end": { - "line": 46, - "column": 41 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 1510, - "end": 1511, - "loc": { - "start": { - "line": 46, - "column": 38 - }, - "end": { - "line": 46, - "column": 39 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 1515, - "end": 1570, - "loc": { - "start": { - "line": 46, - "column": 43 - }, - "end": { - "line": 48, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1521, - "end": 1566, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 49 - } - }, - "expression": { - "type": "CallExpression", - "start": 1521, - "end": 1565, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 48 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1521, - "end": 1548, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 31 - } - }, - "object": { - "type": "MemberExpression", - "start": 1521, - "end": 1531, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 14 - } - }, - "object": { - "type": "Identifier", - "start": 1521, - "end": 1528, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 11 - }, - "identifierName": "buttons" - }, - "name": "buttons" - }, - "property": { - "type": "Identifier", - "start": 1529, - "end": 1530, - "loc": { - "start": { - "line": 47, - "column": 12 - }, - "end": { - "line": 47, - "column": 13 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 1532, - "end": 1548, - "loc": { - "start": { - "line": 47, - "column": 15 - }, - "end": { - "line": 47, - "column": 31 - }, - "identifierName": "addEventListener" - }, - "name": "addEventListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1549, - "end": 1556, - "loc": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 39 - } - }, - "extra": { - "rawValue": "click", - "raw": "'click'" - }, - "value": "click" - }, - { - "type": "Identifier", - "start": 1558, - "end": 1564, - "loc": { - "start": { - "line": 47, - "column": 41 - }, - "end": { - "line": 47, - "column": 47 - }, - "identifierName": "toggle" - }, - "name": "toggle" - } - ] - } - } - ], - "directives": [] - } - }, - { - "type": "VariableDeclaration", - "start": 1574, - "end": 1660, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 88 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1578, - "end": 1659, - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 50, - "column": 87 - } - }, - "id": { - "type": "Identifier", - "start": 1578, - "end": 1590, - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 50, - "column": 18 - }, - "identifierName": "topDescribes" - }, - "name": "topDescribes" - }, - "init": { - "type": "CallExpression", - "start": 1593, - "end": 1659, - "loc": { - "start": { - "line": 50, - "column": 21 - }, - "end": { - "line": 50, - "column": 87 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1593, - "end": 1618, - "loc": { - "start": { - "line": 50, - "column": 21 - }, - "end": { - "line": 50, - "column": 46 - } - }, - "object": { - "type": "Identifier", - "start": 1593, - "end": 1601, - "loc": { - "start": { - "line": 50, - "column": 21 - }, - "end": { - "line": 50, - "column": 29 - }, - "identifierName": "document" - }, - "name": "document" - }, - "property": { - "type": "Identifier", - "start": 1602, - "end": 1618, - "loc": { - "start": { - "line": 50, - "column": 30 - }, - "end": { - "line": 50, - "column": 46 - }, - "identifierName": "querySelectorAll" - }, - "name": "querySelectorAll" - }, - "computed": false - }, - "arguments": [ - { - "type": "StringLiteral", - "start": 1619, - "end": 1658, - "loc": { - "start": { - "line": 50, - "column": 47 - }, - "end": { - "line": 50, - "column": 86 - } - }, - "extra": { - "rawValue": ".test-summary tr[data-test-depth=\"0\"]", - "raw": "'.test-summary tr[data-test-depth=\"0\"]'" - }, - "value": ".test-summary tr[data-test-depth=\"0\"]" - } - ] - } - } - ], - "kind": "var" - }, - { - "type": "ForStatement", - "start": 1663, - "end": 1754, - "loc": { - "start": { - "line": 51, - "column": 2 - }, - "end": { - "line": 53, - "column": 3 - } - }, - "init": { - "type": "VariableDeclaration", - "start": 1668, - "end": 1677, - "loc": { - "start": { - "line": 51, - "column": 7 - }, - "end": { - "line": 51, - "column": 16 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 1672, - "end": 1677, - "loc": { - "start": { - "line": 51, - "column": 11 - }, - "end": { - "line": 51, - "column": 16 - } - }, - "id": { - "type": "Identifier", - "start": 1672, - "end": 1673, - "loc": { - "start": { - "line": 51, - "column": 11 - }, - "end": { - "line": 51, - "column": 12 - }, - "identifierName": "i" - }, - "name": "i" - }, - "init": { - "type": "NumericLiteral", - "start": 1676, - "end": 1677, - "loc": { - "start": { - "line": 51, - "column": 15 - }, - "end": { - "line": 51, - "column": 16 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - ], - "kind": "var" - }, - "test": { - "type": "BinaryExpression", - "start": 1679, - "end": 1702, - "loc": { - "start": { - "line": 51, - "column": 18 - }, - "end": { - "line": 51, - "column": 41 - } - }, - "left": { - "type": "Identifier", - "start": 1679, - "end": 1680, - "loc": { - "start": { - "line": 51, - "column": 18 - }, - "end": { - "line": 51, - "column": 19 - }, - "identifierName": "i" - }, - "name": "i" - }, - "operator": "<", - "right": { - "type": "MemberExpression", - "start": 1683, - "end": 1702, - "loc": { - "start": { - "line": 51, - "column": 22 - }, - "end": { - "line": 51, - "column": 41 - } - }, - "object": { - "type": "Identifier", - "start": 1683, - "end": 1695, - "loc": { - "start": { - "line": 51, - "column": 22 - }, - "end": { - "line": 51, - "column": 34 - }, - "identifierName": "topDescribes" - }, - "name": "topDescribes" - }, - "property": { - "type": "Identifier", - "start": 1696, - "end": 1702, - "loc": { - "start": { - "line": 51, - "column": 35 - }, - "end": { - "line": 51, - "column": 41 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - } - }, - "update": { - "type": "UpdateExpression", - "start": 1704, - "end": 1707, - "loc": { - "start": { - "line": 51, - "column": 43 - }, - "end": { - "line": 51, - "column": 46 - } - }, - "operator": "++", - "prefix": false, - "argument": { - "type": "Identifier", - "start": 1704, - "end": 1705, - "loc": { - "start": { - "line": 51, - "column": 43 - }, - "end": { - "line": 51, - "column": 44 - }, - "identifierName": "i" - }, - "name": "i" - } - }, - "body": { - "type": "BlockStatement", - "start": 1709, - "end": 1754, - "loc": { - "start": { - "line": 51, - "column": 48 - }, - "end": { - "line": 53, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1715, - "end": 1750, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1715, - "end": 1749, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 38 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1715, - "end": 1744, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 33 - } - }, - "object": { - "type": "MemberExpression", - "start": 1715, - "end": 1736, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 25 - } - }, - "object": { - "type": "MemberExpression", - "start": 1715, - "end": 1730, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 19 - } - }, - "object": { - "type": "Identifier", - "start": 1715, - "end": 1727, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 16 - }, - "identifierName": "topDescribes" - }, - "name": "topDescribes" - }, - "property": { - "type": "Identifier", - "start": 1728, - "end": 1729, - "loc": { - "start": { - "line": 52, - "column": 17 - }, - "end": { - "line": 52, - "column": 18 - }, - "identifierName": "i" - }, - "name": "i" - }, - "computed": true - }, - "property": { - "type": "Identifier", - "start": 1731, - "end": 1736, - "loc": { - "start": { - "line": 52, - "column": 20 - }, - "end": { - "line": 52, - "column": 25 - }, - "identifierName": "style" - }, - "name": "style" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1737, - "end": 1744, - "loc": { - "start": { - "line": 52, - "column": 26 - }, - "end": { - "line": 52, - "column": 33 - }, - "identifierName": "display" - }, - "name": "display" - }, - "computed": false - }, - "right": { - "type": "StringLiteral", - "start": 1747, - "end": 1749, - "loc": { - "start": { - "line": 52, - "column": 36 - }, - "end": { - "line": 52, - "column": 38 - } - }, - "extra": { - "rawValue": "", - "raw": "''" - }, - "value": "" - } - } - } - ], - "directives": [] - } - } - ], - "directives": [] - }, - "extra": { - "parenthesized": true, - "parenStart": 0 - } - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 0, - "end": 1, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 1 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 1, - "end": 9, - "loc": { - "start": { - "line": 1, - "column": 1 - }, - "end": { - "line": 1, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10, - "end": 11, - "loc": { - "start": { - "line": 1, - "column": 10 - }, - "end": { - "line": 1, - "column": 11 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 11 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13, - "end": 14, - "loc": { - "start": { - "line": 1, - "column": 13 - }, - "end": { - "line": 1, - "column": 14 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 17, - "end": 25, - "loc": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toggle", - "start": 26, - "end": 32, - "loc": { - "start": { - "line": 2, - "column": 11 - }, - "end": { - "line": 2, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 32, - "end": 33, - "loc": { - "start": { - "line": 2, - "column": 17 - }, - "end": { - "line": 2, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 33, - "end": 35, - "loc": { - "start": { - "line": 2, - "column": 18 - }, - "end": { - "line": 2, - "column": 20 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 35, - "end": 36, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 21 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 37, - "end": 38, - "loc": { - "start": { - "line": 2, - "column": 22 - }, - "end": { - "line": 2, - "column": 23 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 43, - "end": 46, - "loc": { - "start": { - "line": 3, - "column": 4 - }, - "end": { - "line": 3, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 47, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 8 - }, - "end": { - "line": 3, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 54, - "end": 55, - "loc": { - "start": { - "line": 3, - "column": 15 - }, - "end": { - "line": 3, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 56, - "end": 58, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 58, - "end": 59, - "loc": { - "start": { - "line": 3, - "column": 19 - }, - "end": { - "line": 3, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 59, - "end": 65, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 65, - "end": 66, - "loc": { - "start": { - "line": 3, - "column": 26 - }, - "end": { - "line": 3, - "column": 27 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 71, - "end": 74, - "loc": { - "start": { - "line": 4, - "column": 4 - }, - "end": { - "line": 4, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 75, - "end": 81, - "loc": { - "start": { - "line": 4, - "column": 8 - }, - "end": { - "line": 4, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 82, - "end": 83, - "loc": { - "start": { - "line": 4, - "column": 15 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ev", - "start": 84, - "end": 86, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 86, - "end": 87, - "loc": { - "start": { - "line": 4, - "column": 19 - }, - "end": { - "line": 4, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "target", - "start": 87, - "end": 93, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 93, - "end": 94, - "loc": { - "start": { - "line": 4, - "column": 26 - }, - "end": { - "line": 4, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentElement", - "start": 94, - "end": 107, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 107, - "end": 108, - "loc": { - "start": { - "line": 4, - "column": 40 - }, - "end": { - "line": 4, - "column": 41 - } - } - }, - { - "type": { - "label": "while", - "keyword": "while", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "while", - "start": 113, - "end": 118, - "loc": { - "start": { - "line": 5, - "column": 4 - }, - "end": { - "line": 5, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 119, - "end": 120, - "loc": { - "start": { - "line": 5, - "column": 10 - }, - "end": { - "line": 5, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 120, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 11 - }, - "end": { - "line": 5, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 126, - "end": 127, - "loc": { - "start": { - "line": 5, - "column": 17 - }, - "end": { - "line": 5, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 128, - "end": 129, - "loc": { - "start": { - "line": 5, - "column": 19 - }, - "end": { - "line": 5, - "column": 20 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 136, - "end": 138, - "loc": { - "start": { - "line": 6, - "column": 6 - }, - "end": { - "line": 6, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 139, - "end": 140, - "loc": { - "start": { - "line": 6, - "column": 9 - }, - "end": { - "line": 6, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 140, - "end": 146, - "loc": { - "start": { - "line": 6, - "column": 10 - }, - "end": { - "line": 6, - "column": 16 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 146, - "end": 147, - "loc": { - "start": { - "line": 6, - "column": 16 - }, - "end": { - "line": 6, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "tagName", - "start": 147, - "end": 154, - "loc": { - "start": { - "line": 6, - "column": 17 - }, - "end": { - "line": 6, - "column": 24 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 155, - "end": 158, - "loc": { - "start": { - "line": 6, - "column": 25 - }, - "end": { - "line": 6, - "column": 28 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "TR", - "start": 159, - "end": 163, - "loc": { - "start": { - "line": 6, - "column": 29 - }, - "end": { - "line": 6, - "column": 33 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 164, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 34 - }, - "end": { - "line": 6, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 167, - "end": 173, - "loc": { - "start": { - "line": 6, - "column": 37 - }, - "end": { - "line": 6, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 173, - "end": 174, - "loc": { - "start": { - "line": 6, - "column": 43 - }, - "end": { - "line": 6, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 174, - "end": 183, - "loc": { - "start": { - "line": 6, - "column": 44 - }, - "end": { - "line": 6, - "column": 53 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 183, - "end": 184, - "loc": { - "start": { - "line": 6, - "column": 53 - }, - "end": { - "line": 6, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 184, - "end": 192, - "loc": { - "start": { - "line": 6, - "column": 54 - }, - "end": { - "line": 6, - "column": 62 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 192, - "end": 193, - "loc": { - "start": { - "line": 6, - "column": 62 - }, - "end": { - "line": 6, - "column": 63 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "test-describe", - "start": 193, - "end": 208, - "loc": { - "start": { - "line": 6, - "column": 63 - }, - "end": { - "line": 6, - "column": 78 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 208, - "end": 209, - "loc": { - "start": { - "line": 6, - "column": 78 - }, - "end": { - "line": 6, - "column": 79 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 209, - "end": 210, - "loc": { - "start": { - "line": 6, - "column": 79 - }, - "end": { - "line": 6, - "column": 80 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 211, - "end": 216, - "loc": { - "start": { - "line": 6, - "column": 81 - }, - "end": { - "line": 6, - "column": 86 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 216, - "end": 217, - "loc": { - "start": { - "line": 6, - "column": 86 - }, - "end": { - "line": 6, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 224, - "end": 230, - "loc": { - "start": { - "line": 7, - "column": 6 - }, - "end": { - "line": 7, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 231, - "end": 232, - "loc": { - "start": { - "line": 7, - "column": 13 - }, - "end": { - "line": 7, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 233, - "end": 239, - "loc": { - "start": { - "line": 7, - "column": 15 - }, - "end": { - "line": 7, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 239, - "end": 240, - "loc": { - "start": { - "line": 7, - "column": 21 - }, - "end": { - "line": 7, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parentElement", - "start": 240, - "end": 253, - "loc": { - "start": { - "line": 7, - "column": 22 - }, - "end": { - "line": 7, - "column": 35 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 253, - "end": 254, - "loc": { - "start": { - "line": 7, - "column": 35 - }, - "end": { - "line": 7, - "column": 36 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 259, - "end": 260, - "loc": { - "start": { - "line": 8, - "column": 4 - }, - "end": { - "line": 8, - "column": 5 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 266, - "end": 268, - "loc": { - "start": { - "line": 10, - "column": 4 - }, - "end": { - "line": 10, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 269, - "end": 270, - "loc": { - "start": { - "line": 10, - "column": 7 - }, - "end": { - "line": 10, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 270, - "end": 271, - "loc": { - "start": { - "line": 10, - "column": 8 - }, - "end": { - "line": 10, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 271, - "end": 277, - "loc": { - "start": { - "line": 10, - "column": 9 - }, - "end": { - "line": 10, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 277, - "end": 278, - "loc": { - "start": { - "line": 10, - "column": 15 - }, - "end": { - "line": 10, - "column": 16 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 279, - "end": 285, - "loc": { - "start": { - "line": 10, - "column": 17 - }, - "end": { - "line": 10, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 285, - "end": 286, - "loc": { - "start": { - "line": 10, - "column": 23 - }, - "end": { - "line": 10, - "column": 24 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 292, - "end": 295, - "loc": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "direction", - "start": 296, - "end": 305, - "loc": { - "start": { - "line": 12, - "column": 8 - }, - "end": { - "line": 12, - "column": 17 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 305, - "end": 306, - "loc": { - "start": { - "line": 12, - "column": 17 - }, - "end": { - "line": 12, - "column": 18 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 311, - "end": 313, - "loc": { - "start": { - "line": 13, - "column": 4 - }, - "end": { - "line": 13, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 314, - "end": 315, - "loc": { - "start": { - "line": 13, - "column": 7 - }, - "end": { - "line": 13, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 315, - "end": 321, - "loc": { - "start": { - "line": 13, - "column": 8 - }, - "end": { - "line": 13, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 321, - "end": 322, - "loc": { - "start": { - "line": 13, - "column": 14 - }, - "end": { - "line": 13, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 322, - "end": 331, - "loc": { - "start": { - "line": 13, - "column": 15 - }, - "end": { - "line": 13, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 331, - "end": 332, - "loc": { - "start": { - "line": 13, - "column": 24 - }, - "end": { - "line": 13, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 332, - "end": 340, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 340, - "end": 341, - "loc": { - "start": { - "line": 13, - "column": 33 - }, - "end": { - "line": 13, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 341, - "end": 349, - "loc": { - "start": { - "line": 13, - "column": 34 - }, - "end": { - "line": 13, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 349, - "end": 350, - "loc": { - "start": { - "line": 13, - "column": 42 - }, - "end": { - "line": 13, - "column": 43 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 350, - "end": 351, - "loc": { - "start": { - "line": 13, - "column": 43 - }, - "end": { - "line": 13, - "column": 44 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 352, - "end": 353, - "loc": { - "start": { - "line": 13, - "column": 45 - }, - "end": { - "line": 13, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 360, - "end": 366, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 366, - "end": 367, - "loc": { - "start": { - "line": 14, - "column": 12 - }, - "end": { - "line": 14, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 367, - "end": 376, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 376, - "end": 377, - "loc": { - "start": { - "line": 14, - "column": 22 - }, - "end": { - "line": 14, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 377, - "end": 383, - "loc": { - "start": { - "line": 14, - "column": 23 - }, - "end": { - "line": 14, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 383, - "end": 384, - "loc": { - "start": { - "line": 14, - "column": 29 - }, - "end": { - "line": 14, - "column": 30 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 384, - "end": 392, - "loc": { - "start": { - "line": 14, - "column": 30 - }, - "end": { - "line": 14, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 392, - "end": 393, - "loc": { - "start": { - "line": 14, - "column": 38 - }, - "end": { - "line": 14, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 393, - "end": 394, - "loc": { - "start": { - "line": 14, - "column": 39 - }, - "end": { - "line": 14, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 401, - "end": 407, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 407, - "end": 408, - "loc": { - "start": { - "line": 15, - "column": 12 - }, - "end": { - "line": 15, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 408, - "end": 417, - "loc": { - "start": { - "line": 15, - "column": 13 - }, - "end": { - "line": 15, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 417, - "end": 418, - "loc": { - "start": { - "line": 15, - "column": 22 - }, - "end": { - "line": 15, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 418, - "end": 421, - "loc": { - "start": { - "line": 15, - "column": 23 - }, - "end": { - "line": 15, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 421, - "end": 422, - "loc": { - "start": { - "line": 15, - "column": 26 - }, - "end": { - "line": 15, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 422, - "end": 430, - "loc": { - "start": { - "line": 15, - "column": 27 - }, - "end": { - "line": 15, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 430, - "end": 431, - "loc": { - "start": { - "line": 15, - "column": 35 - }, - "end": { - "line": 15, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 431, - "end": 432, - "loc": { - "start": { - "line": 15, - "column": 36 - }, - "end": { - "line": 15, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "direction", - "start": 439, - "end": 448, - "loc": { - "start": { - "line": 16, - "column": 6 - }, - "end": { - "line": 16, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 449, - "end": 450, - "loc": { - "start": { - "line": 16, - "column": 16 - }, - "end": { - "line": 16, - "column": 17 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 451, - "end": 459, - "loc": { - "start": { - "line": 16, - "column": 18 - }, - "end": { - "line": 16, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 459, - "end": 460, - "loc": { - "start": { - "line": 16, - "column": 26 - }, - "end": { - "line": 16, - "column": 27 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 465, - "end": 466, - "loc": { - "start": { - "line": 17, - "column": 4 - }, - "end": { - "line": 17, - "column": 5 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 467, - "end": 471, - "loc": { - "start": { - "line": 17, - "column": 6 - }, - "end": { - "line": 17, - "column": 10 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 472, - "end": 473, - "loc": { - "start": { - "line": 17, - "column": 11 - }, - "end": { - "line": 17, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 480, - "end": 486, - "loc": { - "start": { - "line": 18, - "column": 6 - }, - "end": { - "line": 18, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 486, - "end": 487, - "loc": { - "start": { - "line": 18, - "column": 12 - }, - "end": { - "line": 18, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 487, - "end": 496, - "loc": { - "start": { - "line": 18, - "column": 13 - }, - "end": { - "line": 18, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 496, - "end": 497, - "loc": { - "start": { - "line": 18, - "column": 22 - }, - "end": { - "line": 18, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 497, - "end": 503, - "loc": { - "start": { - "line": 18, - "column": 23 - }, - "end": { - "line": 18, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 503, - "end": 504, - "loc": { - "start": { - "line": 18, - "column": 29 - }, - "end": { - "line": 18, - "column": 30 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 504, - "end": 512, - "loc": { - "start": { - "line": 18, - "column": 30 - }, - "end": { - "line": 18, - "column": 38 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 512, - "end": 513, - "loc": { - "start": { - "line": 18, - "column": 38 - }, - "end": { - "line": 18, - "column": 39 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 513, - "end": 514, - "loc": { - "start": { - "line": 18, - "column": 39 - }, - "end": { - "line": 18, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "button", - "start": 521, - "end": 527, - "loc": { - "start": { - "line": 19, - "column": 6 - }, - "end": { - "line": 19, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 527, - "end": 528, - "loc": { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 528, - "end": 537, - "loc": { - "start": { - "line": 19, - "column": 13 - }, - "end": { - "line": 19, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 537, - "end": 538, - "loc": { - "start": { - "line": 19, - "column": 22 - }, - "end": { - "line": 19, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 538, - "end": 541, - "loc": { - "start": { - "line": 19, - "column": 23 - }, - "end": { - "line": 19, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 541, - "end": 542, - "loc": { - "start": { - "line": 19, - "column": 26 - }, - "end": { - "line": 19, - "column": 27 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 542, - "end": 550, - "loc": { - "start": { - "line": 19, - "column": 27 - }, - "end": { - "line": 19, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 550, - "end": 551, - "loc": { - "start": { - "line": 19, - "column": 35 - }, - "end": { - "line": 19, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 551, - "end": 552, - "loc": { - "start": { - "line": 19, - "column": 36 - }, - "end": { - "line": 19, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "direction", - "start": 559, - "end": 568, - "loc": { - "start": { - "line": 20, - "column": 6 - }, - "end": { - "line": 20, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 569, - "end": 570, - "loc": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 17 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 571, - "end": 579, - "loc": { - "start": { - "line": 20, - "column": 18 - }, - "end": { - "line": 20, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 579, - "end": 580, - "loc": { - "start": { - "line": 20, - "column": 26 - }, - "end": { - "line": 20, - "column": 27 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 585, - "end": 586, - "loc": { - "start": { - "line": 21, - "column": 4 - }, - "end": { - "line": 21, - "column": 5 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 592, - "end": 595, - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 23, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "targetDepth", - "start": 596, - "end": 607, - "loc": { - "start": { - "line": 23, - "column": 8 - }, - "end": { - "line": 23, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 608, - "end": 609, - "loc": { - "start": { - "line": 23, - "column": 20 - }, - "end": { - "line": 23, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parseInt", - "start": 610, - "end": 618, - "loc": { - "start": { - "line": 23, - "column": 22 - }, - "end": { - "line": 23, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 618, - "end": 619, - "loc": { - "start": { - "line": 23, - "column": 30 - }, - "end": { - "line": 23, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 619, - "end": 625, - "loc": { - "start": { - "line": 23, - "column": 31 - }, - "end": { - "line": 23, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 625, - "end": 626, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "dataset", - "start": 626, - "end": 633, - "loc": { - "start": { - "line": 23, - "column": 38 - }, - "end": { - "line": 23, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 633, - "end": 634, - "loc": { - "start": { - "line": 23, - "column": 45 - }, - "end": { - "line": 23, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "testDepth", - "start": 634, - "end": 643, - "loc": { - "start": { - "line": 23, - "column": 46 - }, - "end": { - "line": 23, - "column": 55 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 643, - "end": 644, - "loc": { - "start": { - "line": 23, - "column": 55 - }, - "end": { - "line": 23, - "column": 56 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 10, - "start": 645, - "end": 647, - "loc": { - "start": { - "line": 23, - "column": 57 - }, - "end": { - "line": 23, - "column": 59 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 647, - "end": 648, - "loc": { - "start": { - "line": 23, - "column": 59 - }, - "end": { - "line": 23, - "column": 60 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 649, - "end": 650, - "loc": { - "start": { - "line": 23, - "column": 61 - }, - "end": { - "line": 23, - "column": 62 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 651, - "end": 652, - "loc": { - "start": { - "line": 23, - "column": 63 - }, - "end": { - "line": 23, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 652, - "end": 653, - "loc": { - "start": { - "line": 23, - "column": 64 - }, - "end": { - "line": 23, - "column": 65 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 658, - "end": 661, - "loc": { - "start": { - "line": 24, - "column": 4 - }, - "end": { - "line": 24, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 662, - "end": 673, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 24, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 674, - "end": 675, - "loc": { - "start": { - "line": 24, - "column": 20 - }, - "end": { - "line": 24, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parent", - "start": 676, - "end": 682, - "loc": { - "start": { - "line": 24, - "column": 22 - }, - "end": { - "line": 24, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 682, - "end": 683, - "loc": { - "start": { - "line": 24, - "column": 28 - }, - "end": { - "line": 24, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElementSibling", - "start": 683, - "end": 701, - "loc": { - "start": { - "line": 24, - "column": 29 - }, - "end": { - "line": 24, - "column": 47 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 701, - "end": 702, - "loc": { - "start": { - "line": 24, - "column": 47 - }, - "end": { - "line": 24, - "column": 48 - } - } - }, - { - "type": { - "label": "while", - "keyword": "while", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "while", - "start": 707, - "end": 712, - "loc": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 25, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 713, - "end": 714, - "loc": { - "start": { - "line": 25, - "column": 10 - }, - "end": { - "line": 25, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 714, - "end": 725, - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 25, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 25, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 727, - "end": 728, - "loc": { - "start": { - "line": 25, - "column": 24 - }, - "end": { - "line": 25, - "column": 25 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 735, - "end": 738, - "loc": { - "start": { - "line": 26, - "column": 6 - }, - "end": { - "line": 26, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "depth", - "start": 739, - "end": 744, - "loc": { - "start": { - "line": 26, - "column": 10 - }, - "end": { - "line": 26, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 745, - "end": 746, - "loc": { - "start": { - "line": 26, - "column": 16 - }, - "end": { - "line": 26, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "parseInt", - "start": 747, - "end": 755, - "loc": { - "start": { - "line": 26, - "column": 18 - }, - "end": { - "line": 26, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 755, - "end": 756, - "loc": { - "start": { - "line": 26, - "column": 26 - }, - "end": { - "line": 26, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 756, - "end": 767, - "loc": { - "start": { - "line": 26, - "column": 27 - }, - "end": { - "line": 26, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 767, - "end": 768, - "loc": { - "start": { - "line": 26, - "column": 38 - }, - "end": { - "line": 26, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "dataset", - "start": 768, - "end": 775, - "loc": { - "start": { - "line": 26, - "column": 39 - }, - "end": { - "line": 26, - "column": 46 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 775, - "end": 776, - "loc": { - "start": { - "line": 26, - "column": 46 - }, - "end": { - "line": 26, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "testDepth", - "start": 776, - "end": 785, - "loc": { - "start": { - "line": 26, - "column": 47 - }, - "end": { - "line": 26, - "column": 56 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 785, - "end": 786, - "loc": { - "start": { - "line": 26, - "column": 56 - }, - "end": { - "line": 26, - "column": 57 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 10, - "start": 787, - "end": 789, - "loc": { - "start": { - "line": 26, - "column": 58 - }, - "end": { - "line": 26, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 789, - "end": 790, - "loc": { - "start": { - "line": 26, - "column": 60 - }, - "end": { - "line": 26, - "column": 61 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 790, - "end": 791, - "loc": { - "start": { - "line": 26, - "column": 61 - }, - "end": { - "line": 26, - "column": 62 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 798, - "end": 800, - "loc": { - "start": { - "line": 27, - "column": 6 - }, - "end": { - "line": 27, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 801, - "end": 802, - "loc": { - "start": { - "line": 27, - "column": 9 - }, - "end": { - "line": 27, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "depth", - "start": 802, - "end": 807, - "loc": { - "start": { - "line": 27, - "column": 10 - }, - "end": { - "line": 27, - "column": 15 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": ">=", - "start": 808, - "end": 810, - "loc": { - "start": { - "line": 27, - "column": 16 - }, - "end": { - "line": 27, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "targetDepth", - "start": 811, - "end": 822, - "loc": { - "start": { - "line": 27, - "column": 19 - }, - "end": { - "line": 27, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 822, - "end": 823, - "loc": { - "start": { - "line": 27, - "column": 30 - }, - "end": { - "line": 27, - "column": 31 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 824, - "end": 825, - "loc": { - "start": { - "line": 27, - "column": 32 - }, - "end": { - "line": 27, - "column": 33 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 834, - "end": 836, - "loc": { - "start": { - "line": 28, - "column": 8 - }, - "end": { - "line": 28, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 837, - "end": 838, - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 28, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "direction", - "start": 838, - "end": 847, - "loc": { - "start": { - "line": 28, - "column": 12 - }, - "end": { - "line": 28, - "column": 21 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 848, - "end": 851, - "loc": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 28, - "column": 25 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 852, - "end": 860, - "loc": { - "start": { - "line": 28, - "column": 26 - }, - "end": { - "line": 28, - "column": 34 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 860, - "end": 861, - "loc": { - "start": { - "line": 28, - "column": 34 - }, - "end": { - "line": 28, - "column": 35 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 862, - "end": 863, - "loc": { - "start": { - "line": 28, - "column": 36 - }, - "end": { - "line": 28, - "column": 37 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 874, - "end": 876, - "loc": { - "start": { - "line": 29, - "column": 10 - }, - "end": { - "line": 29, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 877, - "end": 878, - "loc": { - "start": { - "line": 29, - "column": 13 - }, - "end": { - "line": 29, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "depth", - "start": 878, - "end": 883, - "loc": { - "start": { - "line": 29, - "column": 14 - }, - "end": { - "line": 29, - "column": 19 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 884, - "end": 887, - "loc": { - "start": { - "line": 29, - "column": 20 - }, - "end": { - "line": 29, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "targetDepth", - "start": 888, - "end": 899, - "loc": { - "start": { - "line": 29, - "column": 24 - }, - "end": { - "line": 29, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 899, - "end": 900, - "loc": { - "start": { - "line": 29, - "column": 35 - }, - "end": { - "line": 29, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 901, - "end": 912, - "loc": { - "start": { - "line": 29, - "column": 37 - }, - "end": { - "line": 29, - "column": 48 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 912, - "end": 913, - "loc": { - "start": { - "line": 29, - "column": 48 - }, - "end": { - "line": 29, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 913, - "end": 918, - "loc": { - "start": { - "line": 29, - "column": 49 - }, - "end": { - "line": 29, - "column": 54 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 918, - "end": 919, - "loc": { - "start": { - "line": 29, - "column": 54 - }, - "end": { - "line": 29, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 919, - "end": 926, - "loc": { - "start": { - "line": 29, - "column": 55 - }, - "end": { - "line": 29, - "column": 62 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 927, - "end": 928, - "loc": { - "start": { - "line": 29, - "column": 63 - }, - "end": { - "line": 29, - "column": 64 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 929, - "end": 931, - "loc": { - "start": { - "line": 29, - "column": 65 - }, - "end": { - "line": 29, - "column": 67 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 931, - "end": 932, - "loc": { - "start": { - "line": 29, - "column": 67 - }, - "end": { - "line": 29, - "column": 68 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 941, - "end": 942, - "loc": { - "start": { - "line": 30, - "column": 8 - }, - "end": { - "line": 30, - "column": 9 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 943, - "end": 947, - "loc": { - "start": { - "line": 30, - "column": 10 - }, - "end": { - "line": 30, - "column": 14 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 948, - "end": 950, - "loc": { - "start": { - "line": 30, - "column": 15 - }, - "end": { - "line": 30, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 951, - "end": 952, - "loc": { - "start": { - "line": 30, - "column": 18 - }, - "end": { - "line": 30, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "direction", - "start": 952, - "end": 961, - "loc": { - "start": { - "line": 30, - "column": 19 - }, - "end": { - "line": 30, - "column": 28 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 962, - "end": 965, - "loc": { - "start": { - "line": 30, - "column": 29 - }, - "end": { - "line": 30, - "column": 32 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 966, - "end": 974, - "loc": { - "start": { - "line": 30, - "column": 33 - }, - "end": { - "line": 30, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 974, - "end": 975, - "loc": { - "start": { - "line": 30, - "column": 41 - }, - "end": { - "line": 30, - "column": 42 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 976, - "end": 977, - "loc": { - "start": { - "line": 30, - "column": 43 - }, - "end": { - "line": 30, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 988, - "end": 999, - "loc": { - "start": { - "line": 31, - "column": 10 - }, - "end": { - "line": 31, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 999, - "end": 1000, - "loc": { - "start": { - "line": 31, - "column": 21 - }, - "end": { - "line": 31, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 1000, - "end": 1005, - "loc": { - "start": { - "line": 31, - "column": 22 - }, - "end": { - "line": 31, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1005, - "end": 1006, - "loc": { - "start": { - "line": 31, - "column": 27 - }, - "end": { - "line": 31, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 1006, - "end": 1013, - "loc": { - "start": { - "line": 31, - "column": 28 - }, - "end": { - "line": 31, - "column": 35 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1014, - "end": 1015, - "loc": { - "start": { - "line": 31, - "column": 36 - }, - "end": { - "line": 31, - "column": 37 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "none", - "start": 1016, - "end": 1022, - "loc": { - "start": { - "line": 31, - "column": 38 - }, - "end": { - "line": 31, - "column": 44 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1022, - "end": 1023, - "loc": { - "start": { - "line": 31, - "column": 44 - }, - "end": { - "line": 31, - "column": 45 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1034, - "end": 1037, - "loc": { - "start": { - "line": 32, - "column": 10 - }, - "end": { - "line": 32, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerButton", - "start": 1038, - "end": 1049, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1050, - "end": 1051, - "loc": { - "start": { - "line": 32, - "column": 26 - }, - "end": { - "line": 32, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 1052, - "end": 1063, - "loc": { - "start": { - "line": 32, - "column": 28 - }, - "end": { - "line": 32, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1063, - "end": 1064, - "loc": { - "start": { - "line": 32, - "column": 39 - }, - "end": { - "line": 32, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelector", - "start": 1064, - "end": 1077, - "loc": { - "start": { - "line": 32, - "column": 40 - }, - "end": { - "line": 32, - "column": 53 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1077, - "end": 1078, - "loc": { - "start": { - "line": 32, - "column": 53 - }, - "end": { - "line": 32, - "column": 54 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".toggle", - "start": 1078, - "end": 1087, - "loc": { - "start": { - "line": 32, - "column": 54 - }, - "end": { - "line": 32, - "column": 63 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1087, - "end": 1088, - "loc": { - "start": { - "line": 32, - "column": 63 - }, - "end": { - "line": 32, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1088, - "end": 1089, - "loc": { - "start": { - "line": 32, - "column": 64 - }, - "end": { - "line": 32, - "column": 65 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 1100, - "end": 1102, - "loc": { - "start": { - "line": 33, - "column": 10 - }, - "end": { - "line": 33, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1103, - "end": 1104, - "loc": { - "start": { - "line": 33, - "column": 13 - }, - "end": { - "line": 33, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerButton", - "start": 1104, - "end": 1115, - "loc": { - "start": { - "line": 33, - "column": 14 - }, - "end": { - "line": 33, - "column": 25 - } - } - }, - { - "type": { - "label": "&&", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 2, - "updateContext": null - }, - "value": "&&", - "start": 1116, - "end": 1118, - "loc": { - "start": { - "line": 33, - "column": 26 - }, - "end": { - "line": 33, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerButton", - "start": 1119, - "end": 1130, - "loc": { - "start": { - "line": 33, - "column": 29 - }, - "end": { - "line": 33, - "column": 40 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1130, - "end": 1131, - "loc": { - "start": { - "line": 33, - "column": 40 - }, - "end": { - "line": 33, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 1131, - "end": 1140, - "loc": { - "start": { - "line": 33, - "column": 41 - }, - "end": { - "line": 33, - "column": 50 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1140, - "end": 1141, - "loc": { - "start": { - "line": 33, - "column": 50 - }, - "end": { - "line": 33, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "contains", - "start": 1141, - "end": 1149, - "loc": { - "start": { - "line": 33, - "column": 51 - }, - "end": { - "line": 33, - "column": 59 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1149, - "end": 1150, - "loc": { - "start": { - "line": 33, - "column": 59 - }, - "end": { - "line": 33, - "column": 60 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 1150, - "end": 1158, - "loc": { - "start": { - "line": 33, - "column": 60 - }, - "end": { - "line": 33, - "column": 68 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1158, - "end": 1159, - "loc": { - "start": { - "line": 33, - "column": 68 - }, - "end": { - "line": 33, - "column": 69 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1159, - "end": 1160, - "loc": { - "start": { - "line": 33, - "column": 69 - }, - "end": { - "line": 33, - "column": 70 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1161, - "end": 1162, - "loc": { - "start": { - "line": 33, - "column": 71 - }, - "end": { - "line": 33, - "column": 72 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerButton", - "start": 1175, - "end": 1186, - "loc": { - "start": { - "line": 34, - "column": 12 - }, - "end": { - "line": 34, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1186, - "end": 1187, - "loc": { - "start": { - "line": 34, - "column": 23 - }, - "end": { - "line": 34, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 1187, - "end": 1196, - "loc": { - "start": { - "line": 34, - "column": 24 - }, - "end": { - "line": 34, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1196, - "end": 1197, - "loc": { - "start": { - "line": 34, - "column": 33 - }, - "end": { - "line": 34, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 1197, - "end": 1203, - "loc": { - "start": { - "line": 34, - "column": 34 - }, - "end": { - "line": 34, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1203, - "end": 1204, - "loc": { - "start": { - "line": 34, - "column": 40 - }, - "end": { - "line": 34, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "opened", - "start": 1204, - "end": 1212, - "loc": { - "start": { - "line": 34, - "column": 41 - }, - "end": { - "line": 34, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1212, - "end": 1213, - "loc": { - "start": { - "line": 34, - "column": 49 - }, - "end": { - "line": 34, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1213, - "end": 1214, - "loc": { - "start": { - "line": 34, - "column": 50 - }, - "end": { - "line": 34, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "innerButton", - "start": 1227, - "end": 1238, - "loc": { - "start": { - "line": 35, - "column": 12 - }, - "end": { - "line": 35, - "column": 23 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1238, - "end": 1239, - "loc": { - "start": { - "line": 35, - "column": 23 - }, - "end": { - "line": 35, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "classList", - "start": 1239, - "end": 1248, - "loc": { - "start": { - "line": 35, - "column": 24 - }, - "end": { - "line": 35, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1248, - "end": 1249, - "loc": { - "start": { - "line": 35, - "column": 33 - }, - "end": { - "line": 35, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "add", - "start": 1249, - "end": 1252, - "loc": { - "start": { - "line": 35, - "column": 34 - }, - "end": { - "line": 35, - "column": 37 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1252, - "end": 1253, - "loc": { - "start": { - "line": 35, - "column": 37 - }, - "end": { - "line": 35, - "column": 38 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "closed", - "start": 1253, - "end": 1261, - "loc": { - "start": { - "line": 35, - "column": 38 - }, - "end": { - "line": 35, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1261, - "end": 1262, - "loc": { - "start": { - "line": 35, - "column": 46 - }, - "end": { - "line": 35, - "column": 47 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1262, - "end": 1263, - "loc": { - "start": { - "line": 35, - "column": 47 - }, - "end": { - "line": 35, - "column": 48 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1274, - "end": 1275, - "loc": { - "start": { - "line": 36, - "column": 10 - }, - "end": { - "line": 36, - "column": 11 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1284, - "end": 1285, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1292, - "end": 1293, - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 38, - "column": 7 - } - } - }, - { - "type": { - "label": "else", - "keyword": "else", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "else", - "start": 1294, - "end": 1298, - "loc": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1299, - "end": 1300, - "loc": { - "start": { - "line": 38, - "column": 13 - }, - "end": { - "line": 38, - "column": 14 - } - } - }, - { - "type": { - "label": "break", - "keyword": "break", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "break", - "start": 1309, - "end": 1314, - "loc": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 13 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1314, - "end": 1315, - "loc": { - "start": { - "line": 39, - "column": 13 - }, - "end": { - "line": 39, - "column": 14 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1322, - "end": 1323, - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 40, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 1330, - "end": 1341, - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 41, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1342, - "end": 1343, - "loc": { - "start": { - "line": 41, - "column": 18 - }, - "end": { - "line": 41, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElement", - "start": 1344, - "end": 1355, - "loc": { - "start": { - "line": 41, - "column": 20 - }, - "end": { - "line": 41, - "column": 31 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1355, - "end": 1356, - "loc": { - "start": { - "line": 41, - "column": 31 - }, - "end": { - "line": 41, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "nextElementSibling", - "start": 1356, - "end": 1374, - "loc": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1374, - "end": 1375, - "loc": { - "start": { - "line": 41, - "column": 50 - }, - "end": { - "line": 41, - "column": 51 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1380, - "end": 1381, - "loc": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 5 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1384, - "end": 1385, - "loc": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 43, - "column": 3 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1389, - "end": 1392, - "loc": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 1393, - "end": 1400, - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 45, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1401, - "end": 1402, - "loc": { - "start": { - "line": 45, - "column": 14 - }, - "end": { - "line": 45, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 1403, - "end": 1411, - "loc": { - "start": { - "line": 45, - "column": 16 - }, - "end": { - "line": 45, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1411, - "end": 1412, - "loc": { - "start": { - "line": 45, - "column": 24 - }, - "end": { - "line": 45, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 1412, - "end": 1428, - "loc": { - "start": { - "line": 45, - "column": 25 - }, - "end": { - "line": 45, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1428, - "end": 1429, - "loc": { - "start": { - "line": 45, - "column": 41 - }, - "end": { - "line": 45, - "column": 42 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".test-summary tr.test-describe .toggle", - "start": 1429, - "end": 1469, - "loc": { - "start": { - "line": 45, - "column": 42 - }, - "end": { - "line": 45, - "column": 82 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1469, - "end": 1470, - "loc": { - "start": { - "line": 45, - "column": 82 - }, - "end": { - "line": 45, - "column": 83 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1470, - "end": 1471, - "loc": { - "start": { - "line": 45, - "column": 83 - }, - "end": { - "line": 45, - "column": 84 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1474, - "end": 1477, - "loc": { - "start": { - "line": 46, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1478, - "end": 1479, - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 46, - "column": 7 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1479, - "end": 1482, - "loc": { - "start": { - "line": 46, - "column": 7 - }, - "end": { - "line": 46, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1483, - "end": 1484, - "loc": { - "start": { - "line": 46, - "column": 11 - }, - "end": { - "line": 46, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1485, - "end": 1486, - "loc": { - "start": { - "line": 46, - "column": 13 - }, - "end": { - "line": 46, - "column": 14 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1487, - "end": 1488, - "loc": { - "start": { - "line": 46, - "column": 15 - }, - "end": { - "line": 46, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1488, - "end": 1489, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1490, - "end": 1491, - "loc": { - "start": { - "line": 46, - "column": 18 - }, - "end": { - "line": 46, - "column": 19 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1492, - "end": 1493, - "loc": { - "start": { - "line": 46, - "column": 20 - }, - "end": { - "line": 46, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 1494, - "end": 1501, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1501, - "end": 1502, - "loc": { - "start": { - "line": 46, - "column": 29 - }, - "end": { - "line": 46, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1502, - "end": 1508, - "loc": { - "start": { - "line": 46, - "column": 30 - }, - "end": { - "line": 46, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1508, - "end": 1509, - "loc": { - "start": { - "line": 46, - "column": 36 - }, - "end": { - "line": 46, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1510, - "end": 1511, - "loc": { - "start": { - "line": 46, - "column": 38 - }, - "end": { - "line": 46, - "column": 39 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1511, - "end": 1513, - "loc": { - "start": { - "line": 46, - "column": 39 - }, - "end": { - "line": 46, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1513, - "end": 1514, - "loc": { - "start": { - "line": 46, - "column": 41 - }, - "end": { - "line": 46, - "column": 42 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1515, - "end": 1516, - "loc": { - "start": { - "line": 46, - "column": 43 - }, - "end": { - "line": 46, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "buttons", - "start": 1521, - "end": 1528, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 11 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1528, - "end": 1529, - "loc": { - "start": { - "line": 47, - "column": 11 - }, - "end": { - "line": 47, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1529, - "end": 1530, - "loc": { - "start": { - "line": 47, - "column": 12 - }, - "end": { - "line": 47, - "column": 13 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1530, - "end": 1531, - "loc": { - "start": { - "line": 47, - "column": 13 - }, - "end": { - "line": 47, - "column": 14 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1531, - "end": 1532, - "loc": { - "start": { - "line": 47, - "column": 14 - }, - "end": { - "line": 47, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addEventListener", - "start": 1532, - "end": 1548, - "loc": { - "start": { - "line": 47, - "column": 15 - }, - "end": { - "line": 47, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1548, - "end": 1549, - "loc": { - "start": { - "line": 47, - "column": 31 - }, - "end": { - "line": 47, - "column": 32 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "click", - "start": 1549, - "end": 1556, - "loc": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1556, - "end": 1557, - "loc": { - "start": { - "line": 47, - "column": 39 - }, - "end": { - "line": 47, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toggle", - "start": 1558, - "end": 1564, - "loc": { - "start": { - "line": 47, - "column": 41 - }, - "end": { - "line": 47, - "column": 47 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1564, - "end": 1565, - "loc": { - "start": { - "line": 47, - "column": 47 - }, - "end": { - "line": 47, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1565, - "end": 1566, - "loc": { - "start": { - "line": 47, - "column": 48 - }, - "end": { - "line": 47, - "column": 49 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1569, - "end": 1570, - "loc": { - "start": { - "line": 48, - "column": 2 - }, - "end": { - "line": 48, - "column": 3 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1574, - "end": 1577, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "topDescribes", - "start": 1578, - "end": 1590, - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 50, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1591, - "end": 1592, - "loc": { - "start": { - "line": 50, - "column": 19 - }, - "end": { - "line": 50, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "document", - "start": 1593, - "end": 1601, - "loc": { - "start": { - "line": 50, - "column": 21 - }, - "end": { - "line": 50, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1601, - "end": 1602, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 50, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "querySelectorAll", - "start": 1602, - "end": 1618, - "loc": { - "start": { - "line": 50, - "column": 30 - }, - "end": { - "line": 50, - "column": 46 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1618, - "end": 1619, - "loc": { - "start": { - "line": 50, - "column": 46 - }, - "end": { - "line": 50, - "column": 47 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": ".test-summary tr[data-test-depth=\"0\"]", - "start": 1619, - "end": 1658, - "loc": { - "start": { - "line": 50, - "column": 47 - }, - "end": { - "line": 50, - "column": 86 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1658, - "end": 1659, - "loc": { - "start": { - "line": 50, - "column": 86 - }, - "end": { - "line": 50, - "column": 87 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1659, - "end": 1660, - "loc": { - "start": { - "line": 50, - "column": 87 - }, - "end": { - "line": 50, - "column": 88 - } - } - }, - { - "type": { - "label": "for", - "keyword": "for", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": true, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "for", - "start": 1663, - "end": 1666, - "loc": { - "start": { - "line": 51, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1667, - "end": 1668, - "loc": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 51, - "column": 7 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 1668, - "end": 1671, - "loc": { - "start": { - "line": 51, - "column": 7 - }, - "end": { - "line": 51, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1672, - "end": 1673, - "loc": { - "start": { - "line": 51, - "column": 11 - }, - "end": { - "line": 51, - "column": 12 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1674, - "end": 1675, - "loc": { - "start": { - "line": 51, - "column": 13 - }, - "end": { - "line": 51, - "column": 14 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 1676, - "end": 1677, - "loc": { - "start": { - "line": 51, - "column": 15 - }, - "end": { - "line": 51, - "column": 16 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1677, - "end": 1678, - "loc": { - "start": { - "line": 51, - "column": 16 - }, - "end": { - "line": 51, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1679, - "end": 1680, - "loc": { - "start": { - "line": 51, - "column": 18 - }, - "end": { - "line": 51, - "column": 19 - } - } - }, - { - "type": { - "label": "", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 7, - "updateContext": null - }, - "value": "<", - "start": 1681, - "end": 1682, - "loc": { - "start": { - "line": 51, - "column": 20 - }, - "end": { - "line": 51, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "topDescribes", - "start": 1683, - "end": 1695, - "loc": { - "start": { - "line": 51, - "column": 22 - }, - "end": { - "line": 51, - "column": 34 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1695, - "end": 1696, - "loc": { - "start": { - "line": 51, - "column": 34 - }, - "end": { - "line": 51, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 1696, - "end": 1702, - "loc": { - "start": { - "line": 51, - "column": 35 - }, - "end": { - "line": 51, - "column": 41 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1702, - "end": 1703, - "loc": { - "start": { - "line": 51, - "column": 41 - }, - "end": { - "line": 51, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1704, - "end": 1705, - "loc": { - "start": { - "line": 51, - "column": 43 - }, - "end": { - "line": 51, - "column": 44 - } - } - }, - { - "type": { - "label": "++/--", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": true, - "binop": null - }, - "value": "++", - "start": 1705, - "end": 1707, - "loc": { - "start": { - "line": 51, - "column": 44 - }, - "end": { - "line": 51, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1707, - "end": 1708, - "loc": { - "start": { - "line": 51, - "column": 46 - }, - "end": { - "line": 51, - "column": 47 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1709, - "end": 1710, - "loc": { - "start": { - "line": 51, - "column": 48 - }, - "end": { - "line": 51, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "topDescribes", - "start": 1715, - "end": 1727, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 16 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1727, - "end": 1728, - "loc": { - "start": { - "line": 52, - "column": 16 - }, - "end": { - "line": 52, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "i", - "start": 1728, - "end": 1729, - "loc": { - "start": { - "line": 52, - "column": 17 - }, - "end": { - "line": 52, - "column": 18 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1729, - "end": 1730, - "loc": { - "start": { - "line": 52, - "column": 18 - }, - "end": { - "line": 52, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1730, - "end": 1731, - "loc": { - "start": { - "line": 52, - "column": 19 - }, - "end": { - "line": 52, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "style", - "start": 1731, - "end": 1736, - "loc": { - "start": { - "line": 52, - "column": 20 - }, - "end": { - "line": 52, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1736, - "end": 1737, - "loc": { - "start": { - "line": 52, - "column": 25 - }, - "end": { - "line": 52, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "display", - "start": 1737, - "end": 1744, - "loc": { - "start": { - "line": 52, - "column": 26 - }, - "end": { - "line": 52, - "column": 33 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1745, - "end": 1746, - "loc": { - "start": { - "line": 52, - "column": 34 - }, - "end": { - "line": 52, - "column": 35 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "", - "start": 1747, - "end": 1749, - "loc": { - "start": { - "line": 52, - "column": 36 - }, - "end": { - "line": 52, - "column": 38 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1749, - "end": 1750, - "loc": { - "start": { - "line": 52, - "column": 38 - }, - "end": { - "line": 52, - "column": 39 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1753, - "end": 1754, - "loc": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1755, - "end": 1756, - "loc": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1756, - "end": 1757, - "loc": { - "start": { - "line": 54, - "column": 1 - }, - "end": { - "line": 54, - "column": 2 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1757, - "end": 1758, - "loc": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 54, - "column": 3 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1758, - "end": 1759, - "loc": { - "start": { - "line": 54, - "column": 3 - }, - "end": { - "line": 54, - "column": 4 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1759, - "end": 1760, - "loc": { - "start": { - "line": 54, - "column": 4 - }, - "end": { - "line": 54, - "column": 5 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1760, - "end": 1760, - "loc": { - "start": { - "line": 54, - "column": 5 - }, - "end": { - "line": 54, - "column": 5 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/index.js.json b/docs/ast/source/index.js.json deleted file mode 100644 index 755360ca..00000000 --- a/docs/ast/source/index.js.json +++ /dev/null @@ -1,1629 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 265, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 5, - "column": 39 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 265, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 5, - "column": 39 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExportNamedDeclaration", - "start": 0, - "end": 57, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 57 - } - }, - "declaration": null, - "specifiers": [ - { - "type": "ExportSpecifier", - "start": 9, - "end": 30, - "loc": { - "start": { - "line": 1, - "column": 9 - }, - "end": { - "line": 1, - "column": 30 - } - }, - "local": { - "type": "Identifier", - "start": 9, - "end": 16, - "loc": { - "start": { - "line": 1, - "column": 9 - }, - "end": { - "line": 1, - "column": 16 - }, - "identifierName": "default" - }, - "name": "default" - }, - "exported": { - "type": "Identifier", - "start": 20, - "end": 30, - "loc": { - "start": { - "line": 1, - "column": 20 - }, - "end": { - "line": 1, - "column": 30 - }, - "identifierName": "BleManager" - }, - "name": "BleManager" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 38, - "end": 56, - "loc": { - "start": { - "line": 1, - "column": 38 - }, - "end": { - "line": 1, - "column": 56 - } - }, - "extra": { - "rawValue": "./src/BleManager", - "raw": "'./src/BleManager'" - }, - "value": "./src/BleManager" - } - }, - { - "type": "ExportNamedDeclaration", - "start": 58, - "end": 107, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 49 - } - }, - "declaration": null, - "specifiers": [ - { - "type": "ExportSpecifier", - "start": 67, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 9 - }, - "end": { - "line": 2, - "column": 26 - } - }, - "local": { - "type": "Identifier", - "start": 67, - "end": 74, - "loc": { - "start": { - "line": 2, - "column": 9 - }, - "end": { - "line": 2, - "column": 16 - }, - "identifierName": "default" - }, - "name": "default" - }, - "exported": { - "type": "Identifier", - "start": 78, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 26 - }, - "identifierName": "Device" - }, - "name": "Device" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 92, - "end": 106, - "loc": { - "start": { - "line": 2, - "column": 34 - }, - "end": { - "line": 2, - "column": 48 - } - }, - "extra": { - "rawValue": "./src/Device", - "raw": "'./src/Device'" - }, - "value": "./src/Device" - } - }, - { - "type": "ExportNamedDeclaration", - "start": 108, - "end": 159, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 51 - } - }, - "declaration": null, - "specifiers": [ - { - "type": "ExportSpecifier", - "start": 117, - "end": 135, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 27 - } - }, - "local": { - "type": "Identifier", - "start": 117, - "end": 124, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 16 - }, - "identifierName": "default" - }, - "name": "default" - }, - "exported": { - "type": "Identifier", - "start": 128, - "end": 135, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 27 - }, - "identifierName": "Service" - }, - "name": "Service" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 143, - "end": 158, - "loc": { - "start": { - "line": 3, - "column": 35 - }, - "end": { - "line": 3, - "column": 50 - } - }, - "extra": { - "rawValue": "./src/Service", - "raw": "'./src/Service'" - }, - "value": "./src/Service" - } - }, - { - "type": "ExportNamedDeclaration", - "start": 160, - "end": 225, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 65 - } - }, - "declaration": null, - "specifiers": [ - { - "type": "ExportSpecifier", - "start": 169, - "end": 194, - "loc": { - "start": { - "line": 4, - "column": 9 - }, - "end": { - "line": 4, - "column": 34 - } - }, - "local": { - "type": "Identifier", - "start": 169, - "end": 176, - "loc": { - "start": { - "line": 4, - "column": 9 - }, - "end": { - "line": 4, - "column": 16 - }, - "identifierName": "default" - }, - "name": "default" - }, - "exported": { - "type": "Identifier", - "start": 180, - "end": 194, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 34 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 202, - "end": 224, - "loc": { - "start": { - "line": 4, - "column": 42 - }, - "end": { - "line": 4, - "column": 64 - } - }, - "extra": { - "rawValue": "./src/Characteristic", - "raw": "'./src/Characteristic'" - }, - "value": "./src/Characteristic" - } - }, - { - "type": "ExportNamedDeclaration", - "start": 226, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 39 - } - }, - "declaration": null, - "specifiers": [ - { - "type": "ExportSpecifier", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 5, - "column": 9 - }, - "end": { - "line": 5, - "column": 17 - } - }, - "local": { - "type": "Identifier", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 5, - "column": 9 - }, - "end": { - "line": 5, - "column": 17 - }, - "identifierName": "fullUUID" - }, - "name": "fullUUID" - }, - "exported": { - "type": "Identifier", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 5, - "column": 9 - }, - "end": { - "line": 5, - "column": 17 - }, - "identifierName": "fullUUID" - }, - "name": "fullUUID" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 251, - "end": 264, - "loc": { - "start": { - "line": 5, - "column": 25 - }, - "end": { - "line": 5, - "column": 38 - } - }, - "extra": { - "rawValue": "./src/Utils", - "raw": "'./src/Utils'" - }, - "value": "./src/Utils" - } - } - ], - "directives": [] - }, - "comments": [], - "tokens": [ - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 0, - "end": 6, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7, - "end": 8, - "loc": { - "start": { - "line": 1, - "column": 7 - }, - "end": { - "line": 1, - "column": 8 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 9, - "end": 16, - "loc": { - "start": { - "line": 1, - "column": 9 - }, - "end": { - "line": 1, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "as", - "start": 17, - "end": 19, - "loc": { - "start": { - "line": 1, - "column": 17 - }, - "end": { - "line": 1, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleManager", - "start": 20, - "end": 30, - "loc": { - "start": { - "line": 1, - "column": 20 - }, - "end": { - "line": 1, - "column": 30 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 31, - "end": 32, - "loc": { - "start": { - "line": 1, - "column": 31 - }, - "end": { - "line": 1, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 33, - "end": 37, - "loc": { - "start": { - "line": 1, - "column": 33 - }, - "end": { - "line": 1, - "column": 37 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./src/BleManager", - "start": 38, - "end": 56, - "loc": { - "start": { - "line": 1, - "column": 38 - }, - "end": { - "line": 1, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 56, - "end": 57, - "loc": { - "start": { - "line": 1, - "column": 56 - }, - "end": { - "line": 1, - "column": 57 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 58, - "end": 64, - "loc": { - "start": { - "line": 2, - "column": 0 - }, - "end": { - "line": 2, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 65, - "end": 66, - "loc": { - "start": { - "line": 2, - "column": 7 - }, - "end": { - "line": 2, - "column": 8 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 67, - "end": 74, - "loc": { - "start": { - "line": 2, - "column": 9 - }, - "end": { - "line": 2, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "as", - "start": 75, - "end": 77, - "loc": { - "start": { - "line": 2, - "column": 17 - }, - "end": { - "line": 2, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 78, - "end": 84, - "loc": { - "start": { - "line": 2, - "column": 20 - }, - "end": { - "line": 2, - "column": 26 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 85, - "end": 86, - "loc": { - "start": { - "line": 2, - "column": 27 - }, - "end": { - "line": 2, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 87, - "end": 91, - "loc": { - "start": { - "line": 2, - "column": 29 - }, - "end": { - "line": 2, - "column": 33 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./src/Device", - "start": 92, - "end": 106, - "loc": { - "start": { - "line": 2, - "column": 34 - }, - "end": { - "line": 2, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 106, - "end": 107, - "loc": { - "start": { - "line": 2, - "column": 48 - }, - "end": { - "line": 2, - "column": 49 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 108, - "end": 114, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 115, - "end": 116, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 8 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 117, - "end": 124, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "as", - "start": 125, - "end": 127, - "loc": { - "start": { - "line": 3, - "column": 17 - }, - "end": { - "line": 3, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Service", - "start": 128, - "end": 135, - "loc": { - "start": { - "line": 3, - "column": 20 - }, - "end": { - "line": 3, - "column": 27 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 136, - "end": 137, - "loc": { - "start": { - "line": 3, - "column": 28 - }, - "end": { - "line": 3, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 138, - "end": 142, - "loc": { - "start": { - "line": 3, - "column": 30 - }, - "end": { - "line": 3, - "column": 34 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./src/Service", - "start": 143, - "end": 158, - "loc": { - "start": { - "line": 3, - "column": 35 - }, - "end": { - "line": 3, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 158, - "end": 159, - "loc": { - "start": { - "line": 3, - "column": 50 - }, - "end": { - "line": 3, - "column": 51 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 160, - "end": 166, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 167, - "end": 168, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 8 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 169, - "end": 176, - "loc": { - "start": { - "line": 4, - "column": 9 - }, - "end": { - "line": 4, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "as", - "start": 177, - "end": 179, - "loc": { - "start": { - "line": 4, - "column": 17 - }, - "end": { - "line": 4, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 180, - "end": 194, - "loc": { - "start": { - "line": 4, - "column": 20 - }, - "end": { - "line": 4, - "column": 34 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 195, - "end": 196, - "loc": { - "start": { - "line": 4, - "column": 35 - }, - "end": { - "line": 4, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 197, - "end": 201, - "loc": { - "start": { - "line": 4, - "column": 37 - }, - "end": { - "line": 4, - "column": 41 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./src/Characteristic", - "start": 202, - "end": 224, - "loc": { - "start": { - "line": 4, - "column": 42 - }, - "end": { - "line": 4, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 224, - "end": 225, - "loc": { - "start": { - "line": 4, - "column": 64 - }, - "end": { - "line": 4, - "column": 65 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 226, - "end": 232, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 233, - "end": 234, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "fullUUID", - "start": 235, - "end": 243, - "loc": { - "start": { - "line": 5, - "column": 9 - }, - "end": { - "line": 5, - "column": 17 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 244, - "end": 245, - "loc": { - "start": { - "line": 5, - "column": 18 - }, - "end": { - "line": 5, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 246, - "end": 250, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 24 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./src/Utils", - "start": 251, - "end": 264, - "loc": { - "start": { - "line": 5, - "column": 25 - }, - "end": { - "line": 5, - "column": 38 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 264, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 38 - }, - "end": { - "line": 5, - "column": 39 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 265, - "end": 265, - "loc": { - "start": { - "line": 5, - "column": 39 - }, - "end": { - "line": 5, - "column": 39 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/src/BleManager.js.json b/docs/ast/source/src/BleManager.js.json deleted file mode 100644 index e43e990f..00000000 --- a/docs/ast/source/src/BleManager.js.json +++ /dev/null @@ -1,35469 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 15039, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 387, - "column": 1 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 15039, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 387, - "column": 1 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ImportDeclaration", - "start": 15, - "end": 80, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 65 - } - }, - "specifiers": [ - { - "type": "ImportSpecifier", - "start": 24, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 22 - } - }, - "imported": { - "type": "Identifier", - "start": 24, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 22 - }, - "identifierName": "NativeModules" - }, - "name": "NativeModules" - }, - "local": { - "type": "Identifier", - "start": 24, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 22 - }, - "identifierName": "NativeModules" - }, - "name": "NativeModules" - } - }, - { - "type": "ImportSpecifier", - "start": 39, - "end": 57, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 42 - } - }, - "imported": { - "type": "Identifier", - "start": 39, - "end": 57, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 42 - }, - "identifierName": "NativeEventEmitter" - }, - "name": "NativeEventEmitter" - }, - "local": { - "type": "Identifier", - "start": 39, - "end": 57, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 42 - }, - "identifierName": "NativeEventEmitter" - }, - "name": "NativeEventEmitter" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 65, - "end": 79, - "loc": { - "start": { - "line": 3, - "column": 50 - }, - "end": { - "line": 3, - "column": 64 - } - }, - "extra": { - "rawValue": "react-native", - "raw": "'react-native'" - }, - "value": "react-native" - } - }, - { - "type": "ImportDeclaration", - "start": 81, - "end": 111, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 88, - "end": 94, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 13 - } - }, - "local": { - "type": "Identifier", - "start": 88, - "end": 94, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 13 - }, - "identifierName": "Device" - }, - "name": "Device" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 100, - "end": 110, - "loc": { - "start": { - "line": 4, - "column": 19 - }, - "end": { - "line": 4, - "column": 29 - } - }, - "extra": { - "rawValue": "./Device", - "raw": "'./Device'" - }, - "value": "./Device" - } - }, - { - "type": "ImportDeclaration", - "start": 112, - "end": 144, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 32 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 119, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - } - }, - "local": { - "type": "Identifier", - "start": 119, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - }, - "identifierName": "Service" - }, - "name": "Service" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 132, - "end": 143, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 31 - } - }, - "extra": { - "rawValue": "./Service", - "raw": "'./Service'" - }, - "value": "./Service" - } - }, - { - "type": "ImportDeclaration", - "start": 145, - "end": 191, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 6, - "column": 46 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 152, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 7 - }, - "end": { - "line": 6, - "column": 21 - } - }, - "local": { - "type": "Identifier", - "start": 152, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 7 - }, - "end": { - "line": 6, - "column": 21 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 172, - "end": 190, - "loc": { - "start": { - "line": 6, - "column": 27 - }, - "end": { - "line": 6, - "column": 45 - } - }, - "extra": { - "rawValue": "./Characteristic", - "raw": "'./Characteristic'" - }, - "value": "./Characteristic" - } - }, - { - "type": "ImportDeclaration", - "start": 192, - "end": 227, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 7, - "column": 35 - } - }, - "specifiers": [ - { - "type": "ImportSpecifier", - "start": 201, - "end": 209, - "loc": { - "start": { - "line": 7, - "column": 9 - }, - "end": { - "line": 7, - "column": 17 - } - }, - "imported": { - "type": "Identifier", - "start": 201, - "end": 209, - "loc": { - "start": { - "line": 7, - "column": 9 - }, - "end": { - "line": 7, - "column": 17 - }, - "identifierName": "fullUUID" - }, - "name": "fullUUID" - }, - "local": { - "type": "Identifier", - "start": 201, - "end": 209, - "loc": { - "start": { - "line": 7, - "column": 9 - }, - "end": { - "line": 7, - "column": 17 - }, - "identifierName": "fullUUID" - }, - "name": "fullUUID" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 217, - "end": 226, - "loc": { - "start": { - "line": 7, - "column": 25 - }, - "end": { - "line": 7, - "column": 34 - } - }, - "extra": { - "rawValue": "./Utils", - "raw": "'./Utils'" - }, - "value": "./Utils" - } - }, - { - "type": "VariableDeclaration", - "start": 229, - "end": 278, - "loc": { - "start": { - "line": 9, - "column": 0 - }, - "end": { - "line": 9, - "column": 49 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 235, - "end": 277, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 48 - } - }, - "id": { - "type": "Identifier", - "start": 235, - "end": 244, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 15 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "init": { - "type": "MemberExpression", - "start": 247, - "end": 277, - "loc": { - "start": { - "line": 9, - "column": 18 - }, - "end": { - "line": 9, - "column": 48 - } - }, - "object": { - "type": "Identifier", - "start": 247, - "end": 260, - "loc": { - "start": { - "line": 9, - "column": 18 - }, - "end": { - "line": 9, - "column": 31 - }, - "identifierName": "NativeModules" - }, - "name": "NativeModules" - }, - "property": { - "type": "Identifier", - "start": 261, - "end": 277, - "loc": { - "start": { - "line": 9, - "column": 32 - }, - "end": { - "line": 9, - "column": 48 - }, - "identifierName": "BleClientManager" - }, - "name": "BleClientManager" - }, - "computed": false - } - } - ], - "kind": "const", - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \n * on its instance when user wants to deallocate all resources.\n * \n * @example\n * const manager = new BleManager();\n * // ... work with BLE manager ...\n * manager.destroy(); \n * \n * @export\n * @class BleManager\n ", - "start": 280, - "end": 743, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 24, - "column": 3 - } - } - } - ] - }, - { - "type": "ExportDefaultDeclaration", - "start": 744, - "end": 15039, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 387, - "column": 1 - } - }, - "declaration": { - "type": "ClassDeclaration", - "start": 759, - "end": 15039, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 387, - "column": 1 - } - }, - "id": { - "type": "Identifier", - "start": 765, - "end": 775, - "loc": { - "start": { - "line": 25, - "column": 21 - }, - "end": { - "line": 25, - "column": 31 - }, - "identifierName": "BleManager" - }, - "name": "BleManager", - "leadingComments": null - }, - "superClass": null, - "body": { - "type": "ClassBody", - "start": 776, - "end": 15039, - "loc": { - "start": { - "line": 25, - "column": 32 - }, - "end": { - "line": 387, - "column": 1 - } - }, - "body": [ - { - "type": "ClassMethod", - "start": 781, - "end": 914, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 31, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 781, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 13 - }, - "identifierName": "constructor" - }, - "name": "constructor" - }, - "static": false, - "kind": "constructor", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 795, - "end": 914, - "loc": { - "start": { - "line": 27, - "column": 16 - }, - "end": { - "line": 31, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 801, - "end": 826, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 29 - } - }, - "expression": { - "type": "CallExpression", - "start": 801, - "end": 825, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 28 - } - }, - "callee": { - "type": "MemberExpression", - "start": 801, - "end": 823, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 801, - "end": 810, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 811, - "end": 823, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 26 - }, - "identifierName": "createClient" - }, - "name": "createClient" - }, - "computed": false - }, - "arguments": [] - } - }, - { - "type": "ExpressionStatement", - "start": 831, - "end": 886, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 59 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 831, - "end": 885, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 58 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 831, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 22 - } - }, - "object": { - "type": "ThisExpression", - "start": 831, - "end": 835, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 836, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 9 - }, - "end": { - "line": 29, - "column": 22 - }, - "identifierName": "_eventEmitter" - }, - "name": "_eventEmitter" - }, - "computed": false - }, - "right": { - "type": "NewExpression", - "start": 852, - "end": 885, - "loc": { - "start": { - "line": 29, - "column": 25 - }, - "end": { - "line": 29, - "column": 58 - } - }, - "callee": { - "type": "Identifier", - "start": 856, - "end": 874, - "loc": { - "start": { - "line": 29, - "column": 29 - }, - "end": { - "line": 29, - "column": 47 - }, - "identifierName": "NativeEventEmitter" - }, - "name": "NativeEventEmitter" - }, - "arguments": [ - { - "type": "Identifier", - "start": 875, - "end": 884, - "loc": { - "start": { - "line": 29, - "column": 48 - }, - "end": { - "line": 29, - "column": 57 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 891, - "end": 910, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 891, - "end": 909, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 891, - "end": 905, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 18 - } - }, - "object": { - "type": "ThisExpression", - "start": 891, - "end": 895, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 896, - "end": 905, - "loc": { - "start": { - "line": 30, - "column": 9 - }, - "end": { - "line": 30, - "column": 18 - }, - "identifierName": "_uniqueId" - }, - "name": "_uniqueId" - }, - "computed": false - }, - "right": { - "type": "NumericLiteral", - "start": 908, - "end": 909, - "loc": { - "start": { - "line": 30, - "column": 21 - }, - "end": { - "line": 30, - "column": 22 - } - }, - "extra": { - "rawValue": 0, - "raw": "0" - }, - "value": 0 - } - } - } - ], - "directives": [], - "trailingComments": null - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.\n * \n * @memberOf BleManager\n ", - "start": 918, - "end": 1076, - "loc": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 37, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 1079, - "end": 1125, - "loc": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 40, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 1079, - "end": 1086, - "loc": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 9 - }, - "identifierName": "destroy" - }, - "name": "destroy", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 1089, - "end": 1125, - "loc": { - "start": { - "line": 38, - "column": 12 - }, - "end": { - "line": 40, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1095, - "end": 1121, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 30 - } - }, - "expression": { - "type": "CallExpression", - "start": 1095, - "end": 1120, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 29 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1095, - "end": 1118, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 27 - } - }, - "object": { - "type": "Identifier", - "start": 1095, - "end": 1104, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 1105, - "end": 1118, - "loc": { - "start": { - "line": 39, - "column": 14 - }, - "end": { - "line": 39, - "column": 27 - }, - "identifierName": "destroyClient" - }, - "name": "destroyClient" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.\n * \n * @memberOf BleManager\n ", - "start": 918, - "end": 1076, - "loc": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 37, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 1129, - "end": 1213, - "loc": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 1129, - "end": 1142, - "loc": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 15 - }, - "identifierName": "_nextUniqueID" - }, - "name": "_nextUniqueID" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 1145, - "end": 1213, - "loc": { - "start": { - "line": 42, - "column": 18 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1151, - "end": 1171, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 24 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1151, - "end": 1170, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 23 - } - }, - "operator": "+=", - "left": { - "type": "MemberExpression", - "start": 1151, - "end": 1165, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 18 - } - }, - "object": { - "type": "ThisExpression", - "start": 1151, - "end": 1155, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 1156, - "end": 1165, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 18 - }, - "identifierName": "_uniqueId" - }, - "name": "_uniqueId" - }, - "computed": false - }, - "right": { - "type": "NumericLiteral", - "start": 1169, - "end": 1170, - "loc": { - "start": { - "line": 43, - "column": 22 - }, - "end": { - "line": 43, - "column": 23 - } - }, - "extra": { - "rawValue": 1, - "raw": "1" - }, - "value": 1 - } - } - }, - { - "type": "ReturnStatement", - "start": 1176, - "end": 1209, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 37 - } - }, - "argument": { - "type": "CallExpression", - "start": 1183, - "end": 1208, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 36 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1183, - "end": 1206, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 34 - } - }, - "object": { - "type": "MemberExpression", - "start": 1183, - "end": 1197, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 25 - } - }, - "object": { - "type": "ThisExpression", - "start": 1183, - "end": 1187, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 1188, - "end": 1197, - "loc": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 25 - }, - "identifierName": "_uniqueId" - }, - "name": "_uniqueId" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1198, - "end": 1206, - "loc": { - "start": { - "line": 44, - "column": 26 - }, - "end": { - "line": 44, - "column": 34 - }, - "identifierName": "toString" - }, - "name": "toString" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [], - "trailingComments": null - }, - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Common --------------------------------------------------------------------------------------------------------", - "start": 1217, - "end": 1337, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Cancels pending transaction.\n * \n * Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API \n * entry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a \n * promise or a callback which registers errors, `\"Cancelled\"` error will be emitted in that case.\n * \n * Cancelling transaction which doesn't exist is ignored.\n * \n * @param {string} transactionId Id of pending transactions.\n * \n * @memberOf BleManager\n ", - "start": 1342, - "end": 1895, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 62, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 1898, - "end": 1984, - "loc": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 65, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 1898, - "end": 1915, - "loc": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 63, - "column": 19 - }, - "identifierName": "cancelTransaction" - }, - "name": "cancelTransaction", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 1916, - "end": 1929, - "loc": { - "start": { - "line": 63, - "column": 20 - }, - "end": { - "line": 63, - "column": 33 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 1931, - "end": 1984, - "loc": { - "start": { - "line": 63, - "column": 35 - }, - "end": { - "line": 65, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 1937, - "end": 1980, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 47 - } - }, - "expression": { - "type": "CallExpression", - "start": 1937, - "end": 1979, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 46 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1937, - "end": 1964, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 31 - } - }, - "object": { - "type": "Identifier", - "start": 1937, - "end": 1946, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 1947, - "end": 1964, - "loc": { - "start": { - "line": 64, - "column": 14 - }, - "end": { - "line": 64, - "column": 31 - }, - "identifierName": "cancelTransaction" - }, - "name": "cancelTransaction" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 1965, - "end": 1978, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 45 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Common --------------------------------------------------------------------------------------------------------", - "start": 1217, - "end": 1337, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Cancels pending transaction.\n * \n * Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API \n * entry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a \n * promise or a callback which registers errors, `\"Cancelled\"` error will be emitted in that case.\n * \n * Cancelling transaction which doesn't exist is ignored.\n * \n * @param {string} transactionId Id of pending transactions.\n * \n * @memberOf BleManager\n ", - "start": 1342, - "end": 1895, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 62, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Monitoring state ----------------------------------------------------------------------------------------------", - "start": 1988, - "end": 2108, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 67, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Current state of a manager.\n * \n * Available states:\n * - `Unknown` - the current state of the manager is unknown; an update is imminent.\n * - `Resetting` - the connection with the system service was momentarily lost; an update is imminent.\n * - `Unsupported` - the platform does not support Bluetooth low energy.\n * - `Unauthorized` - the app is not authorized to use Bluetooth low energy.\n * - `PoweredOff` - Bluetooth is currently powered off.\n * - `PoweredOn` - Bluetooth is currently powered on and available to use.\n * \n * @returns {Promise} Promise which emits current state of BleManager.\n * \n * @memberOf BleManager\n ", - "start": 2113, - "end": 2783, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2786, - "end": 2829, - "loc": { - "start": { - "line": 85, - "column": 2 - }, - "end": { - "line": 87, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2786, - "end": 2791, - "loc": { - "start": { - "line": 85, - "column": 2 - }, - "end": { - "line": 85, - "column": 7 - }, - "identifierName": "state" - }, - "name": "state", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 2794, - "end": 2829, - "loc": { - "start": { - "line": 85, - "column": 10 - }, - "end": { - "line": 87, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2800, - "end": 2825, - "loc": { - "start": { - "line": 86, - "column": 4 - }, - "end": { - "line": 86, - "column": 29 - } - }, - "argument": { - "type": "CallExpression", - "start": 2807, - "end": 2824, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 86, - "column": 28 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2807, - "end": 2822, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 86, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 2807, - "end": 2816, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 86, - "column": 20 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 2817, - "end": 2822, - "loc": { - "start": { - "line": 86, - "column": 21 - }, - "end": { - "line": 86, - "column": 26 - }, - "identifierName": "state" - }, - "name": "state" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Monitoring state ----------------------------------------------------------------------------------------------", - "start": 1988, - "end": 2108, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 67, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Current state of a manager.\n * \n * Available states:\n * - `Unknown` - the current state of the manager is unknown; an update is imminent.\n * - `Resetting` - the connection with the system service was momentarily lost; an update is imminent.\n * - `Unsupported` - the platform does not support Bluetooth low energy.\n * - `Unauthorized` - the app is not authorized to use Bluetooth low energy.\n * - `PoweredOff` - Bluetooth is currently powered off.\n * - `PoweredOn` - Bluetooth is currently powered on and available to use.\n * \n * @returns {Promise} Promise which emits current state of BleManager.\n * \n * @memberOf BleManager\n ", - "start": 2113, - "end": 2783, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * Notifies about state changes of a manager.\n * \n * @param {function(newState: State)} listener Callback which emits state changes of BLE Manager. \n * Look at {@link state} for possible values.\n * @param {boolean} [emitCurrentState=false] If true, current state will be emitted as well. Defaults to false.\n * \n * @returns {Subscription} Subscription on which remove() function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 2833, - "end": 3292, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 100, - "column": 4 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3295, - "end": 3777, - "loc": { - "start": { - "line": 101, - "column": 2 - }, - "end": { - "line": 121, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3295, - "end": 3308, - "loc": { - "start": { - "line": 101, - "column": 2 - }, - "end": { - "line": 101, - "column": 15 - }, - "identifierName": "onStateChange" - }, - "name": "onStateChange", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3309, - "end": 3317, - "loc": { - "start": { - "line": 101, - "column": 16 - }, - "end": { - "line": 101, - "column": 24 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "AssignmentPattern", - "start": 3319, - "end": 3343, - "loc": { - "start": { - "line": 101, - "column": 26 - }, - "end": { - "line": 101, - "column": 50 - } - }, - "left": { - "type": "Identifier", - "start": 3319, - "end": 3335, - "loc": { - "start": { - "line": 101, - "column": 26 - }, - "end": { - "line": 101, - "column": 42 - }, - "identifierName": "emitCurrentState" - }, - "name": "emitCurrentState" - }, - "right": { - "type": "BooleanLiteral", - "start": 3338, - "end": 3343, - "loc": { - "start": { - "line": 101, - "column": 45 - }, - "end": { - "line": 101, - "column": 50 - } - }, - "value": false - } - } - ], - "body": { - "type": "BlockStatement", - "start": 3345, - "end": 3777, - "loc": { - "start": { - "line": 101, - "column": 52 - }, - "end": { - "line": 121, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 3351, - "end": 3441, - "loc": { - "start": { - "line": 102, - "column": 4 - }, - "end": { - "line": 102, - "column": 94 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3357, - "end": 3440, - "loc": { - "start": { - "line": 102, - "column": 10 - }, - "end": { - "line": 102, - "column": 93 - } - }, - "id": { - "type": "Identifier", - "start": 3357, - "end": 3369, - "loc": { - "start": { - "line": 102, - "column": 10 - }, - "end": { - "line": 102, - "column": 22 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "init": { - "type": "CallExpression", - "start": 3372, - "end": 3440, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 93 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3372, - "end": 3402, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 3372, - "end": 3390, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 43 - } - }, - "object": { - "type": "ThisExpression", - "start": 3372, - "end": 3376, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 29 - } - } - }, - "property": { - "type": "Identifier", - "start": 3377, - "end": 3390, - "loc": { - "start": { - "line": 102, - "column": 30 - }, - "end": { - "line": 102, - "column": 43 - }, - "identifierName": "_eventEmitter" - }, - "name": "_eventEmitter" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3391, - "end": 3402, - "loc": { - "start": { - "line": 102, - "column": 44 - }, - "end": { - "line": 102, - "column": 55 - }, - "identifierName": "addListener" - }, - "name": "addListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3403, - "end": 3429, - "loc": { - "start": { - "line": 102, - "column": 56 - }, - "end": { - "line": 102, - "column": 82 - } - }, - "object": { - "type": "Identifier", - "start": 3403, - "end": 3412, - "loc": { - "start": { - "line": 102, - "column": 56 - }, - "end": { - "line": 102, - "column": 65 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 3413, - "end": 3429, - "loc": { - "start": { - "line": 102, - "column": 66 - }, - "end": { - "line": 102, - "column": 82 - }, - "identifierName": "StateChangeEvent" - }, - "name": "StateChangeEvent" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 3431, - "end": 3439, - "loc": { - "start": { - "line": 102, - "column": 84 - }, - "end": { - "line": 102, - "column": 92 - }, - "identifierName": "listener" - }, - "name": "listener" - } - ] - } - } - ], - "kind": "const" - }, - { - "type": "IfStatement", - "start": 3447, - "end": 3747, - "loc": { - "start": { - "line": 104, - "column": 4 - }, - "end": { - "line": 118, - "column": 5 - } - }, - "test": { - "type": "Identifier", - "start": 3451, - "end": 3467, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 24 - }, - "identifierName": "emitCurrentState" - }, - "name": "emitCurrentState" - }, - "consequent": { - "type": "BlockStatement", - "start": 3469, - "end": 3747, - "loc": { - "start": { - "line": 104, - "column": 26 - }, - "end": { - "line": 118, - "column": 5 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 3477, - "end": 3499, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 28 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 3481, - "end": 3498, - "loc": { - "start": { - "line": 105, - "column": 10 - }, - "end": { - "line": 105, - "column": 27 - } - }, - "id": { - "type": "Identifier", - "start": 3481, - "end": 3490, - "loc": { - "start": { - "line": 105, - "column": 10 - }, - "end": { - "line": 105, - "column": 19 - }, - "identifierName": "cancelled" - }, - "name": "cancelled" - }, - "init": { - "type": "BooleanLiteral", - "start": 3493, - "end": 3498, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 27 - } - }, - "value": false - } - } - ], - "kind": "var" - }, - { - "type": "ExpressionStatement", - "start": 3506, - "end": 3621, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 110, - "column": 9 - } - }, - "expression": { - "type": "CallExpression", - "start": 3506, - "end": 3620, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 110, - "column": 8 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3506, - "end": 3523, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 23 - } - }, - "object": { - "type": "CallExpression", - "start": 3506, - "end": 3518, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 18 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3506, - "end": 3516, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 16 - } - }, - "object": { - "type": "ThisExpression", - "start": 3506, - "end": 3510, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 10 - } - } - }, - "property": { - "type": "Identifier", - "start": 3511, - "end": 3516, - "loc": { - "start": { - "line": 106, - "column": 11 - }, - "end": { - "line": 106, - "column": 16 - }, - "identifierName": "state" - }, - "name": "state" - }, - "computed": false - }, - "arguments": [] - }, - "property": { - "type": "Identifier", - "start": 3519, - "end": 3523, - "loc": { - "start": { - "line": 106, - "column": 19 - }, - "end": { - "line": 106, - "column": 23 - }, - "identifierName": "then" - }, - "name": "then" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrowFunctionExpression", - "start": 3524, - "end": 3619, - "loc": { - "start": { - "line": 106, - "column": 24 - }, - "end": { - "line": 110, - "column": 7 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3524, - "end": 3536, - "loc": { - "start": { - "line": 106, - "column": 24 - }, - "end": { - "line": 106, - "column": 36 - }, - "identifierName": "currentState" - }, - "name": "currentState" - } - ], - "body": { - "type": "BlockStatement", - "start": 3540, - "end": 3619, - "loc": { - "start": { - "line": 106, - "column": 40 - }, - "end": { - "line": 110, - "column": 7 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 3550, - "end": 3611, - "loc": { - "start": { - "line": 107, - "column": 8 - }, - "end": { - "line": 109, - "column": 9 - } - }, - "test": { - "type": "UnaryExpression", - "start": 3554, - "end": 3564, - "loc": { - "start": { - "line": 107, - "column": 12 - }, - "end": { - "line": 107, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 3555, - "end": 3564, - "loc": { - "start": { - "line": 107, - "column": 13 - }, - "end": { - "line": 107, - "column": 22 - }, - "identifierName": "cancelled" - }, - "name": "cancelled" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 3566, - "end": 3611, - "loc": { - "start": { - "line": 107, - "column": 24 - }, - "end": { - "line": 109, - "column": 9 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 3578, - "end": 3601, - "loc": { - "start": { - "line": 108, - "column": 10 - }, - "end": { - "line": 108, - "column": 33 - } - }, - "expression": { - "type": "CallExpression", - "start": 3578, - "end": 3600, - "loc": { - "start": { - "line": 108, - "column": 10 - }, - "end": { - "line": 108, - "column": 32 - } - }, - "callee": { - "type": "Identifier", - "start": 3578, - "end": 3586, - "loc": { - "start": { - "line": 108, - "column": 10 - }, - "end": { - "line": 108, - "column": 18 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "Identifier", - "start": 3587, - "end": 3599, - "loc": { - "start": { - "line": 108, - "column": 19 - }, - "end": { - "line": 108, - "column": 31 - }, - "identifierName": "currentState" - }, - "name": "currentState" - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - } - ], - "directives": [] - } - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 3629, - "end": 3741, - "loc": { - "start": { - "line": 112, - "column": 6 - }, - "end": { - "line": 117, - "column": 8 - } - }, - "argument": { - "type": "ObjectExpression", - "start": 3636, - "end": 3740, - "loc": { - "start": { - "line": 112, - "column": 13 - }, - "end": { - "line": 117, - "column": 7 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 3646, - "end": 3732, - "loc": { - "start": { - "line": 113, - "column": 8 - }, - "end": { - "line": 116, - "column": 9 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 3646, - "end": 3652, - "loc": { - "start": { - "line": 113, - "column": 8 - }, - "end": { - "line": 113, - "column": 14 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "value": { - "type": "ArrowFunctionExpression", - "start": 3654, - "end": 3732, - "loc": { - "start": { - "line": 113, - "column": 16 - }, - "end": { - "line": 116, - "column": 9 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 3660, - "end": 3732, - "loc": { - "start": { - "line": 113, - "column": 22 - }, - "end": { - "line": 116, - "column": 9 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 3672, - "end": 3689, - "loc": { - "start": { - "line": 114, - "column": 10 - }, - "end": { - "line": 114, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 3672, - "end": 3688, - "loc": { - "start": { - "line": 114, - "column": 10 - }, - "end": { - "line": 114, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 3672, - "end": 3681, - "loc": { - "start": { - "line": 114, - "column": 10 - }, - "end": { - "line": 114, - "column": 19 - }, - "identifierName": "cancelled" - }, - "name": "cancelled" - }, - "right": { - "type": "BooleanLiteral", - "start": 3684, - "end": 3688, - "loc": { - "start": { - "line": 114, - "column": 22 - }, - "end": { - "line": 114, - "column": 26 - } - }, - "value": true - } - } - }, - { - "type": "ExpressionStatement", - "start": 3700, - "end": 3722, - "loc": { - "start": { - "line": 115, - "column": 10 - }, - "end": { - "line": 115, - "column": 32 - } - }, - "expression": { - "type": "CallExpression", - "start": 3700, - "end": 3721, - "loc": { - "start": { - "line": 115, - "column": 10 - }, - "end": { - "line": 115, - "column": 31 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3700, - "end": 3719, - "loc": { - "start": { - "line": 115, - "column": 10 - }, - "end": { - "line": 115, - "column": 29 - } - }, - "object": { - "type": "Identifier", - "start": 3700, - "end": 3712, - "loc": { - "start": { - "line": 115, - "column": 10 - }, - "end": { - "line": 115, - "column": 22 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "property": { - "type": "Identifier", - "start": 3713, - "end": 3719, - "loc": { - "start": { - "line": 115, - "column": 23 - }, - "end": { - "line": 115, - "column": 29 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - } - } - } - ] - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "ReturnStatement", - "start": 3753, - "end": 3773, - "loc": { - "start": { - "line": 120, - "column": 4 - }, - "end": { - "line": 120, - "column": 24 - } - }, - "argument": { - "type": "Identifier", - "start": 3760, - "end": 3772, - "loc": { - "start": { - "line": 120, - "column": 11 - }, - "end": { - "line": 120, - "column": 23 - }, - "identifierName": "subscription" - }, - "name": "subscription" - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * Notifies about state changes of a manager.\n * \n * @param {function(newState: State)} listener Callback which emits state changes of BLE Manager. \n * Look at {@link state} for possible values.\n * @param {boolean} [emitCurrentState=false] If true, current state will be emitted as well. Defaults to false.\n * \n * @returns {Subscription} Subscription on which remove() function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 2833, - "end": 3292, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 100, - "column": 4 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Scanning ------------------------------------------------------------------------------------------------------", - "start": 3781, - "end": 3901, - "loc": { - "start": { - "line": 123, - "column": 2 - }, - "end": { - "line": 123, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Starts device scanning. \n * \n * When previous scan is in progress it will be stopped before executing this command.\n * \n * @param {?string[]} UUIDs - Array of strings containing UUIDs of services which are registered in scanned devices. \n * If null is passed all available devices will be scanned.\n * @param {?ScanOptions} options - Optional configuration for scanning operation. Scan option object contains two\n * optional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more\n * frequently, `autoConnect` for Android - allows to connect to devices which are not in range.\n * @param {function(error: ?Error, scannedDevice: ?Device)} listener - Function which will be called for every scanned \n * {@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set \n * to non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument \n * is a scanned {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 3906, - "end": 4984, - "loc": { - "start": { - "line": 126, - "column": 2 - }, - "end": { - "line": 142, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 4987, - "end": 5329, - "loc": { - "start": { - "line": 143, - "column": 2 - }, - "end": { - "line": 150, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 4987, - "end": 5002, - "loc": { - "start": { - "line": 143, - "column": 2 - }, - "end": { - "line": 143, - "column": 17 - }, - "identifierName": "startDeviceScan" - }, - "name": "startDeviceScan", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 5003, - "end": 5008, - "loc": { - "start": { - "line": 143, - "column": 18 - }, - "end": { - "line": 143, - "column": 23 - }, - "identifierName": "UUIDs" - }, - "name": "UUIDs" - }, - { - "type": "Identifier", - "start": 5010, - "end": 5017, - "loc": { - "start": { - "line": 143, - "column": 25 - }, - "end": { - "line": 143, - "column": 32 - }, - "identifierName": "options" - }, - "name": "options" - }, - { - "type": "Identifier", - "start": 5019, - "end": 5027, - "loc": { - "start": { - "line": 143, - "column": 34 - }, - "end": { - "line": 143, - "column": 42 - }, - "identifierName": "listener" - }, - "name": "listener" - } - ], - "body": { - "type": "BlockStatement", - "start": 5029, - "end": 5329, - "loc": { - "start": { - "line": 143, - "column": 44 - }, - "end": { - "line": 150, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 5035, - "end": 5057, - "loc": { - "start": { - "line": 144, - "column": 4 - }, - "end": { - "line": 144, - "column": 26 - } - }, - "expression": { - "type": "CallExpression", - "start": 5035, - "end": 5056, - "loc": { - "start": { - "line": 144, - "column": 4 - }, - "end": { - "line": 144, - "column": 25 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5035, - "end": 5054, - "loc": { - "start": { - "line": 144, - "column": 4 - }, - "end": { - "line": 144, - "column": 23 - } - }, - "object": { - "type": "ThisExpression", - "start": 5035, - "end": 5039, - "loc": { - "start": { - "line": 144, - "column": 4 - }, - "end": { - "line": 144, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 5040, - "end": 5054, - "loc": { - "start": { - "line": 144, - "column": 9 - }, - "end": { - "line": 144, - "column": 23 - }, - "identifierName": "stopDeviceScan" - }, - "name": "stopDeviceScan" - }, - "computed": false - }, - "arguments": [] - } - }, - { - "type": "VariableDeclaration", - "start": 5062, - "end": 5177, - "loc": { - "start": { - "line": 145, - "column": 4 - }, - "end": { - "line": 147, - "column": 6 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 5068, - "end": 5176, - "loc": { - "start": { - "line": 145, - "column": 10 - }, - "end": { - "line": 147, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 5068, - "end": 5080, - "loc": { - "start": { - "line": 145, - "column": 10 - }, - "end": { - "line": 145, - "column": 22 - }, - "identifierName": "scanListener" - }, - "name": "scanListener" - }, - "init": { - "type": "ArrowFunctionExpression", - "start": 5083, - "end": 5176, - "loc": { - "start": { - "line": 145, - "column": 25 - }, - "end": { - "line": 147, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "ArrayPattern", - "start": 5084, - "end": 5099, - "loc": { - "start": { - "line": 145, - "column": 26 - }, - "end": { - "line": 145, - "column": 41 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 5085, - "end": 5090, - "loc": { - "start": { - "line": 145, - "column": 27 - }, - "end": { - "line": 145, - "column": 32 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "Identifier", - "start": 5092, - "end": 5098, - "loc": { - "start": { - "line": 145, - "column": 34 - }, - "end": { - "line": 145, - "column": 40 - }, - "identifierName": "device" - }, - "name": "device" - } - ] - } - ], - "body": { - "type": "BlockStatement", - "start": 5104, - "end": 5176, - "loc": { - "start": { - "line": 145, - "column": 46 - }, - "end": { - "line": 147, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 5112, - "end": 5170, - "loc": { - "start": { - "line": 146, - "column": 6 - }, - "end": { - "line": 146, - "column": 64 - } - }, - "expression": { - "type": "CallExpression", - "start": 5112, - "end": 5169, - "loc": { - "start": { - "line": 146, - "column": 6 - }, - "end": { - "line": 146, - "column": 63 - } - }, - "callee": { - "type": "Identifier", - "start": 5112, - "end": 5120, - "loc": { - "start": { - "line": 146, - "column": 6 - }, - "end": { - "line": 146, - "column": 14 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "Identifier", - "start": 5121, - "end": 5126, - "loc": { - "start": { - "line": 146, - "column": 15 - }, - "end": { - "line": 146, - "column": 20 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "ConditionalExpression", - "start": 5128, - "end": 5168, - "loc": { - "start": { - "line": 146, - "column": 22 - }, - "end": { - "line": 146, - "column": 62 - } - }, - "test": { - "type": "Identifier", - "start": 5128, - "end": 5134, - "loc": { - "start": { - "line": 146, - "column": 22 - }, - "end": { - "line": 146, - "column": 28 - }, - "identifierName": "device" - }, - "name": "device" - }, - "consequent": { - "type": "NewExpression", - "start": 5137, - "end": 5161, - "loc": { - "start": { - "line": 146, - "column": 31 - }, - "end": { - "line": 146, - "column": 55 - } - }, - "callee": { - "type": "Identifier", - "start": 5141, - "end": 5147, - "loc": { - "start": { - "line": 146, - "column": 35 - }, - "end": { - "line": 146, - "column": 41 - }, - "identifierName": "Device" - }, - "name": "Device" - }, - "arguments": [ - { - "type": "Identifier", - "start": 5148, - "end": 5154, - "loc": { - "start": { - "line": 146, - "column": 42 - }, - "end": { - "line": 146, - "column": 48 - }, - "identifierName": "device" - }, - "name": "device" - }, - { - "type": "ThisExpression", - "start": 5156, - "end": 5160, - "loc": { - "start": { - "line": 146, - "column": 50 - }, - "end": { - "line": 146, - "column": 54 - } - } - } - ] - }, - "alternate": { - "type": "NullLiteral", - "start": 5164, - "end": 5168, - "loc": { - "start": { - "line": 146, - "column": 58 - }, - "end": { - "line": 146, - "column": 62 - } - } - } - } - ] - } - } - ], - "directives": [] - } - } - } - ], - "kind": "const" - }, - { - "type": "ExpressionStatement", - "start": 5182, - "end": 5278, - "loc": { - "start": { - "line": 148, - "column": 4 - }, - "end": { - "line": 148, - "column": 100 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 5182, - "end": 5277, - "loc": { - "start": { - "line": 148, - "column": 4 - }, - "end": { - "line": 148, - "column": 99 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 5182, - "end": 5209, - "loc": { - "start": { - "line": 148, - "column": 4 - }, - "end": { - "line": 148, - "column": 31 - } - }, - "object": { - "type": "ThisExpression", - "start": 5182, - "end": 5186, - "loc": { - "start": { - "line": 148, - "column": 4 - }, - "end": { - "line": 148, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 5187, - "end": 5209, - "loc": { - "start": { - "line": 148, - "column": 9 - }, - "end": { - "line": 148, - "column": 31 - }, - "identifierName": "_scanEventSubscription" - }, - "name": "_scanEventSubscription" - }, - "computed": false - }, - "right": { - "type": "CallExpression", - "start": 5212, - "end": 5277, - "loc": { - "start": { - "line": 148, - "column": 34 - }, - "end": { - "line": 148, - "column": 99 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5212, - "end": 5242, - "loc": { - "start": { - "line": 148, - "column": 34 - }, - "end": { - "line": 148, - "column": 64 - } - }, - "object": { - "type": "MemberExpression", - "start": 5212, - "end": 5230, - "loc": { - "start": { - "line": 148, - "column": 34 - }, - "end": { - "line": 148, - "column": 52 - } - }, - "object": { - "type": "ThisExpression", - "start": 5212, - "end": 5216, - "loc": { - "start": { - "line": 148, - "column": 34 - }, - "end": { - "line": 148, - "column": 38 - } - } - }, - "property": { - "type": "Identifier", - "start": 5217, - "end": 5230, - "loc": { - "start": { - "line": 148, - "column": 39 - }, - "end": { - "line": 148, - "column": 52 - }, - "identifierName": "_eventEmitter" - }, - "name": "_eventEmitter" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 5231, - "end": 5242, - "loc": { - "start": { - "line": 148, - "column": 53 - }, - "end": { - "line": 148, - "column": 64 - }, - "identifierName": "addListener" - }, - "name": "addListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 5243, - "end": 5262, - "loc": { - "start": { - "line": 148, - "column": 65 - }, - "end": { - "line": 148, - "column": 84 - } - }, - "object": { - "type": "Identifier", - "start": 5243, - "end": 5252, - "loc": { - "start": { - "line": 148, - "column": 65 - }, - "end": { - "line": 148, - "column": 74 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 5253, - "end": 5262, - "loc": { - "start": { - "line": 148, - "column": 75 - }, - "end": { - "line": 148, - "column": 84 - }, - "identifierName": "ScanEvent" - }, - "name": "ScanEvent" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 5264, - "end": 5276, - "loc": { - "start": { - "line": 148, - "column": 86 - }, - "end": { - "line": 148, - "column": 98 - }, - "identifierName": "scanListener" - }, - "name": "scanListener" - } - ] - } - } - }, - { - "type": "ExpressionStatement", - "start": 5283, - "end": 5325, - "loc": { - "start": { - "line": 149, - "column": 4 - }, - "end": { - "line": 149, - "column": 46 - } - }, - "expression": { - "type": "CallExpression", - "start": 5283, - "end": 5324, - "loc": { - "start": { - "line": 149, - "column": 4 - }, - "end": { - "line": 149, - "column": 45 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5283, - "end": 5308, - "loc": { - "start": { - "line": 149, - "column": 4 - }, - "end": { - "line": 149, - "column": 29 - } - }, - "object": { - "type": "Identifier", - "start": 5283, - "end": 5292, - "loc": { - "start": { - "line": 149, - "column": 4 - }, - "end": { - "line": 149, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 5293, - "end": 5308, - "loc": { - "start": { - "line": 149, - "column": 14 - }, - "end": { - "line": 149, - "column": 29 - }, - "identifierName": "startDeviceScan" - }, - "name": "startDeviceScan" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 5309, - "end": 5314, - "loc": { - "start": { - "line": 149, - "column": 30 - }, - "end": { - "line": 149, - "column": 35 - }, - "identifierName": "UUIDs" - }, - "name": "UUIDs" - }, - { - "type": "Identifier", - "start": 5316, - "end": 5323, - "loc": { - "start": { - "line": 149, - "column": 37 - }, - "end": { - "line": 149, - "column": 44 - }, - "identifierName": "options" - }, - "name": "options" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Scanning ------------------------------------------------------------------------------------------------------", - "start": 3781, - "end": 3901, - "loc": { - "start": { - "line": 123, - "column": 2 - }, - "end": { - "line": 123, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Starts device scanning. \n * \n * When previous scan is in progress it will be stopped before executing this command.\n * \n * @param {?string[]} UUIDs - Array of strings containing UUIDs of services which are registered in scanned devices. \n * If null is passed all available devices will be scanned.\n * @param {?ScanOptions} options - Optional configuration for scanning operation. Scan option object contains two\n * optional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more\n * frequently, `autoConnect` for Android - allows to connect to devices which are not in range.\n * @param {function(error: ?Error, scannedDevice: ?Device)} listener - Function which will be called for every scanned \n * {@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set \n * to non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument \n * is a scanned {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 3906, - "end": 4984, - "loc": { - "start": { - "line": 126, - "column": 2 - }, - "end": { - "line": 142, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * Stops device scan if in progress.\n * \n * @memberOf BleManager\n ", - "start": 5333, - "end": 5419, - "loc": { - "start": { - "line": 152, - "column": 2 - }, - "end": { - "line": 157, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 5422, - "end": 5607, - "loc": { - "start": { - "line": 158, - "column": 2 - }, - "end": { - "line": 164, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 5422, - "end": 5436, - "loc": { - "start": { - "line": 158, - "column": 2 - }, - "end": { - "line": 158, - "column": 16 - }, - "identifierName": "stopDeviceScan" - }, - "name": "stopDeviceScan", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 5439, - "end": 5607, - "loc": { - "start": { - "line": 158, - "column": 19 - }, - "end": { - "line": 164, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 5445, - "end": 5571, - "loc": { - "start": { - "line": 159, - "column": 4 - }, - "end": { - "line": 162, - "column": 5 - } - }, - "test": { - "type": "MemberExpression", - "start": 5449, - "end": 5476, - "loc": { - "start": { - "line": 159, - "column": 8 - }, - "end": { - "line": 159, - "column": 35 - } - }, - "object": { - "type": "ThisExpression", - "start": 5449, - "end": 5453, - "loc": { - "start": { - "line": 159, - "column": 8 - }, - "end": { - "line": 159, - "column": 12 - } - } - }, - "property": { - "type": "Identifier", - "start": 5454, - "end": 5476, - "loc": { - "start": { - "line": 159, - "column": 13 - }, - "end": { - "line": 159, - "column": 35 - }, - "identifierName": "_scanEventSubscription" - }, - "name": "_scanEventSubscription" - }, - "computed": false - }, - "consequent": { - "type": "BlockStatement", - "start": 5478, - "end": 5571, - "loc": { - "start": { - "line": 159, - "column": 37 - }, - "end": { - "line": 162, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 5486, - "end": 5523, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 43 - } - }, - "expression": { - "type": "CallExpression", - "start": 5486, - "end": 5522, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5486, - "end": 5520, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 40 - } - }, - "object": { - "type": "MemberExpression", - "start": 5486, - "end": 5513, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 33 - } - }, - "object": { - "type": "ThisExpression", - "start": 5486, - "end": 5490, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 10 - } - } - }, - "property": { - "type": "Identifier", - "start": 5491, - "end": 5513, - "loc": { - "start": { - "line": 160, - "column": 11 - }, - "end": { - "line": 160, - "column": 33 - }, - "identifierName": "_scanEventSubscription" - }, - "name": "_scanEventSubscription" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 5514, - "end": 5520, - "loc": { - "start": { - "line": 160, - "column": 34 - }, - "end": { - "line": 160, - "column": 40 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [] - } - }, - { - "type": "ExpressionStatement", - "start": 5530, - "end": 5565, - "loc": { - "start": { - "line": 161, - "column": 6 - }, - "end": { - "line": 161, - "column": 41 - } - }, - "expression": { - "type": "UnaryExpression", - "start": 5530, - "end": 5564, - "loc": { - "start": { - "line": 161, - "column": 6 - }, - "end": { - "line": 161, - "column": 40 - } - }, - "operator": "delete", - "prefix": true, - "argument": { - "type": "MemberExpression", - "start": 5537, - "end": 5564, - "loc": { - "start": { - "line": 161, - "column": 13 - }, - "end": { - "line": 161, - "column": 40 - } - }, - "object": { - "type": "ThisExpression", - "start": 5537, - "end": 5541, - "loc": { - "start": { - "line": 161, - "column": 13 - }, - "end": { - "line": 161, - "column": 17 - } - } - }, - "property": { - "type": "Identifier", - "start": 5542, - "end": 5564, - "loc": { - "start": { - "line": 161, - "column": 18 - }, - "end": { - "line": 161, - "column": 40 - }, - "identifierName": "_scanEventSubscription" - }, - "name": "_scanEventSubscription" - }, - "computed": false - }, - "extra": { - "parenthesizedArgument": false - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 5576, - "end": 5603, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 31 - } - }, - "expression": { - "type": "CallExpression", - "start": 5576, - "end": 5602, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 30 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5576, - "end": 5600, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 5576, - "end": 5585, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 5586, - "end": 5600, - "loc": { - "start": { - "line": 163, - "column": 14 - }, - "end": { - "line": 163, - "column": 28 - }, - "identifierName": "stopDeviceScan" - }, - "name": "stopDeviceScan" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * Stops device scan if in progress.\n * \n * @memberOf BleManager\n ", - "start": 5333, - "end": 5419, - "loc": { - "start": { - "line": 152, - "column": 2 - }, - "end": { - "line": 157, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Connection management -----------------------------------------------------------------------------------------", - "start": 5611, - "end": 5731, - "loc": { - "start": { - "line": 166, - "column": 2 - }, - "end": { - "line": 166, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Connects to {@link Device} with provided ID.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf BleManager\n ", - "start": 5735, - "end": 6097, - "loc": { - "start": { - "line": 168, - "column": 2 - }, - "end": { - "line": 176, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 6100, - "end": 6280, - "loc": { - "start": { - "line": 177, - "column": 2 - }, - "end": { - "line": 180, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 6106, - "end": 6121, - "loc": { - "start": { - "line": 177, - "column": 8 - }, - "end": { - "line": 177, - "column": 23 - }, - "identifierName": "connectToDevice" - }, - "name": "connectToDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 6122, - "end": 6138, - "loc": { - "start": { - "line": 177, - "column": 24 - }, - "end": { - "line": 177, - "column": 40 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 6140, - "end": 6147, - "loc": { - "start": { - "line": 177, - "column": 42 - }, - "end": { - "line": 177, - "column": 49 - }, - "identifierName": "options" - }, - "name": "options" - } - ], - "body": { - "type": "BlockStatement", - "start": 6149, - "end": 6280, - "loc": { - "start": { - "line": 177, - "column": 51 - }, - "end": { - "line": 180, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 6155, - "end": 6234, - "loc": { - "start": { - "line": 178, - "column": 4 - }, - "end": { - "line": 178, - "column": 83 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 6161, - "end": 6233, - "loc": { - "start": { - "line": 178, - "column": 10 - }, - "end": { - "line": 178, - "column": 82 - } - }, - "id": { - "type": "Identifier", - "start": 6161, - "end": 6172, - "loc": { - "start": { - "line": 178, - "column": 10 - }, - "end": { - "line": 178, - "column": 21 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - "init": { - "type": "AwaitExpression", - "start": 6175, - "end": 6233, - "loc": { - "start": { - "line": 178, - "column": 24 - }, - "end": { - "line": 178, - "column": 82 - } - }, - "argument": { - "type": "CallExpression", - "start": 6181, - "end": 6233, - "loc": { - "start": { - "line": 178, - "column": 30 - }, - "end": { - "line": 178, - "column": 82 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6181, - "end": 6206, - "loc": { - "start": { - "line": 178, - "column": 30 - }, - "end": { - "line": 178, - "column": 55 - } - }, - "object": { - "type": "Identifier", - "start": 6181, - "end": 6190, - "loc": { - "start": { - "line": 178, - "column": 30 - }, - "end": { - "line": 178, - "column": 39 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 6191, - "end": 6206, - "loc": { - "start": { - "line": 178, - "column": 40 - }, - "end": { - "line": 178, - "column": 55 - }, - "identifierName": "connectToDevice" - }, - "name": "connectToDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 6207, - "end": 6223, - "loc": { - "start": { - "line": 178, - "column": 56 - }, - "end": { - "line": 178, - "column": 72 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 6225, - "end": 6232, - "loc": { - "start": { - "line": 178, - "column": 74 - }, - "end": { - "line": 178, - "column": 81 - }, - "identifierName": "options" - }, - "name": "options" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 6239, - "end": 6276, - "loc": { - "start": { - "line": 179, - "column": 4 - }, - "end": { - "line": 179, - "column": 41 - } - }, - "argument": { - "type": "NewExpression", - "start": 6246, - "end": 6275, - "loc": { - "start": { - "line": 179, - "column": 11 - }, - "end": { - "line": 179, - "column": 40 - } - }, - "callee": { - "type": "Identifier", - "start": 6250, - "end": 6256, - "loc": { - "start": { - "line": 179, - "column": 15 - }, - "end": { - "line": 179, - "column": 21 - }, - "identifierName": "Device" - }, - "name": "Device" - }, - "arguments": [ - { - "type": "Identifier", - "start": 6257, - "end": 6268, - "loc": { - "start": { - "line": 179, - "column": 22 - }, - "end": { - "line": 179, - "column": 33 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - { - "type": "ThisExpression", - "start": 6270, - "end": 6274, - "loc": { - "start": { - "line": 179, - "column": 35 - }, - "end": { - "line": 179, - "column": 39 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Connection management -----------------------------------------------------------------------------------------", - "start": 5611, - "end": 5731, - "loc": { - "start": { - "line": 166, - "column": 2 - }, - "end": { - "line": 166, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Connects to {@link Device} with provided ID.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf BleManager\n ", - "start": 5735, - "end": 6097, - "loc": { - "start": { - "line": 168, - "column": 2 - }, - "end": { - "line": 176, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Disconnects from device if it's connected or cancels pending connection.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be closed. \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf BleManager\n ", - "start": 6284, - "end": 6582, - "loc": { - "start": { - "line": 182, - "column": 2 - }, - "end": { - "line": 189, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 6585, - "end": 6761, - "loc": { - "start": { - "line": 190, - "column": 2 - }, - "end": { - "line": 193, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 6591, - "end": 6613, - "loc": { - "start": { - "line": 190, - "column": 8 - }, - "end": { - "line": 190, - "column": 30 - }, - "identifierName": "cancelDeviceConnection" - }, - "name": "cancelDeviceConnection" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 6614, - "end": 6630, - "loc": { - "start": { - "line": 190, - "column": 31 - }, - "end": { - "line": 190, - "column": 47 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ], - "body": { - "type": "BlockStatement", - "start": 6632, - "end": 6761, - "loc": { - "start": { - "line": 190, - "column": 49 - }, - "end": { - "line": 193, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 6638, - "end": 6715, - "loc": { - "start": { - "line": 191, - "column": 4 - }, - "end": { - "line": 191, - "column": 81 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 6644, - "end": 6714, - "loc": { - "start": { - "line": 191, - "column": 10 - }, - "end": { - "line": 191, - "column": 80 - } - }, - "id": { - "type": "Identifier", - "start": 6644, - "end": 6655, - "loc": { - "start": { - "line": 191, - "column": 10 - }, - "end": { - "line": 191, - "column": 21 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - "init": { - "type": "AwaitExpression", - "start": 6658, - "end": 6714, - "loc": { - "start": { - "line": 191, - "column": 24 - }, - "end": { - "line": 191, - "column": 80 - } - }, - "argument": { - "type": "CallExpression", - "start": 6664, - "end": 6714, - "loc": { - "start": { - "line": 191, - "column": 30 - }, - "end": { - "line": 191, - "column": 80 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6664, - "end": 6696, - "loc": { - "start": { - "line": 191, - "column": 30 - }, - "end": { - "line": 191, - "column": 62 - } - }, - "object": { - "type": "Identifier", - "start": 6664, - "end": 6673, - "loc": { - "start": { - "line": 191, - "column": 30 - }, - "end": { - "line": 191, - "column": 39 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 6674, - "end": 6696, - "loc": { - "start": { - "line": 191, - "column": 40 - }, - "end": { - "line": 191, - "column": 62 - }, - "identifierName": "cancelDeviceConnection" - }, - "name": "cancelDeviceConnection" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 6697, - "end": 6713, - "loc": { - "start": { - "line": 191, - "column": 63 - }, - "end": { - "line": 191, - "column": 79 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 6720, - "end": 6757, - "loc": { - "start": { - "line": 192, - "column": 4 - }, - "end": { - "line": 192, - "column": 41 - } - }, - "argument": { - "type": "NewExpression", - "start": 6727, - "end": 6756, - "loc": { - "start": { - "line": 192, - "column": 11 - }, - "end": { - "line": 192, - "column": 40 - } - }, - "callee": { - "type": "Identifier", - "start": 6731, - "end": 6737, - "loc": { - "start": { - "line": 192, - "column": 15 - }, - "end": { - "line": 192, - "column": 21 - }, - "identifierName": "Device" - }, - "name": "Device" - }, - "arguments": [ - { - "type": "Identifier", - "start": 6738, - "end": 6749, - "loc": { - "start": { - "line": 192, - "column": 22 - }, - "end": { - "line": 192, - "column": 33 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - { - "type": "ThisExpression", - "start": 6751, - "end": 6755, - "loc": { - "start": { - "line": 192, - "column": 35 - }, - "end": { - "line": 192, - "column": 39 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Disconnects from device if it's connected or cancels pending connection.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be closed. \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf BleManager\n ", - "start": 6284, - "end": 6582, - "loc": { - "start": { - "line": 182, - "column": 2 - }, - "end": { - "line": 189, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Monitors if device was disconnected due to any errors or connection problems.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be monitored.\n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 6765, - "end": 7244, - "loc": { - "start": { - "line": 195, - "column": 2 - }, - "end": { - "line": 204, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 7247, - "end": 7582, - "loc": { - "start": { - "line": 205, - "column": 2 - }, - "end": { - "line": 213, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 7247, - "end": 7267, - "loc": { - "start": { - "line": 205, - "column": 2 - }, - "end": { - "line": 205, - "column": 22 - }, - "identifierName": "onDeviceDisconnected" - }, - "name": "onDeviceDisconnected", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 7268, - "end": 7284, - "loc": { - "start": { - "line": 205, - "column": 23 - }, - "end": { - "line": 205, - "column": 39 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 7286, - "end": 7294, - "loc": { - "start": { - "line": 205, - "column": 41 - }, - "end": { - "line": 205, - "column": 49 - }, - "identifierName": "listener" - }, - "name": "listener" - } - ], - "body": { - "type": "BlockStatement", - "start": 7296, - "end": 7582, - "loc": { - "start": { - "line": 205, - "column": 51 - }, - "end": { - "line": 213, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 7302, - "end": 7442, - "loc": { - "start": { - "line": 206, - "column": 4 - }, - "end": { - "line": 209, - "column": 6 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7308, - "end": 7441, - "loc": { - "start": { - "line": 206, - "column": 10 - }, - "end": { - "line": 209, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 7308, - "end": 7329, - "loc": { - "start": { - "line": 206, - "column": 10 - }, - "end": { - "line": 206, - "column": 31 - }, - "identifierName": "disconnectionListener" - }, - "name": "disconnectionListener" - }, - "init": { - "type": "ArrowFunctionExpression", - "start": 7332, - "end": 7441, - "loc": { - "start": { - "line": 206, - "column": 34 - }, - "end": { - "line": 209, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "ArrayPattern", - "start": 7333, - "end": 7348, - "loc": { - "start": { - "line": 206, - "column": 35 - }, - "end": { - "line": 206, - "column": 50 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 7334, - "end": 7339, - "loc": { - "start": { - "line": 206, - "column": 36 - }, - "end": { - "line": 206, - "column": 41 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "Identifier", - "start": 7341, - "end": 7347, - "loc": { - "start": { - "line": 206, - "column": 43 - }, - "end": { - "line": 206, - "column": 49 - }, - "identifierName": "device" - }, - "name": "device" - } - ] - } - ], - "body": { - "type": "BlockStatement", - "start": 7353, - "end": 7441, - "loc": { - "start": { - "line": 206, - "column": 55 - }, - "end": { - "line": 209, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 7361, - "end": 7404, - "loc": { - "start": { - "line": 207, - "column": 6 - }, - "end": { - "line": 207, - "column": 49 - } - }, - "test": { - "type": "BinaryExpression", - "start": 7365, - "end": 7395, - "loc": { - "start": { - "line": 207, - "column": 10 - }, - "end": { - "line": 207, - "column": 40 - } - }, - "left": { - "type": "Identifier", - "start": 7365, - "end": 7381, - "loc": { - "start": { - "line": 207, - "column": 10 - }, - "end": { - "line": 207, - "column": 26 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - "operator": "!==", - "right": { - "type": "MemberExpression", - "start": 7386, - "end": 7395, - "loc": { - "start": { - "line": 207, - "column": 31 - }, - "end": { - "line": 207, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 7386, - "end": 7392, - "loc": { - "start": { - "line": 207, - "column": 31 - }, - "end": { - "line": 207, - "column": 37 - }, - "identifierName": "device" - }, - "name": "device" - }, - "property": { - "type": "Identifier", - "start": 7393, - "end": 7395, - "loc": { - "start": { - "line": 207, - "column": 38 - }, - "end": { - "line": 207, - "column": 40 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 7397, - "end": 7404, - "loc": { - "start": { - "line": 207, - "column": 42 - }, - "end": { - "line": 207, - "column": 49 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 7411, - "end": 7435, - "loc": { - "start": { - "line": 208, - "column": 6 - }, - "end": { - "line": 208, - "column": 30 - } - }, - "expression": { - "type": "CallExpression", - "start": 7411, - "end": 7434, - "loc": { - "start": { - "line": 208, - "column": 6 - }, - "end": { - "line": 208, - "column": 29 - } - }, - "callee": { - "type": "Identifier", - "start": 7411, - "end": 7419, - "loc": { - "start": { - "line": 208, - "column": 6 - }, - "end": { - "line": 208, - "column": 14 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "Identifier", - "start": 7420, - "end": 7425, - "loc": { - "start": { - "line": 208, - "column": 15 - }, - "end": { - "line": 208, - "column": 20 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "Identifier", - "start": 7427, - "end": 7433, - "loc": { - "start": { - "line": 208, - "column": 22 - }, - "end": { - "line": 208, - "column": 28 - }, - "identifierName": "device" - }, - "name": "device" - } - ] - } - } - ], - "directives": [] - } - } - } - ], - "kind": "const" - }, - { - "type": "VariableDeclaration", - "start": 7448, - "end": 7553, - "loc": { - "start": { - "line": 211, - "column": 4 - }, - "end": { - "line": 211, - "column": 109 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 7454, - "end": 7552, - "loc": { - "start": { - "line": 211, - "column": 10 - }, - "end": { - "line": 211, - "column": 108 - } - }, - "id": { - "type": "Identifier", - "start": 7454, - "end": 7466, - "loc": { - "start": { - "line": 211, - "column": 10 - }, - "end": { - "line": 211, - "column": 22 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "init": { - "type": "CallExpression", - "start": 7469, - "end": 7552, - "loc": { - "start": { - "line": 211, - "column": 25 - }, - "end": { - "line": 211, - "column": 108 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7469, - "end": 7499, - "loc": { - "start": { - "line": 211, - "column": 25 - }, - "end": { - "line": 211, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 7469, - "end": 7487, - "loc": { - "start": { - "line": 211, - "column": 25 - }, - "end": { - "line": 211, - "column": 43 - } - }, - "object": { - "type": "ThisExpression", - "start": 7469, - "end": 7473, - "loc": { - "start": { - "line": 211, - "column": 25 - }, - "end": { - "line": 211, - "column": 29 - } - } - }, - "property": { - "type": "Identifier", - "start": 7474, - "end": 7487, - "loc": { - "start": { - "line": 211, - "column": 30 - }, - "end": { - "line": 211, - "column": 43 - }, - "identifierName": "_eventEmitter" - }, - "name": "_eventEmitter" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 7488, - "end": 7499, - "loc": { - "start": { - "line": 211, - "column": 44 - }, - "end": { - "line": 211, - "column": 55 - }, - "identifierName": "addListener" - }, - "name": "addListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 7500, - "end": 7528, - "loc": { - "start": { - "line": 211, - "column": 56 - }, - "end": { - "line": 211, - "column": 84 - } - }, - "object": { - "type": "Identifier", - "start": 7500, - "end": 7509, - "loc": { - "start": { - "line": 211, - "column": 56 - }, - "end": { - "line": 211, - "column": 65 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 7510, - "end": 7528, - "loc": { - "start": { - "line": 211, - "column": 66 - }, - "end": { - "line": 211, - "column": 84 - }, - "identifierName": "DisconnectionEvent" - }, - "name": "DisconnectionEvent" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 7530, - "end": 7551, - "loc": { - "start": { - "line": 211, - "column": 86 - }, - "end": { - "line": 211, - "column": 107 - }, - "identifierName": "disconnectionListener" - }, - "name": "disconnectionListener" - } - ] - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 7558, - "end": 7578, - "loc": { - "start": { - "line": 212, - "column": 4 - }, - "end": { - "line": 212, - "column": 24 - } - }, - "argument": { - "type": "Identifier", - "start": 7565, - "end": 7577, - "loc": { - "start": { - "line": 212, - "column": 11 - }, - "end": { - "line": 212, - "column": 23 - }, - "identifierName": "subscription" - }, - "name": "subscription" - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Monitors if device was disconnected due to any errors or connection problems.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be monitored.\n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 6765, - "end": 7244, - "loc": { - "start": { - "line": 195, - "column": 2 - }, - "end": { - "line": 204, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Check connection state of a device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf BleManager\n ", - "start": 7586, - "end": 7850, - "loc": { - "start": { - "line": 215, - "column": 2 - }, - "end": { - "line": 222, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 7853, - "end": 7958, - "loc": { - "start": { - "line": 223, - "column": 2 - }, - "end": { - "line": 225, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 7859, - "end": 7876, - "loc": { - "start": { - "line": 223, - "column": 8 - }, - "end": { - "line": 223, - "column": 25 - }, - "identifierName": "isDeviceConnected" - }, - "name": "isDeviceConnected" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 7877, - "end": 7893, - "loc": { - "start": { - "line": 223, - "column": 26 - }, - "end": { - "line": 223, - "column": 42 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ], - "body": { - "type": "BlockStatement", - "start": 7895, - "end": 7958, - "loc": { - "start": { - "line": 223, - "column": 44 - }, - "end": { - "line": 225, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 7901, - "end": 7954, - "loc": { - "start": { - "line": 224, - "column": 4 - }, - "end": { - "line": 224, - "column": 57 - } - }, - "argument": { - "type": "CallExpression", - "start": 7908, - "end": 7953, - "loc": { - "start": { - "line": 224, - "column": 11 - }, - "end": { - "line": 224, - "column": 56 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7908, - "end": 7935, - "loc": { - "start": { - "line": 224, - "column": 11 - }, - "end": { - "line": 224, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 7908, - "end": 7917, - "loc": { - "start": { - "line": 224, - "column": 11 - }, - "end": { - "line": 224, - "column": 20 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 7918, - "end": 7935, - "loc": { - "start": { - "line": 224, - "column": 21 - }, - "end": { - "line": 224, - "column": 38 - }, - "identifierName": "isDeviceConnected" - }, - "name": "isDeviceConnected" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 7936, - "end": 7952, - "loc": { - "start": { - "line": 224, - "column": 39 - }, - "end": { - "line": 224, - "column": 55 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Check connection state of a device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf BleManager\n ", - "start": 7586, - "end": 7850, - "loc": { - "start": { - "line": 215, - "column": 2 - }, - "end": { - "line": 222, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Discovery -------------------------------------------------------------------------------------------------", - "start": 7962, - "end": 8078, - "loc": { - "start": { - "line": 227, - "column": 2 - }, - "end": { - "line": 227, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Discovers all services and characteristics for {@link Device}.\n * \n * @param {string} identifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf BleManager\n ", - "start": 8082, - "end": 8408, - "loc": { - "start": { - "line": 229, - "column": 2 - }, - "end": { - "line": 237, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 8411, - "end": 8623, - "loc": { - "start": { - "line": 238, - "column": 2 - }, - "end": { - "line": 241, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 8417, - "end": 8463, - "loc": { - "start": { - "line": 238, - "column": 8 - }, - "end": { - "line": 238, - "column": 54 - }, - "identifierName": "discoverAllServicesAndCharacteristicsForDevice" - }, - "name": "discoverAllServicesAndCharacteristicsForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 8464, - "end": 8474, - "loc": { - "start": { - "line": 238, - "column": 55 - }, - "end": { - "line": 238, - "column": 65 - }, - "identifierName": "identifier" - }, - "name": "identifier" - } - ], - "body": { - "type": "BlockStatement", - "start": 8476, - "end": 8623, - "loc": { - "start": { - "line": 238, - "column": 67 - }, - "end": { - "line": 241, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 8482, - "end": 8577, - "loc": { - "start": { - "line": 239, - "column": 4 - }, - "end": { - "line": 239, - "column": 99 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 8488, - "end": 8576, - "loc": { - "start": { - "line": 239, - "column": 10 - }, - "end": { - "line": 239, - "column": 98 - } - }, - "id": { - "type": "Identifier", - "start": 8488, - "end": 8499, - "loc": { - "start": { - "line": 239, - "column": 10 - }, - "end": { - "line": 239, - "column": 21 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - "init": { - "type": "AwaitExpression", - "start": 8502, - "end": 8576, - "loc": { - "start": { - "line": 239, - "column": 24 - }, - "end": { - "line": 239, - "column": 98 - } - }, - "argument": { - "type": "CallExpression", - "start": 8508, - "end": 8576, - "loc": { - "start": { - "line": 239, - "column": 30 - }, - "end": { - "line": 239, - "column": 98 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8508, - "end": 8564, - "loc": { - "start": { - "line": 239, - "column": 30 - }, - "end": { - "line": 239, - "column": 86 - } - }, - "object": { - "type": "Identifier", - "start": 8508, - "end": 8517, - "loc": { - "start": { - "line": 239, - "column": 30 - }, - "end": { - "line": 239, - "column": 39 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 8518, - "end": 8564, - "loc": { - "start": { - "line": 239, - "column": 40 - }, - "end": { - "line": 239, - "column": 86 - }, - "identifierName": "discoverAllServicesAndCharacteristicsForDevice" - }, - "name": "discoverAllServicesAndCharacteristicsForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 8565, - "end": 8575, - "loc": { - "start": { - "line": 239, - "column": 87 - }, - "end": { - "line": 239, - "column": 97 - }, - "identifierName": "identifier" - }, - "name": "identifier" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 8582, - "end": 8619, - "loc": { - "start": { - "line": 240, - "column": 4 - }, - "end": { - "line": 240, - "column": 41 - } - }, - "argument": { - "type": "NewExpression", - "start": 8589, - "end": 8618, - "loc": { - "start": { - "line": 240, - "column": 11 - }, - "end": { - "line": 240, - "column": 40 - } - }, - "callee": { - "type": "Identifier", - "start": 8593, - "end": 8599, - "loc": { - "start": { - "line": 240, - "column": 15 - }, - "end": { - "line": 240, - "column": 21 - }, - "identifierName": "Device" - }, - "name": "Device" - }, - "arguments": [ - { - "type": "Identifier", - "start": 8600, - "end": 8611, - "loc": { - "start": { - "line": 240, - "column": 22 - }, - "end": { - "line": 240, - "column": 33 - }, - "identifierName": "deviceProps" - }, - "name": "deviceProps" - }, - { - "type": "ThisExpression", - "start": 8613, - "end": 8617, - "loc": { - "start": { - "line": 240, - "column": 35 - }, - "end": { - "line": 240, - "column": 39 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Discovery -------------------------------------------------------------------------------------------------", - "start": 7962, - "end": 8078, - "loc": { - "start": { - "line": 227, - "column": 2 - }, - "end": { - "line": 227, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Discovers all services and characteristics for {@link Device}.\n * \n * @param {string} identifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf BleManager\n ", - "start": 8082, - "end": 8408, - "loc": { - "start": { - "line": 229, - "column": 2 - }, - "end": { - "line": 237, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Service and characteristic getters ------------------------------------------------------------------------", - "start": 8627, - "end": 8743, - "loc": { - "start": { - "line": 243, - "column": 2 - }, - "end": { - "line": 243, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered services for device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered for a \n * {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 8747, - "end": 9045, - "loc": { - "start": { - "line": 245, - "column": 2 - }, - "end": { - "line": 253, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 9048, - "end": 9265, - "loc": { - "start": { - "line": 254, - "column": 2 - }, - "end": { - "line": 259, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 9054, - "end": 9071, - "loc": { - "start": { - "line": 254, - "column": 8 - }, - "end": { - "line": 254, - "column": 25 - }, - "identifierName": "servicesForDevice" - }, - "name": "servicesForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 9072, - "end": 9088, - "loc": { - "start": { - "line": 254, - "column": 26 - }, - "end": { - "line": 254, - "column": 42 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ], - "body": { - "type": "BlockStatement", - "start": 9090, - "end": 9265, - "loc": { - "start": { - "line": 254, - "column": 44 - }, - "end": { - "line": 259, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 9096, - "end": 9165, - "loc": { - "start": { - "line": 255, - "column": 4 - }, - "end": { - "line": 255, - "column": 73 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 9102, - "end": 9164, - "loc": { - "start": { - "line": 255, - "column": 10 - }, - "end": { - "line": 255, - "column": 72 - } - }, - "id": { - "type": "Identifier", - "start": 9102, - "end": 9110, - "loc": { - "start": { - "line": 255, - "column": 10 - }, - "end": { - "line": 255, - "column": 18 - }, - "identifierName": "services" - }, - "name": "services" - }, - "init": { - "type": "AwaitExpression", - "start": 9113, - "end": 9164, - "loc": { - "start": { - "line": 255, - "column": 21 - }, - "end": { - "line": 255, - "column": 72 - } - }, - "argument": { - "type": "CallExpression", - "start": 9119, - "end": 9164, - "loc": { - "start": { - "line": 255, - "column": 27 - }, - "end": { - "line": 255, - "column": 72 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9119, - "end": 9146, - "loc": { - "start": { - "line": 255, - "column": 27 - }, - "end": { - "line": 255, - "column": 54 - } - }, - "object": { - "type": "Identifier", - "start": 9119, - "end": 9128, - "loc": { - "start": { - "line": 255, - "column": 27 - }, - "end": { - "line": 255, - "column": 36 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 9129, - "end": 9146, - "loc": { - "start": { - "line": 255, - "column": 37 - }, - "end": { - "line": 255, - "column": 54 - }, - "identifierName": "servicesForDevice" - }, - "name": "servicesForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 9147, - "end": 9163, - "loc": { - "start": { - "line": 255, - "column": 55 - }, - "end": { - "line": 255, - "column": 71 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 9170, - "end": 9261, - "loc": { - "start": { - "line": 256, - "column": 4 - }, - "end": { - "line": 258, - "column": 7 - } - }, - "argument": { - "type": "CallExpression", - "start": 9177, - "end": 9260, - "loc": { - "start": { - "line": 256, - "column": 11 - }, - "end": { - "line": 258, - "column": 6 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9177, - "end": 9189, - "loc": { - "start": { - "line": 256, - "column": 11 - }, - "end": { - "line": 256, - "column": 23 - } - }, - "object": { - "type": "Identifier", - "start": 9177, - "end": 9185, - "loc": { - "start": { - "line": 256, - "column": 11 - }, - "end": { - "line": 256, - "column": 19 - }, - "identifierName": "services" - }, - "name": "services" - }, - "property": { - "type": "Identifier", - "start": 9186, - "end": 9189, - "loc": { - "start": { - "line": 256, - "column": 20 - }, - "end": { - "line": 256, - "column": 23 - }, - "identifierName": "map" - }, - "name": "map" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrowFunctionExpression", - "start": 9190, - "end": 9259, - "loc": { - "start": { - "line": 256, - "column": 24 - }, - "end": { - "line": 258, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 9190, - "end": 9202, - "loc": { - "start": { - "line": 256, - "column": 24 - }, - "end": { - "line": 256, - "column": 36 - }, - "identifierName": "serviceProps" - }, - "name": "serviceProps" - } - ], - "body": { - "type": "BlockStatement", - "start": 9206, - "end": 9259, - "loc": { - "start": { - "line": 256, - "column": 40 - }, - "end": { - "line": 258, - "column": 5 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 9214, - "end": 9253, - "loc": { - "start": { - "line": 257, - "column": 6 - }, - "end": { - "line": 257, - "column": 45 - } - }, - "argument": { - "type": "NewExpression", - "start": 9221, - "end": 9252, - "loc": { - "start": { - "line": 257, - "column": 13 - }, - "end": { - "line": 257, - "column": 44 - } - }, - "callee": { - "type": "Identifier", - "start": 9225, - "end": 9232, - "loc": { - "start": { - "line": 257, - "column": 17 - }, - "end": { - "line": 257, - "column": 24 - }, - "identifierName": "Service" - }, - "name": "Service" - }, - "arguments": [ - { - "type": "Identifier", - "start": 9233, - "end": 9245, - "loc": { - "start": { - "line": 257, - "column": 25 - }, - "end": { - "line": 257, - "column": 37 - }, - "identifierName": "serviceProps" - }, - "name": "serviceProps" - }, - { - "type": "ThisExpression", - "start": 9247, - "end": 9251, - "loc": { - "start": { - "line": 257, - "column": 39 - }, - "end": { - "line": 257, - "column": 43 - } - } - } - ] - } - } - ], - "directives": [] - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Service and characteristic getters ------------------------------------------------------------------------", - "start": 8627, - "end": 8743, - "loc": { - "start": { - "line": 243, - "column": 2 - }, - "end": { - "line": 243, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered services for device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered for a \n * {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 8747, - "end": 9045, - "loc": { - "start": { - "line": 245, - "column": 2 - }, - "end": { - "line": 253, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * List of discovered characteristics for given {@link Device} and {@link Service}.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf BleManager\n ", - "start": 9269, - "end": 9708, - "loc": { - "start": { - "line": 261, - "column": 2 - }, - "end": { - "line": 270, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 9711, - "end": 10003, - "loc": { - "start": { - "line": 271, - "column": 2 - }, - "end": { - "line": 276, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 9717, - "end": 9741, - "loc": { - "start": { - "line": 271, - "column": 8 - }, - "end": { - "line": 271, - "column": 32 - }, - "identifierName": "characteristicsForDevice" - }, - "name": "characteristicsForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 9742, - "end": 9758, - "loc": { - "start": { - "line": 271, - "column": 33 - }, - "end": { - "line": 271, - "column": 49 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 9760, - "end": 9771, - "loc": { - "start": { - "line": 271, - "column": 51 - }, - "end": { - "line": 271, - "column": 62 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - } - ], - "body": { - "type": "BlockStatement", - "start": 9773, - "end": 10003, - "loc": { - "start": { - "line": 271, - "column": 64 - }, - "end": { - "line": 276, - "column": 3 - } - }, - "body": [ - { - "type": "VariableDeclaration", - "start": 9779, - "end": 9875, - "loc": { - "start": { - "line": 272, - "column": 4 - }, - "end": { - "line": 272, - "column": 100 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 9785, - "end": 9874, - "loc": { - "start": { - "line": 272, - "column": 10 - }, - "end": { - "line": 272, - "column": 99 - } - }, - "id": { - "type": "Identifier", - "start": 9785, - "end": 9800, - "loc": { - "start": { - "line": 272, - "column": 10 - }, - "end": { - "line": 272, - "column": 25 - }, - "identifierName": "characteristics" - }, - "name": "characteristics" - }, - "init": { - "type": "AwaitExpression", - "start": 9803, - "end": 9874, - "loc": { - "start": { - "line": 272, - "column": 28 - }, - "end": { - "line": 272, - "column": 99 - } - }, - "argument": { - "type": "CallExpression", - "start": 9809, - "end": 9874, - "loc": { - "start": { - "line": 272, - "column": 34 - }, - "end": { - "line": 272, - "column": 99 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9809, - "end": 9843, - "loc": { - "start": { - "line": 272, - "column": 34 - }, - "end": { - "line": 272, - "column": 68 - } - }, - "object": { - "type": "Identifier", - "start": 9809, - "end": 9818, - "loc": { - "start": { - "line": 272, - "column": 34 - }, - "end": { - "line": 272, - "column": 43 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 9819, - "end": 9843, - "loc": { - "start": { - "line": 272, - "column": 44 - }, - "end": { - "line": 272, - "column": 68 - }, - "identifierName": "characteristicsForDevice" - }, - "name": "characteristicsForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 9844, - "end": 9860, - "loc": { - "start": { - "line": 272, - "column": 69 - }, - "end": { - "line": 272, - "column": 85 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 9862, - "end": 9873, - "loc": { - "start": { - "line": 272, - "column": 87 - }, - "end": { - "line": 272, - "column": 98 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 9880, - "end": 9999, - "loc": { - "start": { - "line": 273, - "column": 4 - }, - "end": { - "line": 275, - "column": 7 - } - }, - "argument": { - "type": "CallExpression", - "start": 9887, - "end": 9998, - "loc": { - "start": { - "line": 273, - "column": 11 - }, - "end": { - "line": 275, - "column": 6 - } - }, - "callee": { - "type": "MemberExpression", - "start": 9887, - "end": 9906, - "loc": { - "start": { - "line": 273, - "column": 11 - }, - "end": { - "line": 273, - "column": 30 - } - }, - "object": { - "type": "Identifier", - "start": 9887, - "end": 9902, - "loc": { - "start": { - "line": 273, - "column": 11 - }, - "end": { - "line": 273, - "column": 26 - }, - "identifierName": "characteristics" - }, - "name": "characteristics" - }, - "property": { - "type": "Identifier", - "start": 9903, - "end": 9906, - "loc": { - "start": { - "line": 273, - "column": 27 - }, - "end": { - "line": 273, - "column": 30 - }, - "identifierName": "map" - }, - "name": "map" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrowFunctionExpression", - "start": 9907, - "end": 9997, - "loc": { - "start": { - "line": 273, - "column": 31 - }, - "end": { - "line": 275, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 9907, - "end": 9926, - "loc": { - "start": { - "line": 273, - "column": 31 - }, - "end": { - "line": 273, - "column": 50 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - } - ], - "body": { - "type": "BlockStatement", - "start": 9930, - "end": 9997, - "loc": { - "start": { - "line": 273, - "column": 54 - }, - "end": { - "line": 275, - "column": 5 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 9938, - "end": 9991, - "loc": { - "start": { - "line": 274, - "column": 6 - }, - "end": { - "line": 274, - "column": 59 - } - }, - "argument": { - "type": "NewExpression", - "start": 9945, - "end": 9990, - "loc": { - "start": { - "line": 274, - "column": 13 - }, - "end": { - "line": 274, - "column": 58 - } - }, - "callee": { - "type": "Identifier", - "start": 9949, - "end": 9963, - "loc": { - "start": { - "line": 274, - "column": 17 - }, - "end": { - "line": 274, - "column": 31 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - }, - "arguments": [ - { - "type": "Identifier", - "start": 9964, - "end": 9983, - "loc": { - "start": { - "line": 274, - "column": 32 - }, - "end": { - "line": 274, - "column": 51 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - { - "type": "ThisExpression", - "start": 9985, - "end": 9989, - "loc": { - "start": { - "line": 274, - "column": 53 - }, - "end": { - "line": 274, - "column": 57 - } - } - } - ] - } - } - ], - "directives": [] - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * List of discovered characteristics for given {@link Device} and {@link Service}.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf BleManager\n ", - "start": 9269, - "end": 9708, - "loc": { - "start": { - "line": 261, - "column": 2 - }, - "end": { - "line": 270, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentLine", - "value": " Mark: Characteristics operations --------------------------------------------------------------------------------", - "start": 10007, - "end": 10123, - "loc": { - "start": { - "line": 278, - "column": 2 - }, - "end": { - "line": 278, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Read characteristic value.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 10127, - "end": 10734, - "loc": { - "start": { - "line": 280, - "column": 2 - }, - "end": { - "line": 291, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 10737, - "end": 11120, - "loc": { - "start": { - "line": 292, - "column": 2 - }, - "end": { - "line": 299, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 10743, - "end": 10770, - "loc": { - "start": { - "line": 292, - "column": 8 - }, - "end": { - "line": 292, - "column": 35 - }, - "identifierName": "readCharacteristicForDevice" - }, - "name": "readCharacteristicForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 10771, - "end": 10787, - "loc": { - "start": { - "line": 292, - "column": 36 - }, - "end": { - "line": 292, - "column": 52 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 10789, - "end": 10800, - "loc": { - "start": { - "line": 292, - "column": 54 - }, - "end": { - "line": 292, - "column": 65 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 10802, - "end": 10820, - "loc": { - "start": { - "line": 292, - "column": 67 - }, - "end": { - "line": 292, - "column": 85 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 10822, - "end": 10835, - "loc": { - "start": { - "line": 292, - "column": 87 - }, - "end": { - "line": 292, - "column": 100 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 10837, - "end": 11120, - "loc": { - "start": { - "line": 292, - "column": 102 - }, - "end": { - "line": 299, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 10843, - "end": 10914, - "loc": { - "start": { - "line": 293, - "column": 4 - }, - "end": { - "line": 295, - "column": 5 - } - }, - "test": { - "type": "UnaryExpression", - "start": 10847, - "end": 10861, - "loc": { - "start": { - "line": 293, - "column": 8 - }, - "end": { - "line": 293, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 10848, - "end": 10861, - "loc": { - "start": { - "line": 293, - "column": 9 - }, - "end": { - "line": 293, - "column": 22 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 10863, - "end": 10914, - "loc": { - "start": { - "line": 293, - "column": 24 - }, - "end": { - "line": 295, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 10871, - "end": 10908, - "loc": { - "start": { - "line": 294, - "column": 6 - }, - "end": { - "line": 294, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 10871, - "end": 10907, - "loc": { - "start": { - "line": 294, - "column": 6 - }, - "end": { - "line": 294, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 10871, - "end": 10884, - "loc": { - "start": { - "line": 294, - "column": 6 - }, - "end": { - "line": 294, - "column": 19 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "right": { - "type": "CallExpression", - "start": 10887, - "end": 10907, - "loc": { - "start": { - "line": 294, - "column": 22 - }, - "end": { - "line": 294, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 10887, - "end": 10905, - "loc": { - "start": { - "line": 294, - "column": 22 - }, - "end": { - "line": 294, - "column": 40 - } - }, - "object": { - "type": "ThisExpression", - "start": 10887, - "end": 10891, - "loc": { - "start": { - "line": 294, - "column": 22 - }, - "end": { - "line": 294, - "column": 26 - } - } - }, - "property": { - "type": "Identifier", - "start": 10892, - "end": 10905, - "loc": { - "start": { - "line": 294, - "column": 27 - }, - "end": { - "line": 294, - "column": 40 - }, - "identifierName": "_nextUniqueID" - }, - "name": "_nextUniqueID" - }, - "computed": false - }, - "arguments": [] - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 10920, - "end": 11058, - "loc": { - "start": { - "line": 297, - "column": 4 - }, - "end": { - "line": 297, - "column": 142 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 10926, - "end": 11057, - "loc": { - "start": { - "line": 297, - "column": 10 - }, - "end": { - "line": 297, - "column": 141 - } - }, - "id": { - "type": "Identifier", - "start": 10926, - "end": 10945, - "loc": { - "start": { - "line": 297, - "column": 10 - }, - "end": { - "line": 297, - "column": 29 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - "init": { - "type": "AwaitExpression", - "start": 10948, - "end": 11057, - "loc": { - "start": { - "line": 297, - "column": 32 - }, - "end": { - "line": 297, - "column": 141 - } - }, - "argument": { - "type": "CallExpression", - "start": 10954, - "end": 11057, - "loc": { - "start": { - "line": 297, - "column": 38 - }, - "end": { - "line": 297, - "column": 141 - } - }, - "callee": { - "type": "MemberExpression", - "start": 10954, - "end": 10991, - "loc": { - "start": { - "line": 297, - "column": 38 - }, - "end": { - "line": 297, - "column": 75 - } - }, - "object": { - "type": "Identifier", - "start": 10954, - "end": 10963, - "loc": { - "start": { - "line": 297, - "column": 38 - }, - "end": { - "line": 297, - "column": 47 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 10964, - "end": 10991, - "loc": { - "start": { - "line": 297, - "column": 48 - }, - "end": { - "line": 297, - "column": 75 - }, - "identifierName": "readCharacteristicForDevice" - }, - "name": "readCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 10992, - "end": 11008, - "loc": { - "start": { - "line": 297, - "column": 76 - }, - "end": { - "line": 297, - "column": 92 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 11010, - "end": 11021, - "loc": { - "start": { - "line": 297, - "column": 94 - }, - "end": { - "line": 297, - "column": 105 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 11023, - "end": 11041, - "loc": { - "start": { - "line": 297, - "column": 107 - }, - "end": { - "line": 297, - "column": 125 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 11043, - "end": 11056, - "loc": { - "start": { - "line": 297, - "column": 127 - }, - "end": { - "line": 297, - "column": 140 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 11063, - "end": 11116, - "loc": { - "start": { - "line": 298, - "column": 4 - }, - "end": { - "line": 298, - "column": 57 - } - }, - "argument": { - "type": "NewExpression", - "start": 11070, - "end": 11115, - "loc": { - "start": { - "line": 298, - "column": 11 - }, - "end": { - "line": 298, - "column": 56 - } - }, - "callee": { - "type": "Identifier", - "start": 11074, - "end": 11088, - "loc": { - "start": { - "line": 298, - "column": 15 - }, - "end": { - "line": 298, - "column": 29 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - }, - "arguments": [ - { - "type": "Identifier", - "start": 11089, - "end": 11108, - "loc": { - "start": { - "line": 298, - "column": 30 - }, - "end": { - "line": 298, - "column": 49 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - { - "type": "ThisExpression", - "start": 11110, - "end": 11114, - "loc": { - "start": { - "line": 298, - "column": 51 - }, - "end": { - "line": 298, - "column": 55 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentLine", - "value": " Mark: Characteristics operations --------------------------------------------------------------------------------", - "start": 10007, - "end": 10123, - "loc": { - "start": { - "line": 278, - "column": 2 - }, - "end": { - "line": 278, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Read characteristic value.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 10127, - "end": 10734, - "loc": { - "start": { - "line": 280, - "column": 2 - }, - "end": { - "line": 291, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value with response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 11124, - "end": 11800, - "loc": { - "start": { - "line": 301, - "column": 2 - }, - "end": { - "line": 313, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 11803, - "end": 12232, - "loc": { - "start": { - "line": 314, - "column": 2 - }, - "end": { - "line": 321, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 11809, - "end": 11849, - "loc": { - "start": { - "line": 314, - "column": 8 - }, - "end": { - "line": 314, - "column": 48 - }, - "identifierName": "writeCharacteristicWithResponseForDevice" - }, - "name": "writeCharacteristicWithResponseForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 11850, - "end": 11866, - "loc": { - "start": { - "line": 314, - "column": 49 - }, - "end": { - "line": 314, - "column": 65 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 11868, - "end": 11879, - "loc": { - "start": { - "line": 314, - "column": 67 - }, - "end": { - "line": 314, - "column": 78 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 11881, - "end": 11899, - "loc": { - "start": { - "line": 314, - "column": 80 - }, - "end": { - "line": 314, - "column": 98 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 11901, - "end": 11912, - "loc": { - "start": { - "line": 314, - "column": 100 - }, - "end": { - "line": 314, - "column": 111 - }, - "identifierName": "base64Value" - }, - "name": "base64Value" - }, - { - "type": "Identifier", - "start": 11914, - "end": 11927, - "loc": { - "start": { - "line": 314, - "column": 113 - }, - "end": { - "line": 314, - "column": 126 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 11929, - "end": 12232, - "loc": { - "start": { - "line": 314, - "column": 128 - }, - "end": { - "line": 321, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 11935, - "end": 12006, - "loc": { - "start": { - "line": 315, - "column": 4 - }, - "end": { - "line": 317, - "column": 5 - } - }, - "test": { - "type": "UnaryExpression", - "start": 11939, - "end": 11953, - "loc": { - "start": { - "line": 315, - "column": 8 - }, - "end": { - "line": 315, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 11940, - "end": 11953, - "loc": { - "start": { - "line": 315, - "column": 9 - }, - "end": { - "line": 315, - "column": 22 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 11955, - "end": 12006, - "loc": { - "start": { - "line": 315, - "column": 24 - }, - "end": { - "line": 317, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 11963, - "end": 12000, - "loc": { - "start": { - "line": 316, - "column": 6 - }, - "end": { - "line": 316, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 11963, - "end": 11999, - "loc": { - "start": { - "line": 316, - "column": 6 - }, - "end": { - "line": 316, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 11963, - "end": 11976, - "loc": { - "start": { - "line": 316, - "column": 6 - }, - "end": { - "line": 316, - "column": 19 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "right": { - "type": "CallExpression", - "start": 11979, - "end": 11999, - "loc": { - "start": { - "line": 316, - "column": 22 - }, - "end": { - "line": 316, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 11979, - "end": 11997, - "loc": { - "start": { - "line": 316, - "column": 22 - }, - "end": { - "line": 316, - "column": 40 - } - }, - "object": { - "type": "ThisExpression", - "start": 11979, - "end": 11983, - "loc": { - "start": { - "line": 316, - "column": 22 - }, - "end": { - "line": 316, - "column": 26 - } - } - }, - "property": { - "type": "Identifier", - "start": 11984, - "end": 11997, - "loc": { - "start": { - "line": 316, - "column": 27 - }, - "end": { - "line": 316, - "column": 40 - }, - "identifierName": "_nextUniqueID" - }, - "name": "_nextUniqueID" - }, - "computed": false - }, - "arguments": [] - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 12012, - "end": 12170, - "loc": { - "start": { - "line": 319, - "column": 4 - }, - "end": { - "line": 319, - "column": 162 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 12018, - "end": 12169, - "loc": { - "start": { - "line": 319, - "column": 10 - }, - "end": { - "line": 319, - "column": 161 - } - }, - "id": { - "type": "Identifier", - "start": 12018, - "end": 12037, - "loc": { - "start": { - "line": 319, - "column": 10 - }, - "end": { - "line": 319, - "column": 29 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - "init": { - "type": "AwaitExpression", - "start": 12040, - "end": 12169, - "loc": { - "start": { - "line": 319, - "column": 32 - }, - "end": { - "line": 319, - "column": 161 - } - }, - "argument": { - "type": "CallExpression", - "start": 12046, - "end": 12169, - "loc": { - "start": { - "line": 319, - "column": 38 - }, - "end": { - "line": 319, - "column": 161 - } - }, - "callee": { - "type": "MemberExpression", - "start": 12046, - "end": 12084, - "loc": { - "start": { - "line": 319, - "column": 38 - }, - "end": { - "line": 319, - "column": 76 - } - }, - "object": { - "type": "Identifier", - "start": 12046, - "end": 12055, - "loc": { - "start": { - "line": 319, - "column": 38 - }, - "end": { - "line": 319, - "column": 47 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 12056, - "end": 12084, - "loc": { - "start": { - "line": 319, - "column": 48 - }, - "end": { - "line": 319, - "column": 76 - }, - "identifierName": "writeCharacteristicForDevice" - }, - "name": "writeCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 12085, - "end": 12101, - "loc": { - "start": { - "line": 319, - "column": 77 - }, - "end": { - "line": 319, - "column": 93 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 12103, - "end": 12114, - "loc": { - "start": { - "line": 319, - "column": 95 - }, - "end": { - "line": 319, - "column": 106 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 12116, - "end": 12134, - "loc": { - "start": { - "line": 319, - "column": 108 - }, - "end": { - "line": 319, - "column": 126 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 12136, - "end": 12147, - "loc": { - "start": { - "line": 319, - "column": 128 - }, - "end": { - "line": 319, - "column": 139 - }, - "identifierName": "base64Value" - }, - "name": "base64Value" - }, - { - "type": "BooleanLiteral", - "start": 12149, - "end": 12153, - "loc": { - "start": { - "line": 319, - "column": 141 - }, - "end": { - "line": 319, - "column": 145 - } - }, - "value": true - }, - { - "type": "Identifier", - "start": 12155, - "end": 12168, - "loc": { - "start": { - "line": 319, - "column": 147 - }, - "end": { - "line": 319, - "column": 160 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 12175, - "end": 12228, - "loc": { - "start": { - "line": 320, - "column": 4 - }, - "end": { - "line": 320, - "column": 57 - } - }, - "argument": { - "type": "NewExpression", - "start": 12182, - "end": 12227, - "loc": { - "start": { - "line": 320, - "column": 11 - }, - "end": { - "line": 320, - "column": 56 - } - }, - "callee": { - "type": "Identifier", - "start": 12186, - "end": 12200, - "loc": { - "start": { - "line": 320, - "column": 15 - }, - "end": { - "line": 320, - "column": 29 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - }, - "arguments": [ - { - "type": "Identifier", - "start": 12201, - "end": 12220, - "loc": { - "start": { - "line": 320, - "column": 30 - }, - "end": { - "line": 320, - "column": 49 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - { - "type": "ThisExpression", - "start": 12222, - "end": 12226, - "loc": { - "start": { - "line": 320, - "column": 51 - }, - "end": { - "line": 320, - "column": 55 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value with response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 11124, - "end": 11800, - "loc": { - "start": { - "line": 301, - "column": 2 - }, - "end": { - "line": 313, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value without response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 12236, - "end": 12915, - "loc": { - "start": { - "line": 323, - "column": 2 - }, - "end": { - "line": 335, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 12918, - "end": 13351, - "loc": { - "start": { - "line": 336, - "column": 2 - }, - "end": { - "line": 343, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 12924, - "end": 12967, - "loc": { - "start": { - "line": 336, - "column": 8 - }, - "end": { - "line": 336, - "column": 51 - }, - "identifierName": "writeCharacteristicWithoutResponseForDevice" - }, - "name": "writeCharacteristicWithoutResponseForDevice" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 12968, - "end": 12984, - "loc": { - "start": { - "line": 336, - "column": 52 - }, - "end": { - "line": 336, - "column": 68 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 12986, - "end": 12997, - "loc": { - "start": { - "line": 336, - "column": 70 - }, - "end": { - "line": 336, - "column": 81 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 12999, - "end": 13017, - "loc": { - "start": { - "line": 336, - "column": 83 - }, - "end": { - "line": 336, - "column": 101 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 13019, - "end": 13030, - "loc": { - "start": { - "line": 336, - "column": 103 - }, - "end": { - "line": 336, - "column": 114 - }, - "identifierName": "base64Value" - }, - "name": "base64Value" - }, - { - "type": "Identifier", - "start": 13032, - "end": 13045, - "loc": { - "start": { - "line": 336, - "column": 116 - }, - "end": { - "line": 336, - "column": 129 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 13047, - "end": 13351, - "loc": { - "start": { - "line": 336, - "column": 131 - }, - "end": { - "line": 343, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 13053, - "end": 13124, - "loc": { - "start": { - "line": 337, - "column": 4 - }, - "end": { - "line": 339, - "column": 5 - } - }, - "test": { - "type": "UnaryExpression", - "start": 13057, - "end": 13071, - "loc": { - "start": { - "line": 337, - "column": 8 - }, - "end": { - "line": 337, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 13058, - "end": 13071, - "loc": { - "start": { - "line": 337, - "column": 9 - }, - "end": { - "line": 337, - "column": 22 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 13073, - "end": 13124, - "loc": { - "start": { - "line": 337, - "column": 24 - }, - "end": { - "line": 339, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 13081, - "end": 13118, - "loc": { - "start": { - "line": 338, - "column": 6 - }, - "end": { - "line": 338, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 13081, - "end": 13117, - "loc": { - "start": { - "line": 338, - "column": 6 - }, - "end": { - "line": 338, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 13081, - "end": 13094, - "loc": { - "start": { - "line": 338, - "column": 6 - }, - "end": { - "line": 338, - "column": 19 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "right": { - "type": "CallExpression", - "start": 13097, - "end": 13117, - "loc": { - "start": { - "line": 338, - "column": 22 - }, - "end": { - "line": 338, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 13097, - "end": 13115, - "loc": { - "start": { - "line": 338, - "column": 22 - }, - "end": { - "line": 338, - "column": 40 - } - }, - "object": { - "type": "ThisExpression", - "start": 13097, - "end": 13101, - "loc": { - "start": { - "line": 338, - "column": 22 - }, - "end": { - "line": 338, - "column": 26 - } - } - }, - "property": { - "type": "Identifier", - "start": 13102, - "end": 13115, - "loc": { - "start": { - "line": 338, - "column": 27 - }, - "end": { - "line": 338, - "column": 40 - }, - "identifierName": "_nextUniqueID" - }, - "name": "_nextUniqueID" - }, - "computed": false - }, - "arguments": [] - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 13130, - "end": 13289, - "loc": { - "start": { - "line": 341, - "column": 4 - }, - "end": { - "line": 341, - "column": 163 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 13136, - "end": 13288, - "loc": { - "start": { - "line": 341, - "column": 10 - }, - "end": { - "line": 341, - "column": 162 - } - }, - "id": { - "type": "Identifier", - "start": 13136, - "end": 13155, - "loc": { - "start": { - "line": 341, - "column": 10 - }, - "end": { - "line": 341, - "column": 29 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - "init": { - "type": "AwaitExpression", - "start": 13158, - "end": 13288, - "loc": { - "start": { - "line": 341, - "column": 32 - }, - "end": { - "line": 341, - "column": 162 - } - }, - "argument": { - "type": "CallExpression", - "start": 13164, - "end": 13288, - "loc": { - "start": { - "line": 341, - "column": 38 - }, - "end": { - "line": 341, - "column": 162 - } - }, - "callee": { - "type": "MemberExpression", - "start": 13164, - "end": 13202, - "loc": { - "start": { - "line": 341, - "column": 38 - }, - "end": { - "line": 341, - "column": 76 - } - }, - "object": { - "type": "Identifier", - "start": 13164, - "end": 13173, - "loc": { - "start": { - "line": 341, - "column": 38 - }, - "end": { - "line": 341, - "column": 47 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 13174, - "end": 13202, - "loc": { - "start": { - "line": 341, - "column": 48 - }, - "end": { - "line": 341, - "column": 76 - }, - "identifierName": "writeCharacteristicForDevice" - }, - "name": "writeCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 13203, - "end": 13219, - "loc": { - "start": { - "line": 341, - "column": 77 - }, - "end": { - "line": 341, - "column": 93 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 13221, - "end": 13232, - "loc": { - "start": { - "line": 341, - "column": 95 - }, - "end": { - "line": 341, - "column": 106 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 13234, - "end": 13252, - "loc": { - "start": { - "line": 341, - "column": 108 - }, - "end": { - "line": 341, - "column": 126 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 13254, - "end": 13265, - "loc": { - "start": { - "line": 341, - "column": 128 - }, - "end": { - "line": 341, - "column": 139 - }, - "identifierName": "base64Value" - }, - "name": "base64Value" - }, - { - "type": "BooleanLiteral", - "start": 13267, - "end": 13272, - "loc": { - "start": { - "line": 341, - "column": 141 - }, - "end": { - "line": 341, - "column": 146 - } - }, - "value": false - }, - { - "type": "Identifier", - "start": 13274, - "end": 13287, - "loc": { - "start": { - "line": 341, - "column": 148 - }, - "end": { - "line": 341, - "column": 161 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - } - ], - "kind": "const" - }, - { - "type": "ReturnStatement", - "start": 13294, - "end": 13347, - "loc": { - "start": { - "line": 342, - "column": 4 - }, - "end": { - "line": 342, - "column": 57 - } - }, - "argument": { - "type": "NewExpression", - "start": 13301, - "end": 13346, - "loc": { - "start": { - "line": 342, - "column": 11 - }, - "end": { - "line": 342, - "column": 56 - } - }, - "callee": { - "type": "Identifier", - "start": 13305, - "end": 13319, - "loc": { - "start": { - "line": 342, - "column": 15 - }, - "end": { - "line": 342, - "column": 29 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - }, - "arguments": [ - { - "type": "Identifier", - "start": 13320, - "end": 13339, - "loc": { - "start": { - "line": 342, - "column": 30 - }, - "end": { - "line": 342, - "column": 49 - }, - "identifierName": "characteristicProps" - }, - "name": "characteristicProps" - }, - { - "type": "ThisExpression", - "start": 13341, - "end": 13345, - "loc": { - "start": { - "line": 342, - "column": 51 - }, - "end": { - "line": 342, - "column": 55 - } - } - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value without response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 12236, - "end": 12915, - "loc": { - "start": { - "line": 323, - "column": 2 - }, - "end": { - "line": 335, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Monitor value changes of a characteristic. If notifications are enabled they will be used\n * in favour of indications.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 13355, - "end": 14127, - "loc": { - "start": { - "line": 345, - "column": 2 - }, - "end": { - "line": 358, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 14130, - "end": 15037, - "loc": { - "start": { - "line": 359, - "column": 2 - }, - "end": { - "line": 386, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 14130, - "end": 14160, - "loc": { - "start": { - "line": 359, - "column": 2 - }, - "end": { - "line": 359, - "column": 32 - }, - "identifierName": "monitorCharacteristicForDevice" - }, - "name": "monitorCharacteristicForDevice", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 14161, - "end": 14177, - "loc": { - "start": { - "line": 359, - "column": 33 - }, - "end": { - "line": 359, - "column": 49 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 14179, - "end": 14190, - "loc": { - "start": { - "line": 359, - "column": 51 - }, - "end": { - "line": 359, - "column": 62 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 14192, - "end": 14210, - "loc": { - "start": { - "line": 359, - "column": 64 - }, - "end": { - "line": 359, - "column": 82 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 14212, - "end": 14220, - "loc": { - "start": { - "line": 359, - "column": 84 - }, - "end": { - "line": 359, - "column": 92 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 14222, - "end": 14235, - "loc": { - "start": { - "line": 359, - "column": 94 - }, - "end": { - "line": 359, - "column": 107 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 14237, - "end": 15037, - "loc": { - "start": { - "line": 359, - "column": 109 - }, - "end": { - "line": 386, - "column": 3 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 14243, - "end": 14314, - "loc": { - "start": { - "line": 360, - "column": 4 - }, - "end": { - "line": 362, - "column": 5 - } - }, - "test": { - "type": "UnaryExpression", - "start": 14247, - "end": 14261, - "loc": { - "start": { - "line": 360, - "column": 8 - }, - "end": { - "line": 360, - "column": 22 - } - }, - "operator": "!", - "prefix": true, - "argument": { - "type": "Identifier", - "start": 14248, - "end": 14261, - "loc": { - "start": { - "line": 360, - "column": 9 - }, - "end": { - "line": 360, - "column": 22 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "extra": { - "parenthesizedArgument": false - } - }, - "consequent": { - "type": "BlockStatement", - "start": 14263, - "end": 14314, - "loc": { - "start": { - "line": 360, - "column": 24 - }, - "end": { - "line": 362, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 14271, - "end": 14308, - "loc": { - "start": { - "line": 361, - "column": 6 - }, - "end": { - "line": 361, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 14271, - "end": 14307, - "loc": { - "start": { - "line": 361, - "column": 6 - }, - "end": { - "line": 361, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "Identifier", - "start": 14271, - "end": 14284, - "loc": { - "start": { - "line": 361, - "column": 6 - }, - "end": { - "line": 361, - "column": 19 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "right": { - "type": "CallExpression", - "start": 14287, - "end": 14307, - "loc": { - "start": { - "line": 361, - "column": 22 - }, - "end": { - "line": 361, - "column": 42 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14287, - "end": 14305, - "loc": { - "start": { - "line": 361, - "column": 22 - }, - "end": { - "line": 361, - "column": 40 - } - }, - "object": { - "type": "ThisExpression", - "start": 14287, - "end": 14291, - "loc": { - "start": { - "line": 361, - "column": 22 - }, - "end": { - "line": 361, - "column": 26 - } - } - }, - "property": { - "type": "Identifier", - "start": 14292, - "end": 14305, - "loc": { - "start": { - "line": 361, - "column": 27 - }, - "end": { - "line": 361, - "column": 40 - }, - "identifierName": "_nextUniqueID" - }, - "name": "_nextUniqueID" - }, - "computed": false - }, - "arguments": [] - } - } - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "VariableDeclaration", - "start": 14320, - "end": 14591, - "loc": { - "start": { - "line": 364, - "column": 4 - }, - "end": { - "line": 371, - "column": 6 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 14326, - "end": 14590, - "loc": { - "start": { - "line": 364, - "column": 10 - }, - "end": { - "line": 371, - "column": 5 - } - }, - "id": { - "type": "Identifier", - "start": 14326, - "end": 14341, - "loc": { - "start": { - "line": 364, - "column": 10 - }, - "end": { - "line": 364, - "column": 25 - }, - "identifierName": "monitorListener" - }, - "name": "monitorListener" - }, - "init": { - "type": "ArrowFunctionExpression", - "start": 14344, - "end": 14590, - "loc": { - "start": { - "line": 364, - "column": 28 - }, - "end": { - "line": 371, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "ArrayPattern", - "start": 14345, - "end": 14386, - "loc": { - "start": { - "line": 364, - "column": 29 - }, - "end": { - "line": 364, - "column": 70 - } - }, - "elements": [ - { - "type": "Identifier", - "start": 14346, - "end": 14351, - "loc": { - "start": { - "line": 364, - "column": 30 - }, - "end": { - "line": 364, - "column": 35 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "Identifier", - "start": 14353, - "end": 14367, - "loc": { - "start": { - "line": 364, - "column": 37 - }, - "end": { - "line": 364, - "column": 51 - }, - "identifierName": "characteristic" - }, - "name": "characteristic" - }, - { - "type": "Identifier", - "start": 14369, - "end": 14385, - "loc": { - "start": { - "line": 364, - "column": 53 - }, - "end": { - "line": 364, - "column": 69 - }, - "identifierName": "msgTransactionId" - }, - "name": "msgTransactionId" - } - ] - } - ], - "body": { - "type": "BlockStatement", - "start": 14391, - "end": 14590, - "loc": { - "start": { - "line": 364, - "column": 75 - }, - "end": { - "line": 371, - "column": 5 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 14399, - "end": 14446, - "loc": { - "start": { - "line": 365, - "column": 6 - }, - "end": { - "line": 365, - "column": 53 - } - }, - "test": { - "type": "BinaryExpression", - "start": 14403, - "end": 14437, - "loc": { - "start": { - "line": 365, - "column": 10 - }, - "end": { - "line": 365, - "column": 44 - } - }, - "left": { - "type": "Identifier", - "start": 14403, - "end": 14416, - "loc": { - "start": { - "line": 365, - "column": 10 - }, - "end": { - "line": 365, - "column": 23 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - }, - "operator": "!==", - "right": { - "type": "Identifier", - "start": 14421, - "end": 14437, - "loc": { - "start": { - "line": 365, - "column": 28 - }, - "end": { - "line": 365, - "column": 44 - }, - "identifierName": "msgTransactionId" - }, - "name": "msgTransactionId" - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 14439, - "end": 14446, - "loc": { - "start": { - "line": 365, - "column": 46 - }, - "end": { - "line": 365, - "column": 53 - } - }, - "argument": null - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 14453, - "end": 14520, - "loc": { - "start": { - "line": 366, - "column": 6 - }, - "end": { - "line": 369, - "column": 7 - } - }, - "test": { - "type": "Identifier", - "start": 14457, - "end": 14462, - "loc": { - "start": { - "line": 366, - "column": 10 - }, - "end": { - "line": 366, - "column": 15 - }, - "identifierName": "error" - }, - "name": "error" - }, - "consequent": { - "type": "BlockStatement", - "start": 14464, - "end": 14520, - "loc": { - "start": { - "line": 366, - "column": 17 - }, - "end": { - "line": 369, - "column": 7 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 14474, - "end": 14496, - "loc": { - "start": { - "line": 367, - "column": 8 - }, - "end": { - "line": 367, - "column": 30 - } - }, - "expression": { - "type": "CallExpression", - "start": 14474, - "end": 14495, - "loc": { - "start": { - "line": 367, - "column": 8 - }, - "end": { - "line": 367, - "column": 29 - } - }, - "callee": { - "type": "Identifier", - "start": 14474, - "end": 14482, - "loc": { - "start": { - "line": 367, - "column": 8 - }, - "end": { - "line": 367, - "column": 16 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "Identifier", - "start": 14483, - "end": 14488, - "loc": { - "start": { - "line": 367, - "column": 17 - }, - "end": { - "line": 367, - "column": 22 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "NullLiteral", - "start": 14490, - "end": 14494, - "loc": { - "start": { - "line": 367, - "column": 24 - }, - "end": { - "line": 367, - "column": 28 - } - } - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 14505, - "end": 14512, - "loc": { - "start": { - "line": 368, - "column": 8 - }, - "end": { - "line": 368, - "column": 15 - } - }, - "argument": null - } - ], - "directives": [] - }, - "alternate": null - }, - { - "type": "ExpressionStatement", - "start": 14527, - "end": 14584, - "loc": { - "start": { - "line": 370, - "column": 6 - }, - "end": { - "line": 370, - "column": 63 - } - }, - "expression": { - "type": "CallExpression", - "start": 14527, - "end": 14583, - "loc": { - "start": { - "line": 370, - "column": 6 - }, - "end": { - "line": 370, - "column": 62 - } - }, - "callee": { - "type": "Identifier", - "start": 14527, - "end": 14535, - "loc": { - "start": { - "line": 370, - "column": 6 - }, - "end": { - "line": 370, - "column": 14 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "NullLiteral", - "start": 14536, - "end": 14540, - "loc": { - "start": { - "line": 370, - "column": 15 - }, - "end": { - "line": 370, - "column": 19 - } - } - }, - { - "type": "NewExpression", - "start": 14542, - "end": 14582, - "loc": { - "start": { - "line": 370, - "column": 21 - }, - "end": { - "line": 370, - "column": 61 - } - }, - "callee": { - "type": "Identifier", - "start": 14546, - "end": 14560, - "loc": { - "start": { - "line": 370, - "column": 25 - }, - "end": { - "line": 370, - "column": 39 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - }, - "arguments": [ - { - "type": "Identifier", - "start": 14561, - "end": 14575, - "loc": { - "start": { - "line": 370, - "column": 40 - }, - "end": { - "line": 370, - "column": 54 - }, - "identifierName": "characteristic" - }, - "name": "characteristic" - }, - { - "type": "ThisExpression", - "start": 14577, - "end": 14581, - "loc": { - "start": { - "line": 370, - "column": 56 - }, - "end": { - "line": 370, - "column": 60 - } - } - } - ] - } - ] - } - } - ], - "directives": [] - } - } - } - ], - "kind": "const" - }, - { - "type": "VariableDeclaration", - "start": 14597, - "end": 14687, - "loc": { - "start": { - "line": 373, - "column": 4 - }, - "end": { - "line": 373, - "column": 94 - } - }, - "declarations": [ - { - "type": "VariableDeclarator", - "start": 14603, - "end": 14686, - "loc": { - "start": { - "line": 373, - "column": 10 - }, - "end": { - "line": 373, - "column": 93 - } - }, - "id": { - "type": "Identifier", - "start": 14603, - "end": 14615, - "loc": { - "start": { - "line": 373, - "column": 10 - }, - "end": { - "line": 373, - "column": 22 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "init": { - "type": "CallExpression", - "start": 14618, - "end": 14686, - "loc": { - "start": { - "line": 373, - "column": 25 - }, - "end": { - "line": 373, - "column": 93 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14618, - "end": 14648, - "loc": { - "start": { - "line": 373, - "column": 25 - }, - "end": { - "line": 373, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 14618, - "end": 14636, - "loc": { - "start": { - "line": 373, - "column": 25 - }, - "end": { - "line": 373, - "column": 43 - } - }, - "object": { - "type": "ThisExpression", - "start": 14618, - "end": 14622, - "loc": { - "start": { - "line": 373, - "column": 25 - }, - "end": { - "line": 373, - "column": 29 - } - } - }, - "property": { - "type": "Identifier", - "start": 14623, - "end": 14636, - "loc": { - "start": { - "line": 373, - "column": 30 - }, - "end": { - "line": 373, - "column": 43 - }, - "identifierName": "_eventEmitter" - }, - "name": "_eventEmitter" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 14637, - "end": 14648, - "loc": { - "start": { - "line": 373, - "column": 44 - }, - "end": { - "line": 373, - "column": 55 - }, - "identifierName": "addListener" - }, - "name": "addListener" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 14649, - "end": 14668, - "loc": { - "start": { - "line": 373, - "column": 56 - }, - "end": { - "line": 373, - "column": 75 - } - }, - "object": { - "type": "Identifier", - "start": 14649, - "end": 14658, - "loc": { - "start": { - "line": 373, - "column": 56 - }, - "end": { - "line": 373, - "column": 65 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 14659, - "end": 14668, - "loc": { - "start": { - "line": 373, - "column": 66 - }, - "end": { - "line": 373, - "column": 75 - }, - "identifierName": "ReadEvent" - }, - "name": "ReadEvent" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 14670, - "end": 14685, - "loc": { - "start": { - "line": 373, - "column": 77 - }, - "end": { - "line": 373, - "column": 92 - }, - "identifierName": "monitorListener" - }, - "name": "monitorListener" - } - ] - } - } - ], - "kind": "const" - }, - { - "type": "ExpressionStatement", - "start": 14692, - "end": 14930, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 379, - "column": 7 - } - }, - "expression": { - "type": "CallExpression", - "start": 14692, - "end": 14929, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 379, - "column": 6 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14692, - "end": 14803, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 374, - "column": 115 - } - }, - "object": { - "type": "CallExpression", - "start": 14692, - "end": 14798, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 374, - "column": 110 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14692, - "end": 14732, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 374, - "column": 44 - } - }, - "object": { - "type": "Identifier", - "start": 14692, - "end": 14701, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 374, - "column": 13 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 14702, - "end": 14732, - "loc": { - "start": { - "line": 374, - "column": 14 - }, - "end": { - "line": 374, - "column": 44 - }, - "identifierName": "monitorCharacteristicForDevice" - }, - "name": "monitorCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 14733, - "end": 14749, - "loc": { - "start": { - "line": 374, - "column": 45 - }, - "end": { - "line": 374, - "column": 61 - }, - "identifierName": "deviceIdentifier" - }, - "name": "deviceIdentifier" - }, - { - "type": "Identifier", - "start": 14751, - "end": 14762, - "loc": { - "start": { - "line": 374, - "column": 63 - }, - "end": { - "line": 374, - "column": 74 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 14764, - "end": 14782, - "loc": { - "start": { - "line": 374, - "column": 76 - }, - "end": { - "line": 374, - "column": 94 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 14784, - "end": 14797, - "loc": { - "start": { - "line": 374, - "column": 96 - }, - "end": { - "line": 374, - "column": 109 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - }, - "property": { - "type": "Identifier", - "start": 14799, - "end": 14803, - "loc": { - "start": { - "line": 374, - "column": 111 - }, - "end": { - "line": 374, - "column": 115 - }, - "identifierName": "then" - }, - "name": "then" - }, - "computed": false - }, - "arguments": [ - { - "type": "ArrowFunctionExpression", - "start": 14804, - "end": 14852, - "loc": { - "start": { - "line": 374, - "column": 116 - }, - "end": { - "line": 376, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 14804, - "end": 14812, - "loc": { - "start": { - "line": 374, - "column": 116 - }, - "end": { - "line": 374, - "column": 124 - }, - "identifierName": "finished" - }, - "name": "finished" - } - ], - "body": { - "type": "BlockStatement", - "start": 14816, - "end": 14852, - "loc": { - "start": { - "line": 374, - "column": 128 - }, - "end": { - "line": 376, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 14824, - "end": 14846, - "loc": { - "start": { - "line": 375, - "column": 6 - }, - "end": { - "line": 375, - "column": 28 - } - }, - "expression": { - "type": "CallExpression", - "start": 14824, - "end": 14845, - "loc": { - "start": { - "line": 375, - "column": 6 - }, - "end": { - "line": 375, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14824, - "end": 14843, - "loc": { - "start": { - "line": 375, - "column": 6 - }, - "end": { - "line": 375, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 14824, - "end": 14836, - "loc": { - "start": { - "line": 375, - "column": 6 - }, - "end": { - "line": 375, - "column": 18 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "property": { - "type": "Identifier", - "start": 14837, - "end": 14843, - "loc": { - "start": { - "line": 375, - "column": 19 - }, - "end": { - "line": 375, - "column": 25 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - } - }, - { - "type": "ArrowFunctionExpression", - "start": 14854, - "end": 14928, - "loc": { - "start": { - "line": 376, - "column": 7 - }, - "end": { - "line": 379, - "column": 5 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 14854, - "end": 14859, - "loc": { - "start": { - "line": 376, - "column": 7 - }, - "end": { - "line": 376, - "column": 12 - }, - "identifierName": "error" - }, - "name": "error" - } - ], - "body": { - "type": "BlockStatement", - "start": 14863, - "end": 14928, - "loc": { - "start": { - "line": 376, - "column": 16 - }, - "end": { - "line": 379, - "column": 5 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 14871, - "end": 14893, - "loc": { - "start": { - "line": 377, - "column": 6 - }, - "end": { - "line": 377, - "column": 28 - } - }, - "expression": { - "type": "CallExpression", - "start": 14871, - "end": 14892, - "loc": { - "start": { - "line": 377, - "column": 6 - }, - "end": { - "line": 377, - "column": 27 - } - }, - "callee": { - "type": "Identifier", - "start": 14871, - "end": 14879, - "loc": { - "start": { - "line": 377, - "column": 6 - }, - "end": { - "line": 377, - "column": 14 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - "arguments": [ - { - "type": "Identifier", - "start": 14880, - "end": 14885, - "loc": { - "start": { - "line": 377, - "column": 15 - }, - "end": { - "line": 377, - "column": 20 - }, - "identifierName": "error" - }, - "name": "error" - }, - { - "type": "NullLiteral", - "start": 14887, - "end": 14891, - "loc": { - "start": { - "line": 377, - "column": 22 - }, - "end": { - "line": 377, - "column": 26 - } - } - } - ] - } - }, - { - "type": "ExpressionStatement", - "start": 14900, - "end": 14922, - "loc": { - "start": { - "line": 378, - "column": 6 - }, - "end": { - "line": 378, - "column": 28 - } - }, - "expression": { - "type": "CallExpression", - "start": 14900, - "end": 14921, - "loc": { - "start": { - "line": 378, - "column": 6 - }, - "end": { - "line": 378, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14900, - "end": 14919, - "loc": { - "start": { - "line": 378, - "column": 6 - }, - "end": { - "line": 378, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 14900, - "end": 14912, - "loc": { - "start": { - "line": 378, - "column": 6 - }, - "end": { - "line": 378, - "column": 18 - }, - "identifierName": "subscription" - }, - "name": "subscription" - }, - "property": { - "type": "Identifier", - "start": 14913, - "end": 14919, - "loc": { - "start": { - "line": 378, - "column": 19 - }, - "end": { - "line": 378, - "column": 25 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - } - } - ] - } - }, - { - "type": "ReturnStatement", - "start": 14936, - "end": 15033, - "loc": { - "start": { - "line": 381, - "column": 4 - }, - "end": { - "line": 385, - "column": 6 - } - }, - "argument": { - "type": "ObjectExpression", - "start": 14943, - "end": 15032, - "loc": { - "start": { - "line": 381, - "column": 11 - }, - "end": { - "line": 385, - "column": 5 - } - }, - "properties": [ - { - "type": "ObjectProperty", - "start": 14951, - "end": 15026, - "loc": { - "start": { - "line": 382, - "column": 6 - }, - "end": { - "line": 384, - "column": 7 - } - }, - "method": false, - "shorthand": false, - "computed": false, - "key": { - "type": "Identifier", - "start": 14951, - "end": 14957, - "loc": { - "start": { - "line": 382, - "column": 6 - }, - "end": { - "line": 382, - "column": 12 - }, - "identifierName": "remove" - }, - "name": "remove" - }, - "value": { - "type": "ArrowFunctionExpression", - "start": 14959, - "end": 15026, - "loc": { - "start": { - "line": 382, - "column": 14 - }, - "end": { - "line": 384, - "column": 7 - } - }, - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [], - "body": { - "type": "BlockStatement", - "start": 14965, - "end": 15026, - "loc": { - "start": { - "line": 382, - "column": 20 - }, - "end": { - "line": 384, - "column": 7 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 14975, - "end": 15018, - "loc": { - "start": { - "line": 383, - "column": 8 - }, - "end": { - "line": 383, - "column": 51 - } - }, - "expression": { - "type": "CallExpression", - "start": 14975, - "end": 15017, - "loc": { - "start": { - "line": 383, - "column": 8 - }, - "end": { - "line": 383, - "column": 50 - } - }, - "callee": { - "type": "MemberExpression", - "start": 14975, - "end": 15002, - "loc": { - "start": { - "line": 383, - "column": 8 - }, - "end": { - "line": 383, - "column": 35 - } - }, - "object": { - "type": "Identifier", - "start": 14975, - "end": 14984, - "loc": { - "start": { - "line": 383, - "column": 8 - }, - "end": { - "line": 383, - "column": 17 - }, - "identifierName": "BleModule" - }, - "name": "BleModule" - }, - "property": { - "type": "Identifier", - "start": 14985, - "end": 15002, - "loc": { - "start": { - "line": 383, - "column": 18 - }, - "end": { - "line": 383, - "column": 35 - }, - "identifierName": "cancelTransaction" - }, - "name": "cancelTransaction" - }, - "computed": false - }, - "arguments": [ - { - "type": "Identifier", - "start": 15003, - "end": 15016, - "loc": { - "start": { - "line": 383, - "column": 36 - }, - "end": { - "line": 383, - "column": 49 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [] - } - } - } - ] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Monitor value changes of a characteristic. If notifications are enabled they will be used\n * in favour of indications.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 13355, - "end": 14127, - "loc": { - "start": { - "line": 345, - "column": 2 - }, - "end": { - "line": 358, - "column": 5 - } - } - } - ] - } - ] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \n * on its instance when user wants to deallocate all resources.\n * \n * @example\n * const manager = new BleManager();\n * // ... work with BLE manager ...\n * manager.destroy(); \n * \n * @export\n * @class BleManager\n ", - "start": 280, - "end": 743, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 24, - "column": 3 - } - } - } - ], - "trailingComments": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \n * on its instance when user wants to deallocate all resources.\n * \n * @example\n * const manager = new BleManager();\n * // ... work with BLE manager ...\n * manager.destroy(); \n * \n * @export\n * @class BleManager\n ", - "start": 280, - "end": 743, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 24, - "column": 3 - } - } - } - ] - } - ], - "directives": [ - { - "type": "Directive", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "value": { - "type": "DirectiveLiteral", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "value": "use strict", - "extra": { - "raw": "'use strict'", - "rawValue": "use strict" - } - } - } - ] - }, - "comments": [ - { - "type": "CommentBlock", - "value": "*\n * \n * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \n * on its instance when user wants to deallocate all resources.\n * \n * @example\n * const manager = new BleManager();\n * // ... work with BLE manager ...\n * manager.destroy(); \n * \n * @export\n * @class BleManager\n ", - "start": 280, - "end": 743, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 24, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.\n * \n * @memberOf BleManager\n ", - "start": 918, - "end": 1076, - "loc": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 37, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Common --------------------------------------------------------------------------------------------------------", - "start": 1217, - "end": 1337, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Cancels pending transaction.\n * \n * Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API \n * entry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a \n * promise or a callback which registers errors, `\"Cancelled\"` error will be emitted in that case.\n * \n * Cancelling transaction which doesn't exist is ignored.\n * \n * @param {string} transactionId Id of pending transactions.\n * \n * @memberOf BleManager\n ", - "start": 1342, - "end": 1895, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 62, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Monitoring state ----------------------------------------------------------------------------------------------", - "start": 1988, - "end": 2108, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 67, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Current state of a manager.\n * \n * Available states:\n * - `Unknown` - the current state of the manager is unknown; an update is imminent.\n * - `Resetting` - the connection with the system service was momentarily lost; an update is imminent.\n * - `Unsupported` - the platform does not support Bluetooth low energy.\n * - `Unauthorized` - the app is not authorized to use Bluetooth low energy.\n * - `PoweredOff` - Bluetooth is currently powered off.\n * - `PoweredOn` - Bluetooth is currently powered on and available to use.\n * \n * @returns {Promise} Promise which emits current state of BleManager.\n * \n * @memberOf BleManager\n ", - "start": 2113, - "end": 2783, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * \n * Notifies about state changes of a manager.\n * \n * @param {function(newState: State)} listener Callback which emits state changes of BLE Manager. \n * Look at {@link state} for possible values.\n * @param {boolean} [emitCurrentState=false] If true, current state will be emitted as well. Defaults to false.\n * \n * @returns {Subscription} Subscription on which remove() function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 2833, - "end": 3292, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 100, - "column": 4 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Scanning ------------------------------------------------------------------------------------------------------", - "start": 3781, - "end": 3901, - "loc": { - "start": { - "line": 123, - "column": 2 - }, - "end": { - "line": 123, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Starts device scanning. \n * \n * When previous scan is in progress it will be stopped before executing this command.\n * \n * @param {?string[]} UUIDs - Array of strings containing UUIDs of services which are registered in scanned devices. \n * If null is passed all available devices will be scanned.\n * @param {?ScanOptions} options - Optional configuration for scanning operation. Scan option object contains two\n * optional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more\n * frequently, `autoConnect` for Android - allows to connect to devices which are not in range.\n * @param {function(error: ?Error, scannedDevice: ?Device)} listener - Function which will be called for every scanned \n * {@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set \n * to non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument \n * is a scanned {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 3906, - "end": 4984, - "loc": { - "start": { - "line": 126, - "column": 2 - }, - "end": { - "line": 142, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * \n * Stops device scan if in progress.\n * \n * @memberOf BleManager\n ", - "start": 5333, - "end": 5419, - "loc": { - "start": { - "line": 152, - "column": 2 - }, - "end": { - "line": 157, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Connection management -----------------------------------------------------------------------------------------", - "start": 5611, - "end": 5731, - "loc": { - "start": { - "line": 166, - "column": 2 - }, - "end": { - "line": 166, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Connects to {@link Device} with provided ID.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf BleManager\n ", - "start": 5735, - "end": 6097, - "loc": { - "start": { - "line": 168, - "column": 2 - }, - "end": { - "line": 176, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Disconnects from device if it's connected or cancels pending connection.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be closed. \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf BleManager\n ", - "start": 6284, - "end": 6582, - "loc": { - "start": { - "line": 182, - "column": 2 - }, - "end": { - "line": 189, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Monitors if device was disconnected due to any errors or connection problems.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be monitored.\n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 6765, - "end": 7244, - "loc": { - "start": { - "line": 195, - "column": 2 - }, - "end": { - "line": 204, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Check connection state of a device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf BleManager\n ", - "start": 7586, - "end": 7850, - "loc": { - "start": { - "line": 215, - "column": 2 - }, - "end": { - "line": 222, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Discovery -------------------------------------------------------------------------------------------------", - "start": 7962, - "end": 8078, - "loc": { - "start": { - "line": 227, - "column": 2 - }, - "end": { - "line": 227, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Discovers all services and characteristics for {@link Device}.\n * \n * @param {string} identifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf BleManager\n ", - "start": 8082, - "end": 8408, - "loc": { - "start": { - "line": 229, - "column": 2 - }, - "end": { - "line": 237, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Service and characteristic getters ------------------------------------------------------------------------", - "start": 8627, - "end": 8743, - "loc": { - "start": { - "line": 243, - "column": 2 - }, - "end": { - "line": 243, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered services for device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered for a \n * {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 8747, - "end": 9045, - "loc": { - "start": { - "line": 245, - "column": 2 - }, - "end": { - "line": 253, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered characteristics for given {@link Device} and {@link Service}.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf BleManager\n ", - "start": 9269, - "end": 9708, - "loc": { - "start": { - "line": 261, - "column": 2 - }, - "end": { - "line": 270, - "column": 5 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Characteristics operations --------------------------------------------------------------------------------", - "start": 10007, - "end": 10123, - "loc": { - "start": { - "line": 278, - "column": 2 - }, - "end": { - "line": 278, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Read characteristic value.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 10127, - "end": 10734, - "loc": { - "start": { - "line": 280, - "column": 2 - }, - "end": { - "line": 291, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value with response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 11124, - "end": 11800, - "loc": { - "start": { - "line": 301, - "column": 2 - }, - "end": { - "line": 313, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value without response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 12236, - "end": 12915, - "loc": { - "start": { - "line": 323, - "column": 2 - }, - "end": { - "line": 335, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Monitor value changes of a characteristic. If notifications are enabled they will be used\n * in favour of indications.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 13355, - "end": 14127, - "loc": { - "start": { - "line": 345, - "column": 2 - }, - "end": { - "line": 358, - "column": 5 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "use strict", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 15, - "end": 21, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 22, - "end": 23, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeModules", - "start": 24, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 9 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 37, - "end": 38, - "loc": { - "start": { - "line": 3, - "column": 22 - }, - "end": { - "line": 3, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeEventEmitter", - "start": 39, - "end": 57, - "loc": { - "start": { - "line": 3, - "column": 24 - }, - "end": { - "line": 3, - "column": 42 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 58, - "end": 59, - "loc": { - "start": { - "line": 3, - "column": 43 - }, - "end": { - "line": 3, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 60, - "end": 64, - "loc": { - "start": { - "line": 3, - "column": 45 - }, - "end": { - "line": 3, - "column": 49 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "react-native", - "start": 65, - "end": 79, - "loc": { - "start": { - "line": 3, - "column": 50 - }, - "end": { - "line": 3, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 79, - "end": 80, - "loc": { - "start": { - "line": 3, - "column": 64 - }, - "end": { - "line": 3, - "column": 65 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 81, - "end": 87, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 88, - "end": 94, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 95, - "end": 99, - "loc": { - "start": { - "line": 4, - "column": 14 - }, - "end": { - "line": 4, - "column": 18 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Device", - "start": 100, - "end": 110, - "loc": { - "start": { - "line": 4, - "column": 19 - }, - "end": { - "line": 4, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 110, - "end": 111, - "loc": { - "start": { - "line": 4, - "column": 29 - }, - "end": { - "line": 4, - "column": 30 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 112, - "end": 118, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Service", - "start": 119, - "end": 126, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 127, - "end": 131, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 19 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Service", - "start": 132, - "end": 143, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 143, - "end": 144, - "loc": { - "start": { - "line": 5, - "column": 31 - }, - "end": { - "line": 5, - "column": 32 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 145, - "end": 151, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 6, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 152, - "end": 166, - "loc": { - "start": { - "line": 6, - "column": 7 - }, - "end": { - "line": 6, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 167, - "end": 171, - "loc": { - "start": { - "line": 6, - "column": 22 - }, - "end": { - "line": 6, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Characteristic", - "start": 172, - "end": 190, - "loc": { - "start": { - "line": 6, - "column": 27 - }, - "end": { - "line": 6, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 190, - "end": 191, - "loc": { - "start": { - "line": 6, - "column": 45 - }, - "end": { - "line": 6, - "column": 46 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 192, - "end": 198, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 7, - "column": 6 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 199, - "end": 200, - "loc": { - "start": { - "line": 7, - "column": 7 - }, - "end": { - "line": 7, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "fullUUID", - "start": 201, - "end": 209, - "loc": { - "start": { - "line": 7, - "column": 9 - }, - "end": { - "line": 7, - "column": 17 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 210, - "end": 211, - "loc": { - "start": { - "line": 7, - "column": 18 - }, - "end": { - "line": 7, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 212, - "end": 216, - "loc": { - "start": { - "line": 7, - "column": 20 - }, - "end": { - "line": 7, - "column": 24 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Utils", - "start": 217, - "end": 226, - "loc": { - "start": { - "line": 7, - "column": 25 - }, - "end": { - "line": 7, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 226, - "end": 227, - "loc": { - "start": { - "line": 7, - "column": 34 - }, - "end": { - "line": 7, - "column": 35 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 229, - "end": 234, - "loc": { - "start": { - "line": 9, - "column": 0 - }, - "end": { - "line": 9, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 235, - "end": 244, - "loc": { - "start": { - "line": 9, - "column": 6 - }, - "end": { - "line": 9, - "column": 15 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 245, - "end": 246, - "loc": { - "start": { - "line": 9, - "column": 16 - }, - "end": { - "line": 9, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeModules", - "start": 247, - "end": 260, - "loc": { - "start": { - "line": 9, - "column": 18 - }, - "end": { - "line": 9, - "column": 31 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 260, - "end": 261, - "loc": { - "start": { - "line": 9, - "column": 31 - }, - "end": { - "line": 9, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleClientManager", - "start": 261, - "end": 277, - "loc": { - "start": { - "line": 9, - "column": 32 - }, - "end": { - "line": 9, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 277, - "end": 278, - "loc": { - "start": { - "line": 9, - "column": 48 - }, - "end": { - "line": 9, - "column": 49 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * \n * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \n * on its instance when user wants to deallocate all resources.\n * \n * @example\n * const manager = new BleManager();\n * // ... work with BLE manager ...\n * manager.destroy(); \n * \n * @export\n * @class BleManager\n ", - "start": 280, - "end": 743, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 24, - "column": 3 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 744, - "end": 750, - "loc": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 6 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 751, - "end": 758, - "loc": { - "start": { - "line": 25, - "column": 7 - }, - "end": { - "line": 25, - "column": 14 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 759, - "end": 764, - "loc": { - "start": { - "line": 25, - "column": 15 - }, - "end": { - "line": 25, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleManager", - "start": 765, - "end": 775, - "loc": { - "start": { - "line": 25, - "column": 21 - }, - "end": { - "line": 25, - "column": 31 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 776, - "end": 777, - "loc": { - "start": { - "line": 25, - "column": 32 - }, - "end": { - "line": 25, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "constructor", - "start": 781, - "end": 792, - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 792, - "end": 793, - "loc": { - "start": { - "line": 27, - "column": 13 - }, - "end": { - "line": 27, - "column": 14 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 793, - "end": 794, - "loc": { - "start": { - "line": 27, - "column": 14 - }, - "end": { - "line": 27, - "column": 15 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 795, - "end": 796, - "loc": { - "start": { - "line": 27, - "column": 16 - }, - "end": { - "line": 27, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 801, - "end": 810, - "loc": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 28, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 810, - "end": 811, - "loc": { - "start": { - "line": 28, - "column": 13 - }, - "end": { - "line": 28, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "createClient", - "start": 811, - "end": 823, - "loc": { - "start": { - "line": 28, - "column": 14 - }, - "end": { - "line": 28, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 823, - "end": 824, - "loc": { - "start": { - "line": 28, - "column": 26 - }, - "end": { - "line": 28, - "column": 27 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 824, - "end": 825, - "loc": { - "start": { - "line": 28, - "column": 27 - }, - "end": { - "line": 28, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 825, - "end": 826, - "loc": { - "start": { - "line": 28, - "column": 28 - }, - "end": { - "line": 28, - "column": 29 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 831, - "end": 835, - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 835, - "end": 836, - "loc": { - "start": { - "line": 29, - "column": 8 - }, - "end": { - "line": 29, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_eventEmitter", - "start": 836, - "end": 849, - "loc": { - "start": { - "line": 29, - "column": 9 - }, - "end": { - "line": 29, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 850, - "end": 851, - "loc": { - "start": { - "line": 29, - "column": 23 - }, - "end": { - "line": 29, - "column": 24 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 852, - "end": 855, - "loc": { - "start": { - "line": 29, - "column": 25 - }, - "end": { - "line": 29, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeEventEmitter", - "start": 856, - "end": 874, - "loc": { - "start": { - "line": 29, - "column": 29 - }, - "end": { - "line": 29, - "column": 47 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 874, - "end": 875, - "loc": { - "start": { - "line": 29, - "column": 47 - }, - "end": { - "line": 29, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 875, - "end": 884, - "loc": { - "start": { - "line": 29, - "column": 48 - }, - "end": { - "line": 29, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 884, - "end": 885, - "loc": { - "start": { - "line": 29, - "column": 57 - }, - "end": { - "line": 29, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 885, - "end": 886, - "loc": { - "start": { - "line": 29, - "column": 58 - }, - "end": { - "line": 29, - "column": 59 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 891, - "end": 895, - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 895, - "end": 896, - "loc": { - "start": { - "line": 30, - "column": 8 - }, - "end": { - "line": 30, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_uniqueId", - "start": 896, - "end": 905, - "loc": { - "start": { - "line": 30, - "column": 9 - }, - "end": { - "line": 30, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 906, - "end": 907, - "loc": { - "start": { - "line": 30, - "column": 19 - }, - "end": { - "line": 30, - "column": 20 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 0, - "start": 908, - "end": 909, - "loc": { - "start": { - "line": 30, - "column": 21 - }, - "end": { - "line": 30, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 909, - "end": 910, - "loc": { - "start": { - "line": 30, - "column": 22 - }, - "end": { - "line": 30, - "column": 23 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 913, - "end": 914, - "loc": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.\n * \n * @memberOf BleManager\n ", - "start": 918, - "end": 1076, - "loc": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 37, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "destroy", - "start": 1079, - "end": 1086, - "loc": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1086, - "end": 1087, - "loc": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1087, - "end": 1088, - "loc": { - "start": { - "line": 38, - "column": 10 - }, - "end": { - "line": 38, - "column": 11 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1089, - "end": 1090, - "loc": { - "start": { - "line": 38, - "column": 12 - }, - "end": { - "line": 38, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 1095, - "end": 1104, - "loc": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1104, - "end": 1105, - "loc": { - "start": { - "line": 39, - "column": 13 - }, - "end": { - "line": 39, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "destroyClient", - "start": 1105, - "end": 1118, - "loc": { - "start": { - "line": 39, - "column": 14 - }, - "end": { - "line": 39, - "column": 27 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1118, - "end": 1119, - "loc": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1119, - "end": 1120, - "loc": { - "start": { - "line": 39, - "column": 28 - }, - "end": { - "line": 39, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1120, - "end": 1121, - "loc": { - "start": { - "line": 39, - "column": 29 - }, - "end": { - "line": 39, - "column": 30 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1124, - "end": 1125, - "loc": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 3 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_nextUniqueID", - "start": 1129, - "end": 1142, - "loc": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1142, - "end": 1143, - "loc": { - "start": { - "line": 42, - "column": 15 - }, - "end": { - "line": 42, - "column": 16 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1143, - "end": 1144, - "loc": { - "start": { - "line": 42, - "column": 16 - }, - "end": { - "line": 42, - "column": 17 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1145, - "end": 1146, - "loc": { - "start": { - "line": 42, - "column": 18 - }, - "end": { - "line": 42, - "column": 19 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1151, - "end": 1155, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1155, - "end": 1156, - "loc": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_uniqueId", - "start": 1156, - "end": 1165, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 18 - } - } - }, - { - "type": { - "label": "_=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "+=", - "start": 1166, - "end": 1168, - "loc": { - "start": { - "line": 43, - "column": 19 - }, - "end": { - "line": 43, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 1, - "start": 1169, - "end": 1170, - "loc": { - "start": { - "line": 43, - "column": 22 - }, - "end": { - "line": 43, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1170, - "end": 1171, - "loc": { - "start": { - "line": 43, - "column": 23 - }, - "end": { - "line": 43, - "column": 24 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 1176, - "end": 1182, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 44, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1183, - "end": 1187, - "loc": { - "start": { - "line": 44, - "column": 11 - }, - "end": { - "line": 44, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1187, - "end": 1188, - "loc": { - "start": { - "line": 44, - "column": 15 - }, - "end": { - "line": 44, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_uniqueId", - "start": 1188, - "end": 1197, - "loc": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1197, - "end": 1198, - "loc": { - "start": { - "line": 44, - "column": 25 - }, - "end": { - "line": 44, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toString", - "start": 1198, - "end": 1206, - "loc": { - "start": { - "line": 44, - "column": 26 - }, - "end": { - "line": 44, - "column": 34 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1206, - "end": 1207, - "loc": { - "start": { - "line": 44, - "column": 34 - }, - "end": { - "line": 44, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1207, - "end": 1208, - "loc": { - "start": { - "line": 44, - "column": 35 - }, - "end": { - "line": 44, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1208, - "end": 1209, - "loc": { - "start": { - "line": 44, - "column": 36 - }, - "end": { - "line": 44, - "column": 37 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1212, - "end": 1213, - "loc": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Common --------------------------------------------------------------------------------------------------------", - "start": 1217, - "end": 1337, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Cancels pending transaction.\n * \n * Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API \n * entry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a \n * promise or a callback which registers errors, `\"Cancelled\"` error will be emitted in that case.\n * \n * Cancelling transaction which doesn't exist is ignored.\n * \n * @param {string} transactionId Id of pending transactions.\n * \n * @memberOf BleManager\n ", - "start": 1342, - "end": 1895, - "loc": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 62, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelTransaction", - "start": 1898, - "end": 1915, - "loc": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 63, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1915, - "end": 1916, - "loc": { - "start": { - "line": 63, - "column": 19 - }, - "end": { - "line": 63, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 1916, - "end": 1929, - "loc": { - "start": { - "line": 63, - "column": 20 - }, - "end": { - "line": 63, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1929, - "end": 1930, - "loc": { - "start": { - "line": 63, - "column": 33 - }, - "end": { - "line": 63, - "column": 34 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1931, - "end": 1932, - "loc": { - "start": { - "line": 63, - "column": 35 - }, - "end": { - "line": 63, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 1937, - "end": 1946, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1946, - "end": 1947, - "loc": { - "start": { - "line": 64, - "column": 13 - }, - "end": { - "line": 64, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelTransaction", - "start": 1947, - "end": 1964, - "loc": { - "start": { - "line": 64, - "column": 14 - }, - "end": { - "line": 64, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1964, - "end": 1965, - "loc": { - "start": { - "line": 64, - "column": 31 - }, - "end": { - "line": 64, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 1965, - "end": 1978, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 45 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1978, - "end": 1979, - "loc": { - "start": { - "line": 64, - "column": 45 - }, - "end": { - "line": 64, - "column": 46 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1979, - "end": 1980, - "loc": { - "start": { - "line": 64, - "column": 46 - }, - "end": { - "line": 64, - "column": 47 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1983, - "end": 1984, - "loc": { - "start": { - "line": 65, - "column": 2 - }, - "end": { - "line": 65, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Monitoring state ----------------------------------------------------------------------------------------------", - "start": 1988, - "end": 2108, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 67, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Current state of a manager.\n * \n * Available states:\n * - `Unknown` - the current state of the manager is unknown; an update is imminent.\n * - `Resetting` - the connection with the system service was momentarily lost; an update is imminent.\n * - `Unsupported` - the platform does not support Bluetooth low energy.\n * - `Unauthorized` - the app is not authorized to use Bluetooth low energy.\n * - `PoweredOff` - Bluetooth is currently powered off.\n * - `PoweredOn` - Bluetooth is currently powered on and available to use.\n * \n * @returns {Promise} Promise which emits current state of BleManager.\n * \n * @memberOf BleManager\n ", - "start": 2113, - "end": 2783, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "state", - "start": 2786, - "end": 2791, - "loc": { - "start": { - "line": 85, - "column": 2 - }, - "end": { - "line": 85, - "column": 7 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2791, - "end": 2792, - "loc": { - "start": { - "line": 85, - "column": 7 - }, - "end": { - "line": 85, - "column": 8 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2792, - "end": 2793, - "loc": { - "start": { - "line": 85, - "column": 8 - }, - "end": { - "line": 85, - "column": 9 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2794, - "end": 2795, - "loc": { - "start": { - "line": 85, - "column": 10 - }, - "end": { - "line": 85, - "column": 11 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2800, - "end": 2806, - "loc": { - "start": { - "line": 86, - "column": 4 - }, - "end": { - "line": 86, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 2807, - "end": 2816, - "loc": { - "start": { - "line": 86, - "column": 11 - }, - "end": { - "line": 86, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2816, - "end": 2817, - "loc": { - "start": { - "line": 86, - "column": 20 - }, - "end": { - "line": 86, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "state", - "start": 2817, - "end": 2822, - "loc": { - "start": { - "line": 86, - "column": 21 - }, - "end": { - "line": 86, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2822, - "end": 2823, - "loc": { - "start": { - "line": 86, - "column": 26 - }, - "end": { - "line": 86, - "column": 27 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2823, - "end": 2824, - "loc": { - "start": { - "line": 86, - "column": 27 - }, - "end": { - "line": 86, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2824, - "end": 2825, - "loc": { - "start": { - "line": 86, - "column": 28 - }, - "end": { - "line": 86, - "column": 29 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2828, - "end": 2829, - "loc": { - "start": { - "line": 87, - "column": 2 - }, - "end": { - "line": 87, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * \n * Notifies about state changes of a manager.\n * \n * @param {function(newState: State)} listener Callback which emits state changes of BLE Manager. \n * Look at {@link state} for possible values.\n * @param {boolean} [emitCurrentState=false] If true, current state will be emitted as well. Defaults to false.\n * \n * @returns {Subscription} Subscription on which remove() function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 2833, - "end": 3292, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 100, - "column": 4 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "onStateChange", - "start": 3295, - "end": 3308, - "loc": { - "start": { - "line": 101, - "column": 2 - }, - "end": { - "line": 101, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3308, - "end": 3309, - "loc": { - "start": { - "line": 101, - "column": 15 - }, - "end": { - "line": 101, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 3309, - "end": 3317, - "loc": { - "start": { - "line": 101, - "column": 16 - }, - "end": { - "line": 101, - "column": 24 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3317, - "end": 3318, - "loc": { - "start": { - "line": 101, - "column": 24 - }, - "end": { - "line": 101, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "emitCurrentState", - "start": 3319, - "end": 3335, - "loc": { - "start": { - "line": 101, - "column": 26 - }, - "end": { - "line": 101, - "column": 42 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3336, - "end": 3337, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 44 - } - } - }, - { - "type": { - "label": "false", - "keyword": "false", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "false", - "start": 3338, - "end": 3343, - "loc": { - "start": { - "line": 101, - "column": 45 - }, - "end": { - "line": 101, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3343, - "end": 3344, - "loc": { - "start": { - "line": 101, - "column": 50 - }, - "end": { - "line": 101, - "column": 51 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3345, - "end": 3346, - "loc": { - "start": { - "line": 101, - "column": 52 - }, - "end": { - "line": 101, - "column": 53 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 3351, - "end": 3356, - "loc": { - "start": { - "line": 102, - "column": 4 - }, - "end": { - "line": 102, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 3357, - "end": 3369, - "loc": { - "start": { - "line": 102, - "column": 10 - }, - "end": { - "line": 102, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3370, - "end": 3371, - "loc": { - "start": { - "line": 102, - "column": 23 - }, - "end": { - "line": 102, - "column": 24 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3372, - "end": 3376, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3376, - "end": 3377, - "loc": { - "start": { - "line": 102, - "column": 29 - }, - "end": { - "line": 102, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_eventEmitter", - "start": 3377, - "end": 3390, - "loc": { - "start": { - "line": 102, - "column": 30 - }, - "end": { - "line": 102, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3390, - "end": 3391, - "loc": { - "start": { - "line": 102, - "column": 43 - }, - "end": { - "line": 102, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addListener", - "start": 3391, - "end": 3402, - "loc": { - "start": { - "line": 102, - "column": 44 - }, - "end": { - "line": 102, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3402, - "end": 3403, - "loc": { - "start": { - "line": 102, - "column": 55 - }, - "end": { - "line": 102, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 3403, - "end": 3412, - "loc": { - "start": { - "line": 102, - "column": 56 - }, - "end": { - "line": 102, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3412, - "end": 3413, - "loc": { - "start": { - "line": 102, - "column": 65 - }, - "end": { - "line": 102, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "StateChangeEvent", - "start": 3413, - "end": 3429, - "loc": { - "start": { - "line": 102, - "column": 66 - }, - "end": { - "line": 102, - "column": 82 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3429, - "end": 3430, - "loc": { - "start": { - "line": 102, - "column": 82 - }, - "end": { - "line": 102, - "column": 83 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 3431, - "end": 3439, - "loc": { - "start": { - "line": 102, - "column": 84 - }, - "end": { - "line": 102, - "column": 92 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3439, - "end": 3440, - "loc": { - "start": { - "line": 102, - "column": 92 - }, - "end": { - "line": 102, - "column": 93 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3440, - "end": 3441, - "loc": { - "start": { - "line": 102, - "column": 93 - }, - "end": { - "line": 102, - "column": 94 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3447, - "end": 3449, - "loc": { - "start": { - "line": 104, - "column": 4 - }, - "end": { - "line": 104, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3450, - "end": 3451, - "loc": { - "start": { - "line": 104, - "column": 7 - }, - "end": { - "line": 104, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "emitCurrentState", - "start": 3451, - "end": 3467, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3467, - "end": 3468, - "loc": { - "start": { - "line": 104, - "column": 24 - }, - "end": { - "line": 104, - "column": 25 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3469, - "end": 3470, - "loc": { - "start": { - "line": 104, - "column": 26 - }, - "end": { - "line": 104, - "column": 27 - } - } - }, - { - "type": { - "label": "var", - "keyword": "var", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "var", - "start": 3477, - "end": 3480, - "loc": { - "start": { - "line": 105, - "column": 6 - }, - "end": { - "line": 105, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelled", - "start": 3481, - "end": 3490, - "loc": { - "start": { - "line": 105, - "column": 10 - }, - "end": { - "line": 105, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3491, - "end": 3492, - "loc": { - "start": { - "line": 105, - "column": 20 - }, - "end": { - "line": 105, - "column": 21 - } - } - }, - { - "type": { - "label": "false", - "keyword": "false", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "false", - "start": 3493, - "end": 3498, - "loc": { - "start": { - "line": 105, - "column": 22 - }, - "end": { - "line": 105, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3498, - "end": 3499, - "loc": { - "start": { - "line": 105, - "column": 27 - }, - "end": { - "line": 105, - "column": 28 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3506, - "end": 3510, - "loc": { - "start": { - "line": 106, - "column": 6 - }, - "end": { - "line": 106, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3510, - "end": 3511, - "loc": { - "start": { - "line": 106, - "column": 10 - }, - "end": { - "line": 106, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "state", - "start": 3511, - "end": 3516, - "loc": { - "start": { - "line": 106, - "column": 11 - }, - "end": { - "line": 106, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3516, - "end": 3517, - "loc": { - "start": { - "line": 106, - "column": 16 - }, - "end": { - "line": 106, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3517, - "end": 3518, - "loc": { - "start": { - "line": 106, - "column": 17 - }, - "end": { - "line": 106, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3518, - "end": 3519, - "loc": { - "start": { - "line": 106, - "column": 18 - }, - "end": { - "line": 106, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "then", - "start": 3519, - "end": 3523, - "loc": { - "start": { - "line": 106, - "column": 19 - }, - "end": { - "line": 106, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3523, - "end": 3524, - "loc": { - "start": { - "line": 106, - "column": 23 - }, - "end": { - "line": 106, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentState", - "start": 3524, - "end": 3536, - "loc": { - "start": { - "line": 106, - "column": 24 - }, - "end": { - "line": 106, - "column": 36 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3537, - "end": 3539, - "loc": { - "start": { - "line": 106, - "column": 37 - }, - "end": { - "line": 106, - "column": 39 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3540, - "end": 3541, - "loc": { - "start": { - "line": 106, - "column": 40 - }, - "end": { - "line": 106, - "column": 41 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 3550, - "end": 3552, - "loc": { - "start": { - "line": 107, - "column": 8 - }, - "end": { - "line": 107, - "column": 10 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3553, - "end": 3554, - "loc": { - "start": { - "line": 107, - "column": 11 - }, - "end": { - "line": 107, - "column": 12 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 3554, - "end": 3555, - "loc": { - "start": { - "line": 107, - "column": 12 - }, - "end": { - "line": 107, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelled", - "start": 3555, - "end": 3564, - "loc": { - "start": { - "line": 107, - "column": 13 - }, - "end": { - "line": 107, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3564, - "end": 3565, - "loc": { - "start": { - "line": 107, - "column": 22 - }, - "end": { - "line": 107, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3566, - "end": 3567, - "loc": { - "start": { - "line": 107, - "column": 24 - }, - "end": { - "line": 107, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 3578, - "end": 3586, - "loc": { - "start": { - "line": 108, - "column": 10 - }, - "end": { - "line": 108, - "column": 18 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3586, - "end": 3587, - "loc": { - "start": { - "line": 108, - "column": 18 - }, - "end": { - "line": 108, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "currentState", - "start": 3587, - "end": 3599, - "loc": { - "start": { - "line": 108, - "column": 19 - }, - "end": { - "line": 108, - "column": 31 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3599, - "end": 3600, - "loc": { - "start": { - "line": 108, - "column": 31 - }, - "end": { - "line": 108, - "column": 32 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3600, - "end": 3601, - "loc": { - "start": { - "line": 108, - "column": 32 - }, - "end": { - "line": 108, - "column": 33 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3610, - "end": 3611, - "loc": { - "start": { - "line": 109, - "column": 8 - }, - "end": { - "line": 109, - "column": 9 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3618, - "end": 3619, - "loc": { - "start": { - "line": 110, - "column": 6 - }, - "end": { - "line": 110, - "column": 7 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3619, - "end": 3620, - "loc": { - "start": { - "line": 110, - "column": 7 - }, - "end": { - "line": 110, - "column": 8 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3620, - "end": 3621, - "loc": { - "start": { - "line": 110, - "column": 8 - }, - "end": { - "line": 110, - "column": 9 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3629, - "end": 3635, - "loc": { - "start": { - "line": 112, - "column": 6 - }, - "end": { - "line": 112, - "column": 12 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3636, - "end": 3637, - "loc": { - "start": { - "line": 112, - "column": 13 - }, - "end": { - "line": 112, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 3646, - "end": 3652, - "loc": { - "start": { - "line": 113, - "column": 8 - }, - "end": { - "line": 113, - "column": 14 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3652, - "end": 3653, - "loc": { - "start": { - "line": 113, - "column": 14 - }, - "end": { - "line": 113, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3654, - "end": 3655, - "loc": { - "start": { - "line": 113, - "column": 16 - }, - "end": { - "line": 113, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3655, - "end": 3656, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 18 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3657, - "end": 3659, - "loc": { - "start": { - "line": 113, - "column": 19 - }, - "end": { - "line": 113, - "column": 21 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3660, - "end": 3661, - "loc": { - "start": { - "line": 113, - "column": 22 - }, - "end": { - "line": 113, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelled", - "start": 3672, - "end": 3681, - "loc": { - "start": { - "line": 114, - "column": 10 - }, - "end": { - "line": 114, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 3682, - "end": 3683, - "loc": { - "start": { - "line": 114, - "column": 20 - }, - "end": { - "line": 114, - "column": 21 - } - } - }, - { - "type": { - "label": "true", - "keyword": "true", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "true", - "start": 3684, - "end": 3688, - "loc": { - "start": { - "line": 114, - "column": 22 - }, - "end": { - "line": 114, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3688, - "end": 3689, - "loc": { - "start": { - "line": 114, - "column": 26 - }, - "end": { - "line": 114, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 3700, - "end": 3712, - "loc": { - "start": { - "line": 115, - "column": 10 - }, - "end": { - "line": 115, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3712, - "end": 3713, - "loc": { - "start": { - "line": 115, - "column": 22 - }, - "end": { - "line": 115, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 3713, - "end": 3719, - "loc": { - "start": { - "line": 115, - "column": 23 - }, - "end": { - "line": 115, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3719, - "end": 3720, - "loc": { - "start": { - "line": 115, - "column": 29 - }, - "end": { - "line": 115, - "column": 30 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3720, - "end": 3721, - "loc": { - "start": { - "line": 115, - "column": 30 - }, - "end": { - "line": 115, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3721, - "end": 3722, - "loc": { - "start": { - "line": 115, - "column": 31 - }, - "end": { - "line": 115, - "column": 32 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3731, - "end": 3732, - "loc": { - "start": { - "line": 116, - "column": 8 - }, - "end": { - "line": 116, - "column": 9 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3739, - "end": 3740, - "loc": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 117, - "column": 7 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3740, - "end": 3741, - "loc": { - "start": { - "line": 117, - "column": 7 - }, - "end": { - "line": 117, - "column": 8 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3746, - "end": 3747, - "loc": { - "start": { - "line": 118, - "column": 4 - }, - "end": { - "line": 118, - "column": 5 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3753, - "end": 3759, - "loc": { - "start": { - "line": 120, - "column": 4 - }, - "end": { - "line": 120, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 3760, - "end": 3772, - "loc": { - "start": { - "line": 120, - "column": 11 - }, - "end": { - "line": 120, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3772, - "end": 3773, - "loc": { - "start": { - "line": 120, - "column": 23 - }, - "end": { - "line": 120, - "column": 24 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3776, - "end": 3777, - "loc": { - "start": { - "line": 121, - "column": 2 - }, - "end": { - "line": 121, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Scanning ------------------------------------------------------------------------------------------------------", - "start": 3781, - "end": 3901, - "loc": { - "start": { - "line": 123, - "column": 2 - }, - "end": { - "line": 123, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Starts device scanning. \n * \n * When previous scan is in progress it will be stopped before executing this command.\n * \n * @param {?string[]} UUIDs - Array of strings containing UUIDs of services which are registered in scanned devices. \n * If null is passed all available devices will be scanned.\n * @param {?ScanOptions} options - Optional configuration for scanning operation. Scan option object contains two\n * optional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more\n * frequently, `autoConnect` for Android - allows to connect to devices which are not in range.\n * @param {function(error: ?Error, scannedDevice: ?Device)} listener - Function which will be called for every scanned \n * {@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set \n * to non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument \n * is a scanned {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 3906, - "end": 4984, - "loc": { - "start": { - "line": 126, - "column": 2 - }, - "end": { - "line": 142, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "startDeviceScan", - "start": 4987, - "end": 5002, - "loc": { - "start": { - "line": 143, - "column": 2 - }, - "end": { - "line": 143, - "column": 17 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5002, - "end": 5003, - "loc": { - "start": { - "line": 143, - "column": 17 - }, - "end": { - "line": 143, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "UUIDs", - "start": 5003, - "end": 5008, - "loc": { - "start": { - "line": 143, - "column": 18 - }, - "end": { - "line": 143, - "column": 23 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5008, - "end": 5009, - "loc": { - "start": { - "line": 143, - "column": 23 - }, - "end": { - "line": 143, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 5010, - "end": 5017, - "loc": { - "start": { - "line": 143, - "column": 25 - }, - "end": { - "line": 143, - "column": 32 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5017, - "end": 5018, - "loc": { - "start": { - "line": 143, - "column": 32 - }, - "end": { - "line": 143, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 5019, - "end": 5027, - "loc": { - "start": { - "line": 143, - "column": 34 - }, - "end": { - "line": 143, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5027, - "end": 5028, - "loc": { - "start": { - "line": 143, - "column": 42 - }, - "end": { - "line": 143, - "column": 43 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5029, - "end": 5030, - "loc": { - "start": { - "line": 143, - "column": 44 - }, - "end": { - "line": 143, - "column": 45 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5035, - "end": 5039, - "loc": { - "start": { - "line": 144, - "column": 4 - }, - "end": { - "line": 144, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5039, - "end": 5040, - "loc": { - "start": { - "line": 144, - "column": 8 - }, - "end": { - "line": 144, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "stopDeviceScan", - "start": 5040, - "end": 5054, - "loc": { - "start": { - "line": 144, - "column": 9 - }, - "end": { - "line": 144, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5054, - "end": 5055, - "loc": { - "start": { - "line": 144, - "column": 23 - }, - "end": { - "line": 144, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5055, - "end": 5056, - "loc": { - "start": { - "line": 144, - "column": 24 - }, - "end": { - "line": 144, - "column": 25 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5056, - "end": 5057, - "loc": { - "start": { - "line": 144, - "column": 25 - }, - "end": { - "line": 144, - "column": 26 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 5062, - "end": 5067, - "loc": { - "start": { - "line": 145, - "column": 4 - }, - "end": { - "line": 145, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "scanListener", - "start": 5068, - "end": 5080, - "loc": { - "start": { - "line": 145, - "column": 10 - }, - "end": { - "line": 145, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5081, - "end": 5082, - "loc": { - "start": { - "line": 145, - "column": 23 - }, - "end": { - "line": 145, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5083, - "end": 5084, - "loc": { - "start": { - "line": 145, - "column": 25 - }, - "end": { - "line": 145, - "column": 26 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5084, - "end": 5085, - "loc": { - "start": { - "line": 145, - "column": 26 - }, - "end": { - "line": 145, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 5085, - "end": 5090, - "loc": { - "start": { - "line": 145, - "column": 27 - }, - "end": { - "line": 145, - "column": 32 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5090, - "end": 5091, - "loc": { - "start": { - "line": 145, - "column": 32 - }, - "end": { - "line": 145, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 5092, - "end": 5098, - "loc": { - "start": { - "line": 145, - "column": 34 - }, - "end": { - "line": 145, - "column": 40 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5098, - "end": 5099, - "loc": { - "start": { - "line": 145, - "column": 40 - }, - "end": { - "line": 145, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5099, - "end": 5100, - "loc": { - "start": { - "line": 145, - "column": 41 - }, - "end": { - "line": 145, - "column": 42 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5101, - "end": 5103, - "loc": { - "start": { - "line": 145, - "column": 43 - }, - "end": { - "line": 145, - "column": 45 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5104, - "end": 5105, - "loc": { - "start": { - "line": 145, - "column": 46 - }, - "end": { - "line": 145, - "column": 47 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 5112, - "end": 5120, - "loc": { - "start": { - "line": 146, - "column": 6 - }, - "end": { - "line": 146, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5120, - "end": 5121, - "loc": { - "start": { - "line": 146, - "column": 14 - }, - "end": { - "line": 146, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 5121, - "end": 5126, - "loc": { - "start": { - "line": 146, - "column": 15 - }, - "end": { - "line": 146, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5126, - "end": 5127, - "loc": { - "start": { - "line": 146, - "column": 20 - }, - "end": { - "line": 146, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 5128, - "end": 5134, - "loc": { - "start": { - "line": 146, - "column": 22 - }, - "end": { - "line": 146, - "column": 28 - } - } - }, - { - "type": { - "label": "?", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5135, - "end": 5136, - "loc": { - "start": { - "line": 146, - "column": 29 - }, - "end": { - "line": 146, - "column": 30 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 5137, - "end": 5140, - "loc": { - "start": { - "line": 146, - "column": 31 - }, - "end": { - "line": 146, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 5141, - "end": 5147, - "loc": { - "start": { - "line": 146, - "column": 35 - }, - "end": { - "line": 146, - "column": 41 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5147, - "end": 5148, - "loc": { - "start": { - "line": 146, - "column": 41 - }, - "end": { - "line": 146, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 5148, - "end": 5154, - "loc": { - "start": { - "line": 146, - "column": 42 - }, - "end": { - "line": 146, - "column": 48 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5154, - "end": 5155, - "loc": { - "start": { - "line": 146, - "column": 48 - }, - "end": { - "line": 146, - "column": 49 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5156, - "end": 5160, - "loc": { - "start": { - "line": 146, - "column": 50 - }, - "end": { - "line": 146, - "column": 54 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5160, - "end": 5161, - "loc": { - "start": { - "line": 146, - "column": 54 - }, - "end": { - "line": 146, - "column": 55 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5162, - "end": 5163, - "loc": { - "start": { - "line": 146, - "column": 56 - }, - "end": { - "line": 146, - "column": 57 - } - } - }, - { - "type": { - "label": "null", - "keyword": "null", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null", - "start": 5164, - "end": 5168, - "loc": { - "start": { - "line": 146, - "column": 58 - }, - "end": { - "line": 146, - "column": 62 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5168, - "end": 5169, - "loc": { - "start": { - "line": 146, - "column": 62 - }, - "end": { - "line": 146, - "column": 63 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5169, - "end": 5170, - "loc": { - "start": { - "line": 146, - "column": 63 - }, - "end": { - "line": 146, - "column": 64 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5175, - "end": 5176, - "loc": { - "start": { - "line": 147, - "column": 4 - }, - "end": { - "line": 147, - "column": 5 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5176, - "end": 5177, - "loc": { - "start": { - "line": 147, - "column": 5 - }, - "end": { - "line": 147, - "column": 6 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5182, - "end": 5186, - "loc": { - "start": { - "line": 148, - "column": 4 - }, - "end": { - "line": 148, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5186, - "end": 5187, - "loc": { - "start": { - "line": 148, - "column": 8 - }, - "end": { - "line": 148, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_scanEventSubscription", - "start": 5187, - "end": 5209, - "loc": { - "start": { - "line": 148, - "column": 9 - }, - "end": { - "line": 148, - "column": 31 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 5210, - "end": 5211, - "loc": { - "start": { - "line": 148, - "column": 32 - }, - "end": { - "line": 148, - "column": 33 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5212, - "end": 5216, - "loc": { - "start": { - "line": 148, - "column": 34 - }, - "end": { - "line": 148, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5216, - "end": 5217, - "loc": { - "start": { - "line": 148, - "column": 38 - }, - "end": { - "line": 148, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_eventEmitter", - "start": 5217, - "end": 5230, - "loc": { - "start": { - "line": 148, - "column": 39 - }, - "end": { - "line": 148, - "column": 52 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5230, - "end": 5231, - "loc": { - "start": { - "line": 148, - "column": 52 - }, - "end": { - "line": 148, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addListener", - "start": 5231, - "end": 5242, - "loc": { - "start": { - "line": 148, - "column": 53 - }, - "end": { - "line": 148, - "column": 64 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5242, - "end": 5243, - "loc": { - "start": { - "line": 148, - "column": 64 - }, - "end": { - "line": 148, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 5243, - "end": 5252, - "loc": { - "start": { - "line": 148, - "column": 65 - }, - "end": { - "line": 148, - "column": 74 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5252, - "end": 5253, - "loc": { - "start": { - "line": 148, - "column": 74 - }, - "end": { - "line": 148, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ScanEvent", - "start": 5253, - "end": 5262, - "loc": { - "start": { - "line": 148, - "column": 75 - }, - "end": { - "line": 148, - "column": 84 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5262, - "end": 5263, - "loc": { - "start": { - "line": 148, - "column": 84 - }, - "end": { - "line": 148, - "column": 85 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "scanListener", - "start": 5264, - "end": 5276, - "loc": { - "start": { - "line": 148, - "column": 86 - }, - "end": { - "line": 148, - "column": 98 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5276, - "end": 5277, - "loc": { - "start": { - "line": 148, - "column": 98 - }, - "end": { - "line": 148, - "column": 99 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5277, - "end": 5278, - "loc": { - "start": { - "line": 148, - "column": 99 - }, - "end": { - "line": 148, - "column": 100 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 5283, - "end": 5292, - "loc": { - "start": { - "line": 149, - "column": 4 - }, - "end": { - "line": 149, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5292, - "end": 5293, - "loc": { - "start": { - "line": 149, - "column": 13 - }, - "end": { - "line": 149, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "startDeviceScan", - "start": 5293, - "end": 5308, - "loc": { - "start": { - "line": 149, - "column": 14 - }, - "end": { - "line": 149, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5308, - "end": 5309, - "loc": { - "start": { - "line": 149, - "column": 29 - }, - "end": { - "line": 149, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "UUIDs", - "start": 5309, - "end": 5314, - "loc": { - "start": { - "line": 149, - "column": 30 - }, - "end": { - "line": 149, - "column": 35 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5314, - "end": 5315, - "loc": { - "start": { - "line": 149, - "column": 35 - }, - "end": { - "line": 149, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 5316, - "end": 5323, - "loc": { - "start": { - "line": 149, - "column": 37 - }, - "end": { - "line": 149, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5323, - "end": 5324, - "loc": { - "start": { - "line": 149, - "column": 44 - }, - "end": { - "line": 149, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5324, - "end": 5325, - "loc": { - "start": { - "line": 149, - "column": 45 - }, - "end": { - "line": 149, - "column": 46 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5328, - "end": 5329, - "loc": { - "start": { - "line": 150, - "column": 2 - }, - "end": { - "line": 150, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * \n * Stops device scan if in progress.\n * \n * @memberOf BleManager\n ", - "start": 5333, - "end": 5419, - "loc": { - "start": { - "line": 152, - "column": 2 - }, - "end": { - "line": 157, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "stopDeviceScan", - "start": 5422, - "end": 5436, - "loc": { - "start": { - "line": 158, - "column": 2 - }, - "end": { - "line": 158, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5436, - "end": 5437, - "loc": { - "start": { - "line": 158, - "column": 16 - }, - "end": { - "line": 158, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5437, - "end": 5438, - "loc": { - "start": { - "line": 158, - "column": 17 - }, - "end": { - "line": 158, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5439, - "end": 5440, - "loc": { - "start": { - "line": 158, - "column": 19 - }, - "end": { - "line": 158, - "column": 20 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 5445, - "end": 5447, - "loc": { - "start": { - "line": 159, - "column": 4 - }, - "end": { - "line": 159, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5448, - "end": 5449, - "loc": { - "start": { - "line": 159, - "column": 7 - }, - "end": { - "line": 159, - "column": 8 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5449, - "end": 5453, - "loc": { - "start": { - "line": 159, - "column": 8 - }, - "end": { - "line": 159, - "column": 12 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5453, - "end": 5454, - "loc": { - "start": { - "line": 159, - "column": 12 - }, - "end": { - "line": 159, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_scanEventSubscription", - "start": 5454, - "end": 5476, - "loc": { - "start": { - "line": 159, - "column": 13 - }, - "end": { - "line": 159, - "column": 35 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5476, - "end": 5477, - "loc": { - "start": { - "line": 159, - "column": 35 - }, - "end": { - "line": 159, - "column": 36 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5478, - "end": 5479, - "loc": { - "start": { - "line": 159, - "column": 37 - }, - "end": { - "line": 159, - "column": 38 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5486, - "end": 5490, - "loc": { - "start": { - "line": 160, - "column": 6 - }, - "end": { - "line": 160, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5490, - "end": 5491, - "loc": { - "start": { - "line": 160, - "column": 10 - }, - "end": { - "line": 160, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_scanEventSubscription", - "start": 5491, - "end": 5513, - "loc": { - "start": { - "line": 160, - "column": 11 - }, - "end": { - "line": 160, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5513, - "end": 5514, - "loc": { - "start": { - "line": 160, - "column": 33 - }, - "end": { - "line": 160, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 5514, - "end": 5520, - "loc": { - "start": { - "line": 160, - "column": 34 - }, - "end": { - "line": 160, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5520, - "end": 5521, - "loc": { - "start": { - "line": 160, - "column": 40 - }, - "end": { - "line": 160, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5521, - "end": 5522, - "loc": { - "start": { - "line": 160, - "column": 41 - }, - "end": { - "line": 160, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5522, - "end": 5523, - "loc": { - "start": { - "line": 160, - "column": 42 - }, - "end": { - "line": 160, - "column": 43 - } - } - }, - { - "type": { - "label": "delete", - "keyword": "delete", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "delete", - "start": 5530, - "end": 5536, - "loc": { - "start": { - "line": 161, - "column": 6 - }, - "end": { - "line": 161, - "column": 12 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5537, - "end": 5541, - "loc": { - "start": { - "line": 161, - "column": 13 - }, - "end": { - "line": 161, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5541, - "end": 5542, - "loc": { - "start": { - "line": 161, - "column": 17 - }, - "end": { - "line": 161, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_scanEventSubscription", - "start": 5542, - "end": 5564, - "loc": { - "start": { - "line": 161, - "column": 18 - }, - "end": { - "line": 161, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5564, - "end": 5565, - "loc": { - "start": { - "line": 161, - "column": 40 - }, - "end": { - "line": 161, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5570, - "end": 5571, - "loc": { - "start": { - "line": 162, - "column": 4 - }, - "end": { - "line": 162, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 5576, - "end": 5585, - "loc": { - "start": { - "line": 163, - "column": 4 - }, - "end": { - "line": 163, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5585, - "end": 5586, - "loc": { - "start": { - "line": 163, - "column": 13 - }, - "end": { - "line": 163, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "stopDeviceScan", - "start": 5586, - "end": 5600, - "loc": { - "start": { - "line": 163, - "column": 14 - }, - "end": { - "line": 163, - "column": 28 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5600, - "end": 5601, - "loc": { - "start": { - "line": 163, - "column": 28 - }, - "end": { - "line": 163, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5601, - "end": 5602, - "loc": { - "start": { - "line": 163, - "column": 29 - }, - "end": { - "line": 163, - "column": 30 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5602, - "end": 5603, - "loc": { - "start": { - "line": 163, - "column": 30 - }, - "end": { - "line": 163, - "column": 31 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5606, - "end": 5607, - "loc": { - "start": { - "line": 164, - "column": 2 - }, - "end": { - "line": 164, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Connection management -----------------------------------------------------------------------------------------", - "start": 5611, - "end": 5731, - "loc": { - "start": { - "line": 166, - "column": 2 - }, - "end": { - "line": 166, - "column": 122 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Connects to {@link Device} with provided ID.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf BleManager\n ", - "start": 5735, - "end": 6097, - "loc": { - "start": { - "line": 168, - "column": 2 - }, - "end": { - "line": 176, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 6100, - "end": 6105, - "loc": { - "start": { - "line": 177, - "column": 2 - }, - "end": { - "line": 177, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "connectToDevice", - "start": 6106, - "end": 6121, - "loc": { - "start": { - "line": 177, - "column": 8 - }, - "end": { - "line": 177, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6121, - "end": 6122, - "loc": { - "start": { - "line": 177, - "column": 23 - }, - "end": { - "line": 177, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 6122, - "end": 6138, - "loc": { - "start": { - "line": 177, - "column": 24 - }, - "end": { - "line": 177, - "column": 40 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6138, - "end": 6139, - "loc": { - "start": { - "line": 177, - "column": 40 - }, - "end": { - "line": 177, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 6140, - "end": 6147, - "loc": { - "start": { - "line": 177, - "column": 42 - }, - "end": { - "line": 177, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6147, - "end": 6148, - "loc": { - "start": { - "line": 177, - "column": 49 - }, - "end": { - "line": 177, - "column": 50 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6149, - "end": 6150, - "loc": { - "start": { - "line": 177, - "column": 51 - }, - "end": { - "line": 177, - "column": 52 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 6155, - "end": 6160, - "loc": { - "start": { - "line": 178, - "column": 4 - }, - "end": { - "line": 178, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 6161, - "end": 6172, - "loc": { - "start": { - "line": 178, - "column": 10 - }, - "end": { - "line": 178, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 6173, - "end": 6174, - "loc": { - "start": { - "line": 178, - "column": 22 - }, - "end": { - "line": 178, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 6175, - "end": 6180, - "loc": { - "start": { - "line": 178, - "column": 24 - }, - "end": { - "line": 178, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 6181, - "end": 6190, - "loc": { - "start": { - "line": 178, - "column": 30 - }, - "end": { - "line": 178, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6190, - "end": 6191, - "loc": { - "start": { - "line": 178, - "column": 39 - }, - "end": { - "line": 178, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "connectToDevice", - "start": 6191, - "end": 6206, - "loc": { - "start": { - "line": 178, - "column": 40 - }, - "end": { - "line": 178, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6206, - "end": 6207, - "loc": { - "start": { - "line": 178, - "column": 55 - }, - "end": { - "line": 178, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 6207, - "end": 6223, - "loc": { - "start": { - "line": 178, - "column": 56 - }, - "end": { - "line": 178, - "column": 72 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6223, - "end": 6224, - "loc": { - "start": { - "line": 178, - "column": 72 - }, - "end": { - "line": 178, - "column": 73 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 6225, - "end": 6232, - "loc": { - "start": { - "line": 178, - "column": 74 - }, - "end": { - "line": 178, - "column": 81 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6232, - "end": 6233, - "loc": { - "start": { - "line": 178, - "column": 81 - }, - "end": { - "line": 178, - "column": 82 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6233, - "end": 6234, - "loc": { - "start": { - "line": 178, - "column": 82 - }, - "end": { - "line": 178, - "column": 83 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 6239, - "end": 6245, - "loc": { - "start": { - "line": 179, - "column": 4 - }, - "end": { - "line": 179, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 6246, - "end": 6249, - "loc": { - "start": { - "line": 179, - "column": 11 - }, - "end": { - "line": 179, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 6250, - "end": 6256, - "loc": { - "start": { - "line": 179, - "column": 15 - }, - "end": { - "line": 179, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6256, - "end": 6257, - "loc": { - "start": { - "line": 179, - "column": 21 - }, - "end": { - "line": 179, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 6257, - "end": 6268, - "loc": { - "start": { - "line": 179, - "column": 22 - }, - "end": { - "line": 179, - "column": 33 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6268, - "end": 6269, - "loc": { - "start": { - "line": 179, - "column": 33 - }, - "end": { - "line": 179, - "column": 34 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 6270, - "end": 6274, - "loc": { - "start": { - "line": 179, - "column": 35 - }, - "end": { - "line": 179, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6274, - "end": 6275, - "loc": { - "start": { - "line": 179, - "column": 39 - }, - "end": { - "line": 179, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6275, - "end": 6276, - "loc": { - "start": { - "line": 179, - "column": 40 - }, - "end": { - "line": 179, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6279, - "end": 6280, - "loc": { - "start": { - "line": 180, - "column": 2 - }, - "end": { - "line": 180, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Disconnects from device if it's connected or cancels pending connection.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be closed. \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf BleManager\n ", - "start": 6284, - "end": 6582, - "loc": { - "start": { - "line": 182, - "column": 2 - }, - "end": { - "line": 189, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 6585, - "end": 6590, - "loc": { - "start": { - "line": 190, - "column": 2 - }, - "end": { - "line": 190, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelDeviceConnection", - "start": 6591, - "end": 6613, - "loc": { - "start": { - "line": 190, - "column": 8 - }, - "end": { - "line": 190, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6613, - "end": 6614, - "loc": { - "start": { - "line": 190, - "column": 30 - }, - "end": { - "line": 190, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 6614, - "end": 6630, - "loc": { - "start": { - "line": 190, - "column": 31 - }, - "end": { - "line": 190, - "column": 47 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6630, - "end": 6631, - "loc": { - "start": { - "line": 190, - "column": 47 - }, - "end": { - "line": 190, - "column": 48 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6632, - "end": 6633, - "loc": { - "start": { - "line": 190, - "column": 49 - }, - "end": { - "line": 190, - "column": 50 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 6638, - "end": 6643, - "loc": { - "start": { - "line": 191, - "column": 4 - }, - "end": { - "line": 191, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 6644, - "end": 6655, - "loc": { - "start": { - "line": 191, - "column": 10 - }, - "end": { - "line": 191, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 6656, - "end": 6657, - "loc": { - "start": { - "line": 191, - "column": 22 - }, - "end": { - "line": 191, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 6658, - "end": 6663, - "loc": { - "start": { - "line": 191, - "column": 24 - }, - "end": { - "line": 191, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 6664, - "end": 6673, - "loc": { - "start": { - "line": 191, - "column": 30 - }, - "end": { - "line": 191, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6673, - "end": 6674, - "loc": { - "start": { - "line": 191, - "column": 39 - }, - "end": { - "line": 191, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelDeviceConnection", - "start": 6674, - "end": 6696, - "loc": { - "start": { - "line": 191, - "column": 40 - }, - "end": { - "line": 191, - "column": 62 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6696, - "end": 6697, - "loc": { - "start": { - "line": 191, - "column": 62 - }, - "end": { - "line": 191, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 6697, - "end": 6713, - "loc": { - "start": { - "line": 191, - "column": 63 - }, - "end": { - "line": 191, - "column": 79 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6713, - "end": 6714, - "loc": { - "start": { - "line": 191, - "column": 79 - }, - "end": { - "line": 191, - "column": 80 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6714, - "end": 6715, - "loc": { - "start": { - "line": 191, - "column": 80 - }, - "end": { - "line": 191, - "column": 81 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 6720, - "end": 6726, - "loc": { - "start": { - "line": 192, - "column": 4 - }, - "end": { - "line": 192, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 6727, - "end": 6730, - "loc": { - "start": { - "line": 192, - "column": 11 - }, - "end": { - "line": 192, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 6731, - "end": 6737, - "loc": { - "start": { - "line": 192, - "column": 15 - }, - "end": { - "line": 192, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6737, - "end": 6738, - "loc": { - "start": { - "line": 192, - "column": 21 - }, - "end": { - "line": 192, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 6738, - "end": 6749, - "loc": { - "start": { - "line": 192, - "column": 22 - }, - "end": { - "line": 192, - "column": 33 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6749, - "end": 6750, - "loc": { - "start": { - "line": 192, - "column": 33 - }, - "end": { - "line": 192, - "column": 34 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 6751, - "end": 6755, - "loc": { - "start": { - "line": 192, - "column": 35 - }, - "end": { - "line": 192, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6755, - "end": 6756, - "loc": { - "start": { - "line": 192, - "column": 39 - }, - "end": { - "line": 192, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6756, - "end": 6757, - "loc": { - "start": { - "line": 192, - "column": 40 - }, - "end": { - "line": 192, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6760, - "end": 6761, - "loc": { - "start": { - "line": 193, - "column": 2 - }, - "end": { - "line": 193, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Monitors if device was disconnected due to any errors or connection problems.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier to be monitored.\n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 6765, - "end": 7244, - "loc": { - "start": { - "line": 195, - "column": 2 - }, - "end": { - "line": 204, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "onDeviceDisconnected", - "start": 7247, - "end": 7267, - "loc": { - "start": { - "line": 205, - "column": 2 - }, - "end": { - "line": 205, - "column": 22 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7267, - "end": 7268, - "loc": { - "start": { - "line": 205, - "column": 22 - }, - "end": { - "line": 205, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 7268, - "end": 7284, - "loc": { - "start": { - "line": 205, - "column": 23 - }, - "end": { - "line": 205, - "column": 39 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7284, - "end": 7285, - "loc": { - "start": { - "line": 205, - "column": 39 - }, - "end": { - "line": 205, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 7286, - "end": 7294, - "loc": { - "start": { - "line": 205, - "column": 41 - }, - "end": { - "line": 205, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7294, - "end": 7295, - "loc": { - "start": { - "line": 205, - "column": 49 - }, - "end": { - "line": 205, - "column": 50 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7296, - "end": 7297, - "loc": { - "start": { - "line": 205, - "column": 51 - }, - "end": { - "line": 205, - "column": 52 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 7302, - "end": 7307, - "loc": { - "start": { - "line": 206, - "column": 4 - }, - "end": { - "line": 206, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "disconnectionListener", - "start": 7308, - "end": 7329, - "loc": { - "start": { - "line": 206, - "column": 10 - }, - "end": { - "line": 206, - "column": 31 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7330, - "end": 7331, - "loc": { - "start": { - "line": 206, - "column": 32 - }, - "end": { - "line": 206, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7332, - "end": 7333, - "loc": { - "start": { - "line": 206, - "column": 34 - }, - "end": { - "line": 206, - "column": 35 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7333, - "end": 7334, - "loc": { - "start": { - "line": 206, - "column": 35 - }, - "end": { - "line": 206, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 7334, - "end": 7339, - "loc": { - "start": { - "line": 206, - "column": 36 - }, - "end": { - "line": 206, - "column": 41 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7339, - "end": 7340, - "loc": { - "start": { - "line": 206, - "column": 41 - }, - "end": { - "line": 206, - "column": 42 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 7341, - "end": 7347, - "loc": { - "start": { - "line": 206, - "column": 43 - }, - "end": { - "line": 206, - "column": 49 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7347, - "end": 7348, - "loc": { - "start": { - "line": 206, - "column": 49 - }, - "end": { - "line": 206, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7348, - "end": 7349, - "loc": { - "start": { - "line": 206, - "column": 50 - }, - "end": { - "line": 206, - "column": 51 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7350, - "end": 7352, - "loc": { - "start": { - "line": 206, - "column": 52 - }, - "end": { - "line": 206, - "column": 54 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7353, - "end": 7354, - "loc": { - "start": { - "line": 206, - "column": 55 - }, - "end": { - "line": 206, - "column": 56 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 7361, - "end": 7363, - "loc": { - "start": { - "line": 207, - "column": 6 - }, - "end": { - "line": 207, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7364, - "end": 7365, - "loc": { - "start": { - "line": 207, - "column": 9 - }, - "end": { - "line": 207, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 7365, - "end": 7381, - "loc": { - "start": { - "line": 207, - "column": 10 - }, - "end": { - "line": 207, - "column": 26 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 7382, - "end": 7385, - "loc": { - "start": { - "line": 207, - "column": 27 - }, - "end": { - "line": 207, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 7386, - "end": 7392, - "loc": { - "start": { - "line": 207, - "column": 31 - }, - "end": { - "line": 207, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7392, - "end": 7393, - "loc": { - "start": { - "line": 207, - "column": 37 - }, - "end": { - "line": 207, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 7393, - "end": 7395, - "loc": { - "start": { - "line": 207, - "column": 38 - }, - "end": { - "line": 207, - "column": 40 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7395, - "end": 7396, - "loc": { - "start": { - "line": 207, - "column": 40 - }, - "end": { - "line": 207, - "column": 41 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7397, - "end": 7403, - "loc": { - "start": { - "line": 207, - "column": 42 - }, - "end": { - "line": 207, - "column": 48 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7403, - "end": 7404, - "loc": { - "start": { - "line": 207, - "column": 48 - }, - "end": { - "line": 207, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 7411, - "end": 7419, - "loc": { - "start": { - "line": 208, - "column": 6 - }, - "end": { - "line": 208, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7419, - "end": 7420, - "loc": { - "start": { - "line": 208, - "column": 14 - }, - "end": { - "line": 208, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 7420, - "end": 7425, - "loc": { - "start": { - "line": 208, - "column": 15 - }, - "end": { - "line": 208, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7425, - "end": 7426, - "loc": { - "start": { - "line": 208, - "column": 20 - }, - "end": { - "line": 208, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "device", - "start": 7427, - "end": 7433, - "loc": { - "start": { - "line": 208, - "column": 22 - }, - "end": { - "line": 208, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7433, - "end": 7434, - "loc": { - "start": { - "line": 208, - "column": 28 - }, - "end": { - "line": 208, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7434, - "end": 7435, - "loc": { - "start": { - "line": 208, - "column": 29 - }, - "end": { - "line": 208, - "column": 30 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7440, - "end": 7441, - "loc": { - "start": { - "line": 209, - "column": 4 - }, - "end": { - "line": 209, - "column": 5 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7441, - "end": 7442, - "loc": { - "start": { - "line": 209, - "column": 5 - }, - "end": { - "line": 209, - "column": 6 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 7448, - "end": 7453, - "loc": { - "start": { - "line": 211, - "column": 4 - }, - "end": { - "line": 211, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 7454, - "end": 7466, - "loc": { - "start": { - "line": 211, - "column": 10 - }, - "end": { - "line": 211, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 7467, - "end": 7468, - "loc": { - "start": { - "line": 211, - "column": 23 - }, - "end": { - "line": 211, - "column": 24 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 7469, - "end": 7473, - "loc": { - "start": { - "line": 211, - "column": 25 - }, - "end": { - "line": 211, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7473, - "end": 7474, - "loc": { - "start": { - "line": 211, - "column": 29 - }, - "end": { - "line": 211, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_eventEmitter", - "start": 7474, - "end": 7487, - "loc": { - "start": { - "line": 211, - "column": 30 - }, - "end": { - "line": 211, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7487, - "end": 7488, - "loc": { - "start": { - "line": 211, - "column": 43 - }, - "end": { - "line": 211, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addListener", - "start": 7488, - "end": 7499, - "loc": { - "start": { - "line": 211, - "column": 44 - }, - "end": { - "line": 211, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7499, - "end": 7500, - "loc": { - "start": { - "line": 211, - "column": 55 - }, - "end": { - "line": 211, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 7500, - "end": 7509, - "loc": { - "start": { - "line": 211, - "column": 56 - }, - "end": { - "line": 211, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7509, - "end": 7510, - "loc": { - "start": { - "line": 211, - "column": 65 - }, - "end": { - "line": 211, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "DisconnectionEvent", - "start": 7510, - "end": 7528, - "loc": { - "start": { - "line": 211, - "column": 66 - }, - "end": { - "line": 211, - "column": 84 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7528, - "end": 7529, - "loc": { - "start": { - "line": 211, - "column": 84 - }, - "end": { - "line": 211, - "column": 85 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "disconnectionListener", - "start": 7530, - "end": 7551, - "loc": { - "start": { - "line": 211, - "column": 86 - }, - "end": { - "line": 211, - "column": 107 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7551, - "end": 7552, - "loc": { - "start": { - "line": 211, - "column": 107 - }, - "end": { - "line": 211, - "column": 108 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7552, - "end": 7553, - "loc": { - "start": { - "line": 211, - "column": 108 - }, - "end": { - "line": 211, - "column": 109 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7558, - "end": 7564, - "loc": { - "start": { - "line": 212, - "column": 4 - }, - "end": { - "line": 212, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 7565, - "end": 7577, - "loc": { - "start": { - "line": 212, - "column": 11 - }, - "end": { - "line": 212, - "column": 23 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7577, - "end": 7578, - "loc": { - "start": { - "line": 212, - "column": 23 - }, - "end": { - "line": 212, - "column": 24 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7581, - "end": 7582, - "loc": { - "start": { - "line": 213, - "column": 2 - }, - "end": { - "line": 213, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Check connection state of a device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf BleManager\n ", - "start": 7586, - "end": 7850, - "loc": { - "start": { - "line": 215, - "column": 2 - }, - "end": { - "line": 222, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 7853, - "end": 7858, - "loc": { - "start": { - "line": 223, - "column": 2 - }, - "end": { - "line": 223, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isDeviceConnected", - "start": 7859, - "end": 7876, - "loc": { - "start": { - "line": 223, - "column": 8 - }, - "end": { - "line": 223, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7876, - "end": 7877, - "loc": { - "start": { - "line": 223, - "column": 25 - }, - "end": { - "line": 223, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 7877, - "end": 7893, - "loc": { - "start": { - "line": 223, - "column": 26 - }, - "end": { - "line": 223, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7893, - "end": 7894, - "loc": { - "start": { - "line": 223, - "column": 42 - }, - "end": { - "line": 223, - "column": 43 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7895, - "end": 7896, - "loc": { - "start": { - "line": 223, - "column": 44 - }, - "end": { - "line": 223, - "column": 45 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7901, - "end": 7907, - "loc": { - "start": { - "line": 224, - "column": 4 - }, - "end": { - "line": 224, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 7908, - "end": 7917, - "loc": { - "start": { - "line": 224, - "column": 11 - }, - "end": { - "line": 224, - "column": 20 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7917, - "end": 7918, - "loc": { - "start": { - "line": 224, - "column": 20 - }, - "end": { - "line": 224, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isDeviceConnected", - "start": 7918, - "end": 7935, - "loc": { - "start": { - "line": 224, - "column": 21 - }, - "end": { - "line": 224, - "column": 38 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7935, - "end": 7936, - "loc": { - "start": { - "line": 224, - "column": 38 - }, - "end": { - "line": 224, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 7936, - "end": 7952, - "loc": { - "start": { - "line": 224, - "column": 39 - }, - "end": { - "line": 224, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7952, - "end": 7953, - "loc": { - "start": { - "line": 224, - "column": 55 - }, - "end": { - "line": 224, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7953, - "end": 7954, - "loc": { - "start": { - "line": 224, - "column": 56 - }, - "end": { - "line": 224, - "column": 57 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7957, - "end": 7958, - "loc": { - "start": { - "line": 225, - "column": 2 - }, - "end": { - "line": 225, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Discovery -------------------------------------------------------------------------------------------------", - "start": 7962, - "end": 8078, - "loc": { - "start": { - "line": 227, - "column": 2 - }, - "end": { - "line": 227, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Discovers all services and characteristics for {@link Device}.\n * \n * @param {string} identifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf BleManager\n ", - "start": 8082, - "end": 8408, - "loc": { - "start": { - "line": 229, - "column": 2 - }, - "end": { - "line": 237, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 8411, - "end": 8416, - "loc": { - "start": { - "line": 238, - "column": 2 - }, - "end": { - "line": 238, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "discoverAllServicesAndCharacteristicsForDevice", - "start": 8417, - "end": 8463, - "loc": { - "start": { - "line": 238, - "column": 8 - }, - "end": { - "line": 238, - "column": 54 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8463, - "end": 8464, - "loc": { - "start": { - "line": 238, - "column": 54 - }, - "end": { - "line": 238, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "identifier", - "start": 8464, - "end": 8474, - "loc": { - "start": { - "line": 238, - "column": 55 - }, - "end": { - "line": 238, - "column": 65 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8474, - "end": 8475, - "loc": { - "start": { - "line": 238, - "column": 65 - }, - "end": { - "line": 238, - "column": 66 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8476, - "end": 8477, - "loc": { - "start": { - "line": 238, - "column": 67 - }, - "end": { - "line": 238, - "column": 68 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 8482, - "end": 8487, - "loc": { - "start": { - "line": 239, - "column": 4 - }, - "end": { - "line": 239, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 8488, - "end": 8499, - "loc": { - "start": { - "line": 239, - "column": 10 - }, - "end": { - "line": 239, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 8500, - "end": 8501, - "loc": { - "start": { - "line": 239, - "column": 22 - }, - "end": { - "line": 239, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 8502, - "end": 8507, - "loc": { - "start": { - "line": 239, - "column": 24 - }, - "end": { - "line": 239, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 8508, - "end": 8517, - "loc": { - "start": { - "line": 239, - "column": 30 - }, - "end": { - "line": 239, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8517, - "end": 8518, - "loc": { - "start": { - "line": 239, - "column": 39 - }, - "end": { - "line": 239, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "discoverAllServicesAndCharacteristicsForDevice", - "start": 8518, - "end": 8564, - "loc": { - "start": { - "line": 239, - "column": 40 - }, - "end": { - "line": 239, - "column": 86 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8564, - "end": 8565, - "loc": { - "start": { - "line": 239, - "column": 86 - }, - "end": { - "line": 239, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "identifier", - "start": 8565, - "end": 8575, - "loc": { - "start": { - "line": 239, - "column": 87 - }, - "end": { - "line": 239, - "column": 97 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8575, - "end": 8576, - "loc": { - "start": { - "line": 239, - "column": 97 - }, - "end": { - "line": 239, - "column": 98 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8576, - "end": 8577, - "loc": { - "start": { - "line": 239, - "column": 98 - }, - "end": { - "line": 239, - "column": 99 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 8582, - "end": 8588, - "loc": { - "start": { - "line": 240, - "column": 4 - }, - "end": { - "line": 240, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 8589, - "end": 8592, - "loc": { - "start": { - "line": 240, - "column": 11 - }, - "end": { - "line": 240, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 8593, - "end": 8599, - "loc": { - "start": { - "line": 240, - "column": 15 - }, - "end": { - "line": 240, - "column": 21 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8599, - "end": 8600, - "loc": { - "start": { - "line": 240, - "column": 21 - }, - "end": { - "line": 240, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceProps", - "start": 8600, - "end": 8611, - "loc": { - "start": { - "line": 240, - "column": 22 - }, - "end": { - "line": 240, - "column": 33 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8611, - "end": 8612, - "loc": { - "start": { - "line": 240, - "column": 33 - }, - "end": { - "line": 240, - "column": 34 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 8613, - "end": 8617, - "loc": { - "start": { - "line": 240, - "column": 35 - }, - "end": { - "line": 240, - "column": 39 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8617, - "end": 8618, - "loc": { - "start": { - "line": 240, - "column": 39 - }, - "end": { - "line": 240, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8618, - "end": 8619, - "loc": { - "start": { - "line": 240, - "column": 40 - }, - "end": { - "line": 240, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8622, - "end": 8623, - "loc": { - "start": { - "line": 241, - "column": 2 - }, - "end": { - "line": 241, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Service and characteristic getters ------------------------------------------------------------------------", - "start": 8627, - "end": 8743, - "loc": { - "start": { - "line": 243, - "column": 2 - }, - "end": { - "line": 243, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered services for device.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered for a \n * {@link Device}.\n * \n * @memberOf BleManager\n ", - "start": 8747, - "end": 9045, - "loc": { - "start": { - "line": 245, - "column": 2 - }, - "end": { - "line": 253, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 9048, - "end": 9053, - "loc": { - "start": { - "line": 254, - "column": 2 - }, - "end": { - "line": 254, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "servicesForDevice", - "start": 9054, - "end": 9071, - "loc": { - "start": { - "line": 254, - "column": 8 - }, - "end": { - "line": 254, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9071, - "end": 9072, - "loc": { - "start": { - "line": 254, - "column": 25 - }, - "end": { - "line": 254, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 9072, - "end": 9088, - "loc": { - "start": { - "line": 254, - "column": 26 - }, - "end": { - "line": 254, - "column": 42 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9088, - "end": 9089, - "loc": { - "start": { - "line": 254, - "column": 42 - }, - "end": { - "line": 254, - "column": 43 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9090, - "end": 9091, - "loc": { - "start": { - "line": 254, - "column": 44 - }, - "end": { - "line": 254, - "column": 45 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 9096, - "end": 9101, - "loc": { - "start": { - "line": 255, - "column": 4 - }, - "end": { - "line": 255, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "services", - "start": 9102, - "end": 9110, - "loc": { - "start": { - "line": 255, - "column": 10 - }, - "end": { - "line": 255, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9111, - "end": 9112, - "loc": { - "start": { - "line": 255, - "column": 19 - }, - "end": { - "line": 255, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 9113, - "end": 9118, - "loc": { - "start": { - "line": 255, - "column": 21 - }, - "end": { - "line": 255, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 9119, - "end": 9128, - "loc": { - "start": { - "line": 255, - "column": 27 - }, - "end": { - "line": 255, - "column": 36 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9128, - "end": 9129, - "loc": { - "start": { - "line": 255, - "column": 36 - }, - "end": { - "line": 255, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "servicesForDevice", - "start": 9129, - "end": 9146, - "loc": { - "start": { - "line": 255, - "column": 37 - }, - "end": { - "line": 255, - "column": 54 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9146, - "end": 9147, - "loc": { - "start": { - "line": 255, - "column": 54 - }, - "end": { - "line": 255, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 9147, - "end": 9163, - "loc": { - "start": { - "line": 255, - "column": 55 - }, - "end": { - "line": 255, - "column": 71 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9163, - "end": 9164, - "loc": { - "start": { - "line": 255, - "column": 71 - }, - "end": { - "line": 255, - "column": 72 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9164, - "end": 9165, - "loc": { - "start": { - "line": 255, - "column": 72 - }, - "end": { - "line": 255, - "column": 73 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 9170, - "end": 9176, - "loc": { - "start": { - "line": 256, - "column": 4 - }, - "end": { - "line": 256, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "services", - "start": 9177, - "end": 9185, - "loc": { - "start": { - "line": 256, - "column": 11 - }, - "end": { - "line": 256, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9185, - "end": 9186, - "loc": { - "start": { - "line": 256, - "column": 19 - }, - "end": { - "line": 256, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "map", - "start": 9186, - "end": 9189, - "loc": { - "start": { - "line": 256, - "column": 20 - }, - "end": { - "line": 256, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9189, - "end": 9190, - "loc": { - "start": { - "line": 256, - "column": 23 - }, - "end": { - "line": 256, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceProps", - "start": 9190, - "end": 9202, - "loc": { - "start": { - "line": 256, - "column": 24 - }, - "end": { - "line": 256, - "column": 36 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9203, - "end": 9205, - "loc": { - "start": { - "line": 256, - "column": 37 - }, - "end": { - "line": 256, - "column": 39 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9206, - "end": 9207, - "loc": { - "start": { - "line": 256, - "column": 40 - }, - "end": { - "line": 256, - "column": 41 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 9214, - "end": 9220, - "loc": { - "start": { - "line": 257, - "column": 6 - }, - "end": { - "line": 257, - "column": 12 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 9221, - "end": 9224, - "loc": { - "start": { - "line": 257, - "column": 13 - }, - "end": { - "line": 257, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Service", - "start": 9225, - "end": 9232, - "loc": { - "start": { - "line": 257, - "column": 17 - }, - "end": { - "line": 257, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9232, - "end": 9233, - "loc": { - "start": { - "line": 257, - "column": 24 - }, - "end": { - "line": 257, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceProps", - "start": 9233, - "end": 9245, - "loc": { - "start": { - "line": 257, - "column": 25 - }, - "end": { - "line": 257, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9245, - "end": 9246, - "loc": { - "start": { - "line": 257, - "column": 37 - }, - "end": { - "line": 257, - "column": 38 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 9247, - "end": 9251, - "loc": { - "start": { - "line": 257, - "column": 39 - }, - "end": { - "line": 257, - "column": 43 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9251, - "end": 9252, - "loc": { - "start": { - "line": 257, - "column": 43 - }, - "end": { - "line": 257, - "column": 44 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9252, - "end": 9253, - "loc": { - "start": { - "line": 257, - "column": 44 - }, - "end": { - "line": 257, - "column": 45 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9258, - "end": 9259, - "loc": { - "start": { - "line": 258, - "column": 4 - }, - "end": { - "line": 258, - "column": 5 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9259, - "end": 9260, - "loc": { - "start": { - "line": 258, - "column": 5 - }, - "end": { - "line": 258, - "column": 6 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9260, - "end": 9261, - "loc": { - "start": { - "line": 258, - "column": 6 - }, - "end": { - "line": 258, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9264, - "end": 9265, - "loc": { - "start": { - "line": 259, - "column": 2 - }, - "end": { - "line": 259, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * List of discovered characteristics for given {@link Device} and {@link Service}.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf BleManager\n ", - "start": 9269, - "end": 9708, - "loc": { - "start": { - "line": 261, - "column": 2 - }, - "end": { - "line": 270, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 9711, - "end": 9716, - "loc": { - "start": { - "line": 271, - "column": 2 - }, - "end": { - "line": 271, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicsForDevice", - "start": 9717, - "end": 9741, - "loc": { - "start": { - "line": 271, - "column": 8 - }, - "end": { - "line": 271, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9741, - "end": 9742, - "loc": { - "start": { - "line": 271, - "column": 32 - }, - "end": { - "line": 271, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 9742, - "end": 9758, - "loc": { - "start": { - "line": 271, - "column": 33 - }, - "end": { - "line": 271, - "column": 49 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9758, - "end": 9759, - "loc": { - "start": { - "line": 271, - "column": 49 - }, - "end": { - "line": 271, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 9760, - "end": 9771, - "loc": { - "start": { - "line": 271, - "column": 51 - }, - "end": { - "line": 271, - "column": 62 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9771, - "end": 9772, - "loc": { - "start": { - "line": 271, - "column": 62 - }, - "end": { - "line": 271, - "column": 63 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9773, - "end": 9774, - "loc": { - "start": { - "line": 271, - "column": 64 - }, - "end": { - "line": 271, - "column": 65 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 9779, - "end": 9784, - "loc": { - "start": { - "line": 272, - "column": 4 - }, - "end": { - "line": 272, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristics", - "start": 9785, - "end": 9800, - "loc": { - "start": { - "line": 272, - "column": 10 - }, - "end": { - "line": 272, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 9801, - "end": 9802, - "loc": { - "start": { - "line": 272, - "column": 26 - }, - "end": { - "line": 272, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 9803, - "end": 9808, - "loc": { - "start": { - "line": 272, - "column": 28 - }, - "end": { - "line": 272, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 9809, - "end": 9818, - "loc": { - "start": { - "line": 272, - "column": 34 - }, - "end": { - "line": 272, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9818, - "end": 9819, - "loc": { - "start": { - "line": 272, - "column": 43 - }, - "end": { - "line": 272, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicsForDevice", - "start": 9819, - "end": 9843, - "loc": { - "start": { - "line": 272, - "column": 44 - }, - "end": { - "line": 272, - "column": 68 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9843, - "end": 9844, - "loc": { - "start": { - "line": 272, - "column": 68 - }, - "end": { - "line": 272, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 9844, - "end": 9860, - "loc": { - "start": { - "line": 272, - "column": 69 - }, - "end": { - "line": 272, - "column": 85 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9860, - "end": 9861, - "loc": { - "start": { - "line": 272, - "column": 85 - }, - "end": { - "line": 272, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 9862, - "end": 9873, - "loc": { - "start": { - "line": 272, - "column": 87 - }, - "end": { - "line": 272, - "column": 98 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9873, - "end": 9874, - "loc": { - "start": { - "line": 272, - "column": 98 - }, - "end": { - "line": 272, - "column": 99 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9874, - "end": 9875, - "loc": { - "start": { - "line": 272, - "column": 99 - }, - "end": { - "line": 272, - "column": 100 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 9880, - "end": 9886, - "loc": { - "start": { - "line": 273, - "column": 4 - }, - "end": { - "line": 273, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristics", - "start": 9887, - "end": 9902, - "loc": { - "start": { - "line": 273, - "column": 11 - }, - "end": { - "line": 273, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9902, - "end": 9903, - "loc": { - "start": { - "line": 273, - "column": 26 - }, - "end": { - "line": 273, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "map", - "start": 9903, - "end": 9906, - "loc": { - "start": { - "line": 273, - "column": 27 - }, - "end": { - "line": 273, - "column": 30 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9906, - "end": 9907, - "loc": { - "start": { - "line": 273, - "column": 30 - }, - "end": { - "line": 273, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 9907, - "end": 9926, - "loc": { - "start": { - "line": 273, - "column": 31 - }, - "end": { - "line": 273, - "column": 50 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9927, - "end": 9929, - "loc": { - "start": { - "line": 273, - "column": 51 - }, - "end": { - "line": 273, - "column": 53 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9930, - "end": 9931, - "loc": { - "start": { - "line": 273, - "column": 54 - }, - "end": { - "line": 273, - "column": 55 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 9938, - "end": 9944, - "loc": { - "start": { - "line": 274, - "column": 6 - }, - "end": { - "line": 274, - "column": 12 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 9945, - "end": 9948, - "loc": { - "start": { - "line": 274, - "column": 13 - }, - "end": { - "line": 274, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 9949, - "end": 9963, - "loc": { - "start": { - "line": 274, - "column": 17 - }, - "end": { - "line": 274, - "column": 31 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9963, - "end": 9964, - "loc": { - "start": { - "line": 274, - "column": 31 - }, - "end": { - "line": 274, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 9964, - "end": 9983, - "loc": { - "start": { - "line": 274, - "column": 32 - }, - "end": { - "line": 274, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9983, - "end": 9984, - "loc": { - "start": { - "line": 274, - "column": 51 - }, - "end": { - "line": 274, - "column": 52 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 9985, - "end": 9989, - "loc": { - "start": { - "line": 274, - "column": 53 - }, - "end": { - "line": 274, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9989, - "end": 9990, - "loc": { - "start": { - "line": 274, - "column": 57 - }, - "end": { - "line": 274, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9990, - "end": 9991, - "loc": { - "start": { - "line": 274, - "column": 58 - }, - "end": { - "line": 274, - "column": 59 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9996, - "end": 9997, - "loc": { - "start": { - "line": 275, - "column": 4 - }, - "end": { - "line": 275, - "column": 5 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 9997, - "end": 9998, - "loc": { - "start": { - "line": 275, - "column": 5 - }, - "end": { - "line": 275, - "column": 6 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 9998, - "end": 9999, - "loc": { - "start": { - "line": 275, - "column": 6 - }, - "end": { - "line": 275, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10002, - "end": 10003, - "loc": { - "start": { - "line": 276, - "column": 2 - }, - "end": { - "line": 276, - "column": 3 - } - } - }, - { - "type": "CommentLine", - "value": " Mark: Characteristics operations --------------------------------------------------------------------------------", - "start": 10007, - "end": 10123, - "loc": { - "start": { - "line": 278, - "column": 2 - }, - "end": { - "line": 278, - "column": 118 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Read characteristic value.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 10127, - "end": 10734, - "loc": { - "start": { - "line": 280, - "column": 2 - }, - "end": { - "line": 291, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 10737, - "end": 10742, - "loc": { - "start": { - "line": 292, - "column": 2 - }, - "end": { - "line": 292, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForDevice", - "start": 10743, - "end": 10770, - "loc": { - "start": { - "line": 292, - "column": 8 - }, - "end": { - "line": 292, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10770, - "end": 10771, - "loc": { - "start": { - "line": 292, - "column": 35 - }, - "end": { - "line": 292, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 10771, - "end": 10787, - "loc": { - "start": { - "line": 292, - "column": 36 - }, - "end": { - "line": 292, - "column": 52 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10787, - "end": 10788, - "loc": { - "start": { - "line": 292, - "column": 52 - }, - "end": { - "line": 292, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 10789, - "end": 10800, - "loc": { - "start": { - "line": 292, - "column": 54 - }, - "end": { - "line": 292, - "column": 65 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10800, - "end": 10801, - "loc": { - "start": { - "line": 292, - "column": 65 - }, - "end": { - "line": 292, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 10802, - "end": 10820, - "loc": { - "start": { - "line": 292, - "column": 67 - }, - "end": { - "line": 292, - "column": 85 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10820, - "end": 10821, - "loc": { - "start": { - "line": 292, - "column": 85 - }, - "end": { - "line": 292, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 10822, - "end": 10835, - "loc": { - "start": { - "line": 292, - "column": 87 - }, - "end": { - "line": 292, - "column": 100 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10835, - "end": 10836, - "loc": { - "start": { - "line": 292, - "column": 100 - }, - "end": { - "line": 292, - "column": 101 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10837, - "end": 10838, - "loc": { - "start": { - "line": 292, - "column": 102 - }, - "end": { - "line": 292, - "column": 103 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 10843, - "end": 10845, - "loc": { - "start": { - "line": 293, - "column": 4 - }, - "end": { - "line": 293, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10846, - "end": 10847, - "loc": { - "start": { - "line": 293, - "column": 7 - }, - "end": { - "line": 293, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 10847, - "end": 10848, - "loc": { - "start": { - "line": 293, - "column": 8 - }, - "end": { - "line": 293, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 10848, - "end": 10861, - "loc": { - "start": { - "line": 293, - "column": 9 - }, - "end": { - "line": 293, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10861, - "end": 10862, - "loc": { - "start": { - "line": 293, - "column": 22 - }, - "end": { - "line": 293, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10863, - "end": 10864, - "loc": { - "start": { - "line": 293, - "column": 24 - }, - "end": { - "line": 293, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 10871, - "end": 10884, - "loc": { - "start": { - "line": 294, - "column": 6 - }, - "end": { - "line": 294, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10885, - "end": 10886, - "loc": { - "start": { - "line": 294, - "column": 20 - }, - "end": { - "line": 294, - "column": 21 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 10887, - "end": 10891, - "loc": { - "start": { - "line": 294, - "column": 22 - }, - "end": { - "line": 294, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10891, - "end": 10892, - "loc": { - "start": { - "line": 294, - "column": 26 - }, - "end": { - "line": 294, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_nextUniqueID", - "start": 10892, - "end": 10905, - "loc": { - "start": { - "line": 294, - "column": 27 - }, - "end": { - "line": 294, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10905, - "end": 10906, - "loc": { - "start": { - "line": 294, - "column": 40 - }, - "end": { - "line": 294, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10906, - "end": 10907, - "loc": { - "start": { - "line": 294, - "column": 41 - }, - "end": { - "line": 294, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10907, - "end": 10908, - "loc": { - "start": { - "line": 294, - "column": 42 - }, - "end": { - "line": 294, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10913, - "end": 10914, - "loc": { - "start": { - "line": 295, - "column": 4 - }, - "end": { - "line": 295, - "column": 5 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 10920, - "end": 10925, - "loc": { - "start": { - "line": 297, - "column": 4 - }, - "end": { - "line": 297, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 10926, - "end": 10945, - "loc": { - "start": { - "line": 297, - "column": 10 - }, - "end": { - "line": 297, - "column": 29 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 10946, - "end": 10947, - "loc": { - "start": { - "line": 297, - "column": 30 - }, - "end": { - "line": 297, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 10948, - "end": 10953, - "loc": { - "start": { - "line": 297, - "column": 32 - }, - "end": { - "line": 297, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 10954, - "end": 10963, - "loc": { - "start": { - "line": 297, - "column": 38 - }, - "end": { - "line": 297, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 10963, - "end": 10964, - "loc": { - "start": { - "line": 297, - "column": 47 - }, - "end": { - "line": 297, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForDevice", - "start": 10964, - "end": 10991, - "loc": { - "start": { - "line": 297, - "column": 48 - }, - "end": { - "line": 297, - "column": 75 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 10991, - "end": 10992, - "loc": { - "start": { - "line": 297, - "column": 75 - }, - "end": { - "line": 297, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 10992, - "end": 11008, - "loc": { - "start": { - "line": 297, - "column": 76 - }, - "end": { - "line": 297, - "column": 92 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11008, - "end": 11009, - "loc": { - "start": { - "line": 297, - "column": 92 - }, - "end": { - "line": 297, - "column": 93 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 11010, - "end": 11021, - "loc": { - "start": { - "line": 297, - "column": 94 - }, - "end": { - "line": 297, - "column": 105 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11021, - "end": 11022, - "loc": { - "start": { - "line": 297, - "column": 105 - }, - "end": { - "line": 297, - "column": 106 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 11023, - "end": 11041, - "loc": { - "start": { - "line": 297, - "column": 107 - }, - "end": { - "line": 297, - "column": 125 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11041, - "end": 11042, - "loc": { - "start": { - "line": 297, - "column": 125 - }, - "end": { - "line": 297, - "column": 126 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 11043, - "end": 11056, - "loc": { - "start": { - "line": 297, - "column": 127 - }, - "end": { - "line": 297, - "column": 140 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11056, - "end": 11057, - "loc": { - "start": { - "line": 297, - "column": 140 - }, - "end": { - "line": 297, - "column": 141 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11057, - "end": 11058, - "loc": { - "start": { - "line": 297, - "column": 141 - }, - "end": { - "line": 297, - "column": 142 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 11063, - "end": 11069, - "loc": { - "start": { - "line": 298, - "column": 4 - }, - "end": { - "line": 298, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 11070, - "end": 11073, - "loc": { - "start": { - "line": 298, - "column": 11 - }, - "end": { - "line": 298, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 11074, - "end": 11088, - "loc": { - "start": { - "line": 298, - "column": 15 - }, - "end": { - "line": 298, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11088, - "end": 11089, - "loc": { - "start": { - "line": 298, - "column": 29 - }, - "end": { - "line": 298, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 11089, - "end": 11108, - "loc": { - "start": { - "line": 298, - "column": 30 - }, - "end": { - "line": 298, - "column": 49 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11108, - "end": 11109, - "loc": { - "start": { - "line": 298, - "column": 49 - }, - "end": { - "line": 298, - "column": 50 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 11110, - "end": 11114, - "loc": { - "start": { - "line": 298, - "column": 51 - }, - "end": { - "line": 298, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11114, - "end": 11115, - "loc": { - "start": { - "line": 298, - "column": 55 - }, - "end": { - "line": 298, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11115, - "end": 11116, - "loc": { - "start": { - "line": 298, - "column": 56 - }, - "end": { - "line": 298, - "column": 57 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11119, - "end": 11120, - "loc": { - "start": { - "line": 299, - "column": 2 - }, - "end": { - "line": 299, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value with response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 11124, - "end": 11800, - "loc": { - "start": { - "line": 301, - "column": 2 - }, - "end": { - "line": 313, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 11803, - "end": 11808, - "loc": { - "start": { - "line": 314, - "column": 2 - }, - "end": { - "line": 314, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponseForDevice", - "start": 11809, - "end": 11849, - "loc": { - "start": { - "line": 314, - "column": 8 - }, - "end": { - "line": 314, - "column": 48 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11849, - "end": 11850, - "loc": { - "start": { - "line": 314, - "column": 48 - }, - "end": { - "line": 314, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 11850, - "end": 11866, - "loc": { - "start": { - "line": 314, - "column": 49 - }, - "end": { - "line": 314, - "column": 65 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11866, - "end": 11867, - "loc": { - "start": { - "line": 314, - "column": 65 - }, - "end": { - "line": 314, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 11868, - "end": 11879, - "loc": { - "start": { - "line": 314, - "column": 67 - }, - "end": { - "line": 314, - "column": 78 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11879, - "end": 11880, - "loc": { - "start": { - "line": 314, - "column": 78 - }, - "end": { - "line": 314, - "column": 79 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 11881, - "end": 11899, - "loc": { - "start": { - "line": 314, - "column": 80 - }, - "end": { - "line": 314, - "column": 98 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11899, - "end": 11900, - "loc": { - "start": { - "line": 314, - "column": 98 - }, - "end": { - "line": 314, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "base64Value", - "start": 11901, - "end": 11912, - "loc": { - "start": { - "line": 314, - "column": 100 - }, - "end": { - "line": 314, - "column": 111 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11912, - "end": 11913, - "loc": { - "start": { - "line": 314, - "column": 111 - }, - "end": { - "line": 314, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 11914, - "end": 11927, - "loc": { - "start": { - "line": 314, - "column": 113 - }, - "end": { - "line": 314, - "column": 126 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11927, - "end": 11928, - "loc": { - "start": { - "line": 314, - "column": 126 - }, - "end": { - "line": 314, - "column": 127 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11929, - "end": 11930, - "loc": { - "start": { - "line": 314, - "column": 128 - }, - "end": { - "line": 314, - "column": 129 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 11935, - "end": 11937, - "loc": { - "start": { - "line": 315, - "column": 4 - }, - "end": { - "line": 315, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11938, - "end": 11939, - "loc": { - "start": { - "line": 315, - "column": 7 - }, - "end": { - "line": 315, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 11939, - "end": 11940, - "loc": { - "start": { - "line": 315, - "column": 8 - }, - "end": { - "line": 315, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 11940, - "end": 11953, - "loc": { - "start": { - "line": 315, - "column": 9 - }, - "end": { - "line": 315, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11953, - "end": 11954, - "loc": { - "start": { - "line": 315, - "column": 22 - }, - "end": { - "line": 315, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11955, - "end": 11956, - "loc": { - "start": { - "line": 315, - "column": 24 - }, - "end": { - "line": 315, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 11963, - "end": 11976, - "loc": { - "start": { - "line": 316, - "column": 6 - }, - "end": { - "line": 316, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 11977, - "end": 11978, - "loc": { - "start": { - "line": 316, - "column": 20 - }, - "end": { - "line": 316, - "column": 21 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 11979, - "end": 11983, - "loc": { - "start": { - "line": 316, - "column": 22 - }, - "end": { - "line": 316, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11983, - "end": 11984, - "loc": { - "start": { - "line": 316, - "column": 26 - }, - "end": { - "line": 316, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_nextUniqueID", - "start": 11984, - "end": 11997, - "loc": { - "start": { - "line": 316, - "column": 27 - }, - "end": { - "line": 316, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11997, - "end": 11998, - "loc": { - "start": { - "line": 316, - "column": 40 - }, - "end": { - "line": 316, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 11998, - "end": 11999, - "loc": { - "start": { - "line": 316, - "column": 41 - }, - "end": { - "line": 316, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 11999, - "end": 12000, - "loc": { - "start": { - "line": 316, - "column": 42 - }, - "end": { - "line": 316, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12005, - "end": 12006, - "loc": { - "start": { - "line": 317, - "column": 4 - }, - "end": { - "line": 317, - "column": 5 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 12012, - "end": 12017, - "loc": { - "start": { - "line": 319, - "column": 4 - }, - "end": { - "line": 319, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 12018, - "end": 12037, - "loc": { - "start": { - "line": 319, - "column": 10 - }, - "end": { - "line": 319, - "column": 29 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 12038, - "end": 12039, - "loc": { - "start": { - "line": 319, - "column": 30 - }, - "end": { - "line": 319, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 12040, - "end": 12045, - "loc": { - "start": { - "line": 319, - "column": 32 - }, - "end": { - "line": 319, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 12046, - "end": 12055, - "loc": { - "start": { - "line": 319, - "column": 38 - }, - "end": { - "line": 319, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12055, - "end": 12056, - "loc": { - "start": { - "line": 319, - "column": 47 - }, - "end": { - "line": 319, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicForDevice", - "start": 12056, - "end": 12084, - "loc": { - "start": { - "line": 319, - "column": 48 - }, - "end": { - "line": 319, - "column": 76 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12084, - "end": 12085, - "loc": { - "start": { - "line": 319, - "column": 76 - }, - "end": { - "line": 319, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 12085, - "end": 12101, - "loc": { - "start": { - "line": 319, - "column": 77 - }, - "end": { - "line": 319, - "column": 93 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12101, - "end": 12102, - "loc": { - "start": { - "line": 319, - "column": 93 - }, - "end": { - "line": 319, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 12103, - "end": 12114, - "loc": { - "start": { - "line": 319, - "column": 95 - }, - "end": { - "line": 319, - "column": 106 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12114, - "end": 12115, - "loc": { - "start": { - "line": 319, - "column": 106 - }, - "end": { - "line": 319, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 12116, - "end": 12134, - "loc": { - "start": { - "line": 319, - "column": 108 - }, - "end": { - "line": 319, - "column": 126 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12134, - "end": 12135, - "loc": { - "start": { - "line": 319, - "column": 126 - }, - "end": { - "line": 319, - "column": 127 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "base64Value", - "start": 12136, - "end": 12147, - "loc": { - "start": { - "line": 319, - "column": 128 - }, - "end": { - "line": 319, - "column": 139 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12147, - "end": 12148, - "loc": { - "start": { - "line": 319, - "column": 139 - }, - "end": { - "line": 319, - "column": 140 - } - } - }, - { - "type": { - "label": "true", - "keyword": "true", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "true", - "start": 12149, - "end": 12153, - "loc": { - "start": { - "line": 319, - "column": 141 - }, - "end": { - "line": 319, - "column": 145 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12153, - "end": 12154, - "loc": { - "start": { - "line": 319, - "column": 145 - }, - "end": { - "line": 319, - "column": 146 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 12155, - "end": 12168, - "loc": { - "start": { - "line": 319, - "column": 147 - }, - "end": { - "line": 319, - "column": 160 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12168, - "end": 12169, - "loc": { - "start": { - "line": 319, - "column": 160 - }, - "end": { - "line": 319, - "column": 161 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12169, - "end": 12170, - "loc": { - "start": { - "line": 319, - "column": 161 - }, - "end": { - "line": 319, - "column": 162 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 12175, - "end": 12181, - "loc": { - "start": { - "line": 320, - "column": 4 - }, - "end": { - "line": 320, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 12182, - "end": 12185, - "loc": { - "start": { - "line": 320, - "column": 11 - }, - "end": { - "line": 320, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 12186, - "end": 12200, - "loc": { - "start": { - "line": 320, - "column": 15 - }, - "end": { - "line": 320, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12200, - "end": 12201, - "loc": { - "start": { - "line": 320, - "column": 29 - }, - "end": { - "line": 320, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 12201, - "end": 12220, - "loc": { - "start": { - "line": 320, - "column": 30 - }, - "end": { - "line": 320, - "column": 49 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12220, - "end": 12221, - "loc": { - "start": { - "line": 320, - "column": 49 - }, - "end": { - "line": 320, - "column": 50 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 12222, - "end": 12226, - "loc": { - "start": { - "line": 320, - "column": 51 - }, - "end": { - "line": 320, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12226, - "end": 12227, - "loc": { - "start": { - "line": 320, - "column": 55 - }, - "end": { - "line": 320, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12227, - "end": 12228, - "loc": { - "start": { - "line": 320, - "column": 56 - }, - "end": { - "line": 320, - "column": 57 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12231, - "end": 12232, - "loc": { - "start": { - "line": 321, - "column": 2 - }, - "end": { - "line": 321, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Write characteristic value without response.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} base64Value - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf BleManager\n ", - "start": 12236, - "end": 12915, - "loc": { - "start": { - "line": 323, - "column": 2 - }, - "end": { - "line": 335, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 12918, - "end": 12923, - "loc": { - "start": { - "line": 336, - "column": 2 - }, - "end": { - "line": 336, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponseForDevice", - "start": 12924, - "end": 12967, - "loc": { - "start": { - "line": 336, - "column": 8 - }, - "end": { - "line": 336, - "column": 51 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 12967, - "end": 12968, - "loc": { - "start": { - "line": 336, - "column": 51 - }, - "end": { - "line": 336, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 12968, - "end": 12984, - "loc": { - "start": { - "line": 336, - "column": 52 - }, - "end": { - "line": 336, - "column": 68 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12984, - "end": 12985, - "loc": { - "start": { - "line": 336, - "column": 68 - }, - "end": { - "line": 336, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 12986, - "end": 12997, - "loc": { - "start": { - "line": 336, - "column": 70 - }, - "end": { - "line": 336, - "column": 81 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12997, - "end": 12998, - "loc": { - "start": { - "line": 336, - "column": 81 - }, - "end": { - "line": 336, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 12999, - "end": 13017, - "loc": { - "start": { - "line": 336, - "column": 83 - }, - "end": { - "line": 336, - "column": 101 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13017, - "end": 13018, - "loc": { - "start": { - "line": 336, - "column": 101 - }, - "end": { - "line": 336, - "column": 102 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "base64Value", - "start": 13019, - "end": 13030, - "loc": { - "start": { - "line": 336, - "column": 103 - }, - "end": { - "line": 336, - "column": 114 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13030, - "end": 13031, - "loc": { - "start": { - "line": 336, - "column": 114 - }, - "end": { - "line": 336, - "column": 115 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 13032, - "end": 13045, - "loc": { - "start": { - "line": 336, - "column": 116 - }, - "end": { - "line": 336, - "column": 129 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13045, - "end": 13046, - "loc": { - "start": { - "line": 336, - "column": 129 - }, - "end": { - "line": 336, - "column": 130 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13047, - "end": 13048, - "loc": { - "start": { - "line": 336, - "column": 131 - }, - "end": { - "line": 336, - "column": 132 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 13053, - "end": 13055, - "loc": { - "start": { - "line": 337, - "column": 4 - }, - "end": { - "line": 337, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13056, - "end": 13057, - "loc": { - "start": { - "line": 337, - "column": 7 - }, - "end": { - "line": 337, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 13057, - "end": 13058, - "loc": { - "start": { - "line": 337, - "column": 8 - }, - "end": { - "line": 337, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 13058, - "end": 13071, - "loc": { - "start": { - "line": 337, - "column": 9 - }, - "end": { - "line": 337, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13071, - "end": 13072, - "loc": { - "start": { - "line": 337, - "column": 22 - }, - "end": { - "line": 337, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13073, - "end": 13074, - "loc": { - "start": { - "line": 337, - "column": 24 - }, - "end": { - "line": 337, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 13081, - "end": 13094, - "loc": { - "start": { - "line": 338, - "column": 6 - }, - "end": { - "line": 338, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 13095, - "end": 13096, - "loc": { - "start": { - "line": 338, - "column": 20 - }, - "end": { - "line": 338, - "column": 21 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 13097, - "end": 13101, - "loc": { - "start": { - "line": 338, - "column": 22 - }, - "end": { - "line": 338, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13101, - "end": 13102, - "loc": { - "start": { - "line": 338, - "column": 26 - }, - "end": { - "line": 338, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_nextUniqueID", - "start": 13102, - "end": 13115, - "loc": { - "start": { - "line": 338, - "column": 27 - }, - "end": { - "line": 338, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13115, - "end": 13116, - "loc": { - "start": { - "line": 338, - "column": 40 - }, - "end": { - "line": 338, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13116, - "end": 13117, - "loc": { - "start": { - "line": 338, - "column": 41 - }, - "end": { - "line": 338, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13117, - "end": 13118, - "loc": { - "start": { - "line": 338, - "column": 42 - }, - "end": { - "line": 338, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13123, - "end": 13124, - "loc": { - "start": { - "line": 339, - "column": 4 - }, - "end": { - "line": 339, - "column": 5 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 13130, - "end": 13135, - "loc": { - "start": { - "line": 341, - "column": 4 - }, - "end": { - "line": 341, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 13136, - "end": 13155, - "loc": { - "start": { - "line": 341, - "column": 10 - }, - "end": { - "line": 341, - "column": 29 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 13156, - "end": 13157, - "loc": { - "start": { - "line": 341, - "column": 30 - }, - "end": { - "line": 341, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "await", - "start": 13158, - "end": 13163, - "loc": { - "start": { - "line": 341, - "column": 32 - }, - "end": { - "line": 341, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 13164, - "end": 13173, - "loc": { - "start": { - "line": 341, - "column": 38 - }, - "end": { - "line": 341, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13173, - "end": 13174, - "loc": { - "start": { - "line": 341, - "column": 47 - }, - "end": { - "line": 341, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicForDevice", - "start": 13174, - "end": 13202, - "loc": { - "start": { - "line": 341, - "column": 48 - }, - "end": { - "line": 341, - "column": 76 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13202, - "end": 13203, - "loc": { - "start": { - "line": 341, - "column": 76 - }, - "end": { - "line": 341, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 13203, - "end": 13219, - "loc": { - "start": { - "line": 341, - "column": 77 - }, - "end": { - "line": 341, - "column": 93 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13219, - "end": 13220, - "loc": { - "start": { - "line": 341, - "column": 93 - }, - "end": { - "line": 341, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 13221, - "end": 13232, - "loc": { - "start": { - "line": 341, - "column": 95 - }, - "end": { - "line": 341, - "column": 106 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13232, - "end": 13233, - "loc": { - "start": { - "line": 341, - "column": 106 - }, - "end": { - "line": 341, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 13234, - "end": 13252, - "loc": { - "start": { - "line": 341, - "column": 108 - }, - "end": { - "line": 341, - "column": 126 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13252, - "end": 13253, - "loc": { - "start": { - "line": 341, - "column": 126 - }, - "end": { - "line": 341, - "column": 127 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "base64Value", - "start": 13254, - "end": 13265, - "loc": { - "start": { - "line": 341, - "column": 128 - }, - "end": { - "line": 341, - "column": 139 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13265, - "end": 13266, - "loc": { - "start": { - "line": 341, - "column": 139 - }, - "end": { - "line": 341, - "column": 140 - } - } - }, - { - "type": { - "label": "false", - "keyword": "false", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "false", - "start": 13267, - "end": 13272, - "loc": { - "start": { - "line": 341, - "column": 141 - }, - "end": { - "line": 341, - "column": 146 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13272, - "end": 13273, - "loc": { - "start": { - "line": 341, - "column": 146 - }, - "end": { - "line": 341, - "column": 147 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 13274, - "end": 13287, - "loc": { - "start": { - "line": 341, - "column": 148 - }, - "end": { - "line": 341, - "column": 161 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13287, - "end": 13288, - "loc": { - "start": { - "line": 341, - "column": 161 - }, - "end": { - "line": 341, - "column": 162 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13288, - "end": 13289, - "loc": { - "start": { - "line": 341, - "column": 162 - }, - "end": { - "line": 341, - "column": 163 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 13294, - "end": 13300, - "loc": { - "start": { - "line": 342, - "column": 4 - }, - "end": { - "line": 342, - "column": 10 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 13301, - "end": 13304, - "loc": { - "start": { - "line": 342, - "column": 11 - }, - "end": { - "line": 342, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 13305, - "end": 13319, - "loc": { - "start": { - "line": 342, - "column": 15 - }, - "end": { - "line": 342, - "column": 29 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13319, - "end": 13320, - "loc": { - "start": { - "line": 342, - "column": 29 - }, - "end": { - "line": 342, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicProps", - "start": 13320, - "end": 13339, - "loc": { - "start": { - "line": 342, - "column": 30 - }, - "end": { - "line": 342, - "column": 49 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13339, - "end": 13340, - "loc": { - "start": { - "line": 342, - "column": 49 - }, - "end": { - "line": 342, - "column": 50 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 13341, - "end": 13345, - "loc": { - "start": { - "line": 342, - "column": 51 - }, - "end": { - "line": 342, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13345, - "end": 13346, - "loc": { - "start": { - "line": 342, - "column": 55 - }, - "end": { - "line": 342, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 13346, - "end": 13347, - "loc": { - "start": { - "line": 342, - "column": 56 - }, - "end": { - "line": 342, - "column": 57 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 13350, - "end": 13351, - "loc": { - "start": { - "line": 343, - "column": 2 - }, - "end": { - "line": 343, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Monitor value changes of a characteristic. If notifications are enabled they will be used\n * in favour of indications.\n * \n * @param {string} deviceIdentifier - {@link Device} identifier.\n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf BleManager\n ", - "start": 13355, - "end": 14127, - "loc": { - "start": { - "line": 345, - "column": 2 - }, - "end": { - "line": 358, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForDevice", - "start": 14130, - "end": 14160, - "loc": { - "start": { - "line": 359, - "column": 2 - }, - "end": { - "line": 359, - "column": 32 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14160, - "end": 14161, - "loc": { - "start": { - "line": 359, - "column": 32 - }, - "end": { - "line": 359, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 14161, - "end": 14177, - "loc": { - "start": { - "line": 359, - "column": 33 - }, - "end": { - "line": 359, - "column": 49 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14177, - "end": 14178, - "loc": { - "start": { - "line": 359, - "column": 49 - }, - "end": { - "line": 359, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 14179, - "end": 14190, - "loc": { - "start": { - "line": 359, - "column": 51 - }, - "end": { - "line": 359, - "column": 62 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14190, - "end": 14191, - "loc": { - "start": { - "line": 359, - "column": 62 - }, - "end": { - "line": 359, - "column": 63 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 14192, - "end": 14210, - "loc": { - "start": { - "line": 359, - "column": 64 - }, - "end": { - "line": 359, - "column": 82 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14210, - "end": 14211, - "loc": { - "start": { - "line": 359, - "column": 82 - }, - "end": { - "line": 359, - "column": 83 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 14212, - "end": 14220, - "loc": { - "start": { - "line": 359, - "column": 84 - }, - "end": { - "line": 359, - "column": 92 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14220, - "end": 14221, - "loc": { - "start": { - "line": 359, - "column": 92 - }, - "end": { - "line": 359, - "column": 93 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 14222, - "end": 14235, - "loc": { - "start": { - "line": 359, - "column": 94 - }, - "end": { - "line": 359, - "column": 107 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14235, - "end": 14236, - "loc": { - "start": { - "line": 359, - "column": 107 - }, - "end": { - "line": 359, - "column": 108 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14237, - "end": 14238, - "loc": { - "start": { - "line": 359, - "column": 109 - }, - "end": { - "line": 359, - "column": 110 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 14243, - "end": 14245, - "loc": { - "start": { - "line": 360, - "column": 4 - }, - "end": { - "line": 360, - "column": 6 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14246, - "end": 14247, - "loc": { - "start": { - "line": 360, - "column": 7 - }, - "end": { - "line": 360, - "column": 8 - } - } - }, - { - "type": { - "label": "prefix", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "!", - "start": 14247, - "end": 14248, - "loc": { - "start": { - "line": 360, - "column": 8 - }, - "end": { - "line": 360, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 14248, - "end": 14261, - "loc": { - "start": { - "line": 360, - "column": 9 - }, - "end": { - "line": 360, - "column": 22 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14261, - "end": 14262, - "loc": { - "start": { - "line": 360, - "column": 22 - }, - "end": { - "line": 360, - "column": 23 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14263, - "end": 14264, - "loc": { - "start": { - "line": 360, - "column": 24 - }, - "end": { - "line": 360, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 14271, - "end": 14284, - "loc": { - "start": { - "line": 361, - "column": 6 - }, - "end": { - "line": 361, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14285, - "end": 14286, - "loc": { - "start": { - "line": 361, - "column": 20 - }, - "end": { - "line": 361, - "column": 21 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 14287, - "end": 14291, - "loc": { - "start": { - "line": 361, - "column": 22 - }, - "end": { - "line": 361, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14291, - "end": 14292, - "loc": { - "start": { - "line": 361, - "column": 26 - }, - "end": { - "line": 361, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_nextUniqueID", - "start": 14292, - "end": 14305, - "loc": { - "start": { - "line": 361, - "column": 27 - }, - "end": { - "line": 361, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14305, - "end": 14306, - "loc": { - "start": { - "line": 361, - "column": 40 - }, - "end": { - "line": 361, - "column": 41 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14306, - "end": 14307, - "loc": { - "start": { - "line": 361, - "column": 41 - }, - "end": { - "line": 361, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14307, - "end": 14308, - "loc": { - "start": { - "line": 361, - "column": 42 - }, - "end": { - "line": 361, - "column": 43 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14313, - "end": 14314, - "loc": { - "start": { - "line": 362, - "column": 4 - }, - "end": { - "line": 362, - "column": 5 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 14320, - "end": 14325, - "loc": { - "start": { - "line": 364, - "column": 4 - }, - "end": { - "line": 364, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorListener", - "start": 14326, - "end": 14341, - "loc": { - "start": { - "line": 364, - "column": 10 - }, - "end": { - "line": 364, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14342, - "end": 14343, - "loc": { - "start": { - "line": 364, - "column": 26 - }, - "end": { - "line": 364, - "column": 27 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14344, - "end": 14345, - "loc": { - "start": { - "line": 364, - "column": 28 - }, - "end": { - "line": 364, - "column": 29 - } - } - }, - { - "type": { - "label": "[", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14345, - "end": 14346, - "loc": { - "start": { - "line": 364, - "column": 29 - }, - "end": { - "line": 364, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 14346, - "end": 14351, - "loc": { - "start": { - "line": 364, - "column": 30 - }, - "end": { - "line": 364, - "column": 35 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14351, - "end": 14352, - "loc": { - "start": { - "line": 364, - "column": 35 - }, - "end": { - "line": 364, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristic", - "start": 14353, - "end": 14367, - "loc": { - "start": { - "line": 364, - "column": 37 - }, - "end": { - "line": 364, - "column": 51 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14367, - "end": 14368, - "loc": { - "start": { - "line": 364, - "column": 51 - }, - "end": { - "line": 364, - "column": 52 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "msgTransactionId", - "start": 14369, - "end": 14385, - "loc": { - "start": { - "line": 364, - "column": 53 - }, - "end": { - "line": 364, - "column": 69 - } - } - }, - { - "type": { - "label": "]", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14385, - "end": 14386, - "loc": { - "start": { - "line": 364, - "column": 69 - }, - "end": { - "line": 364, - "column": 70 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14386, - "end": 14387, - "loc": { - "start": { - "line": 364, - "column": 70 - }, - "end": { - "line": 364, - "column": 71 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14388, - "end": 14390, - "loc": { - "start": { - "line": 364, - "column": 72 - }, - "end": { - "line": 364, - "column": 74 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14391, - "end": 14392, - "loc": { - "start": { - "line": 364, - "column": 75 - }, - "end": { - "line": 364, - "column": 76 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 14399, - "end": 14401, - "loc": { - "start": { - "line": 365, - "column": 6 - }, - "end": { - "line": 365, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14402, - "end": 14403, - "loc": { - "start": { - "line": 365, - "column": 9 - }, - "end": { - "line": 365, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 14403, - "end": 14416, - "loc": { - "start": { - "line": 365, - "column": 10 - }, - "end": { - "line": 365, - "column": 23 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "!==", - "start": 14417, - "end": 14420, - "loc": { - "start": { - "line": 365, - "column": 24 - }, - "end": { - "line": 365, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "msgTransactionId", - "start": 14421, - "end": 14437, - "loc": { - "start": { - "line": 365, - "column": 28 - }, - "end": { - "line": 365, - "column": 44 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14437, - "end": 14438, - "loc": { - "start": { - "line": 365, - "column": 44 - }, - "end": { - "line": 365, - "column": 45 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 14439, - "end": 14445, - "loc": { - "start": { - "line": 365, - "column": 46 - }, - "end": { - "line": 365, - "column": 52 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14445, - "end": 14446, - "loc": { - "start": { - "line": 365, - "column": 52 - }, - "end": { - "line": 365, - "column": 53 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 14453, - "end": 14455, - "loc": { - "start": { - "line": 366, - "column": 6 - }, - "end": { - "line": 366, - "column": 8 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14456, - "end": 14457, - "loc": { - "start": { - "line": 366, - "column": 9 - }, - "end": { - "line": 366, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 14457, - "end": 14462, - "loc": { - "start": { - "line": 366, - "column": 10 - }, - "end": { - "line": 366, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14462, - "end": 14463, - "loc": { - "start": { - "line": 366, - "column": 15 - }, - "end": { - "line": 366, - "column": 16 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14464, - "end": 14465, - "loc": { - "start": { - "line": 366, - "column": 17 - }, - "end": { - "line": 366, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 14474, - "end": 14482, - "loc": { - "start": { - "line": 367, - "column": 8 - }, - "end": { - "line": 367, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14482, - "end": 14483, - "loc": { - "start": { - "line": 367, - "column": 16 - }, - "end": { - "line": 367, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 14483, - "end": 14488, - "loc": { - "start": { - "line": 367, - "column": 17 - }, - "end": { - "line": 367, - "column": 22 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14488, - "end": 14489, - "loc": { - "start": { - "line": 367, - "column": 22 - }, - "end": { - "line": 367, - "column": 23 - } - } - }, - { - "type": { - "label": "null", - "keyword": "null", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null", - "start": 14490, - "end": 14494, - "loc": { - "start": { - "line": 367, - "column": 24 - }, - "end": { - "line": 367, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14494, - "end": 14495, - "loc": { - "start": { - "line": 367, - "column": 28 - }, - "end": { - "line": 367, - "column": 29 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14495, - "end": 14496, - "loc": { - "start": { - "line": 367, - "column": 29 - }, - "end": { - "line": 367, - "column": 30 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 14505, - "end": 14511, - "loc": { - "start": { - "line": 368, - "column": 8 - }, - "end": { - "line": 368, - "column": 14 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14511, - "end": 14512, - "loc": { - "start": { - "line": 368, - "column": 14 - }, - "end": { - "line": 368, - "column": 15 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14519, - "end": 14520, - "loc": { - "start": { - "line": 369, - "column": 6 - }, - "end": { - "line": 369, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 14527, - "end": 14535, - "loc": { - "start": { - "line": 370, - "column": 6 - }, - "end": { - "line": 370, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14535, - "end": 14536, - "loc": { - "start": { - "line": 370, - "column": 14 - }, - "end": { - "line": 370, - "column": 15 - } - } - }, - { - "type": { - "label": "null", - "keyword": "null", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null", - "start": 14536, - "end": 14540, - "loc": { - "start": { - "line": 370, - "column": 15 - }, - "end": { - "line": 370, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14540, - "end": 14541, - "loc": { - "start": { - "line": 370, - "column": 19 - }, - "end": { - "line": 370, - "column": 20 - } - } - }, - { - "type": { - "label": "new", - "keyword": "new", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "new", - "start": 14542, - "end": 14545, - "loc": { - "start": { - "line": 370, - "column": 21 - }, - "end": { - "line": 370, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 14546, - "end": 14560, - "loc": { - "start": { - "line": 370, - "column": 25 - }, - "end": { - "line": 370, - "column": 39 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14560, - "end": 14561, - "loc": { - "start": { - "line": 370, - "column": 39 - }, - "end": { - "line": 370, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristic", - "start": 14561, - "end": 14575, - "loc": { - "start": { - "line": 370, - "column": 40 - }, - "end": { - "line": 370, - "column": 54 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14575, - "end": 14576, - "loc": { - "start": { - "line": 370, - "column": 54 - }, - "end": { - "line": 370, - "column": 55 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 14577, - "end": 14581, - "loc": { - "start": { - "line": 370, - "column": 56 - }, - "end": { - "line": 370, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14581, - "end": 14582, - "loc": { - "start": { - "line": 370, - "column": 60 - }, - "end": { - "line": 370, - "column": 61 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14582, - "end": 14583, - "loc": { - "start": { - "line": 370, - "column": 61 - }, - "end": { - "line": 370, - "column": 62 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14583, - "end": 14584, - "loc": { - "start": { - "line": 370, - "column": 62 - }, - "end": { - "line": 370, - "column": 63 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14589, - "end": 14590, - "loc": { - "start": { - "line": 371, - "column": 4 - }, - "end": { - "line": 371, - "column": 5 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14590, - "end": 14591, - "loc": { - "start": { - "line": 371, - "column": 5 - }, - "end": { - "line": 371, - "column": 6 - } - } - }, - { - "type": { - "label": "const", - "keyword": "const", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "const", - "start": 14597, - "end": 14602, - "loc": { - "start": { - "line": 373, - "column": 4 - }, - "end": { - "line": 373, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 14603, - "end": 14615, - "loc": { - "start": { - "line": 373, - "column": 10 - }, - "end": { - "line": 373, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 14616, - "end": 14617, - "loc": { - "start": { - "line": 373, - "column": 23 - }, - "end": { - "line": 373, - "column": 24 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 14618, - "end": 14622, - "loc": { - "start": { - "line": 373, - "column": 25 - }, - "end": { - "line": 373, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14622, - "end": 14623, - "loc": { - "start": { - "line": 373, - "column": 29 - }, - "end": { - "line": 373, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_eventEmitter", - "start": 14623, - "end": 14636, - "loc": { - "start": { - "line": 373, - "column": 30 - }, - "end": { - "line": 373, - "column": 43 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14636, - "end": 14637, - "loc": { - "start": { - "line": 373, - "column": 43 - }, - "end": { - "line": 373, - "column": 44 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "addListener", - "start": 14637, - "end": 14648, - "loc": { - "start": { - "line": 373, - "column": 44 - }, - "end": { - "line": 373, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14648, - "end": 14649, - "loc": { - "start": { - "line": 373, - "column": 55 - }, - "end": { - "line": 373, - "column": 56 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 14649, - "end": 14658, - "loc": { - "start": { - "line": 373, - "column": 56 - }, - "end": { - "line": 373, - "column": 65 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14658, - "end": 14659, - "loc": { - "start": { - "line": 373, - "column": 65 - }, - "end": { - "line": 373, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "ReadEvent", - "start": 14659, - "end": 14668, - "loc": { - "start": { - "line": 373, - "column": 66 - }, - "end": { - "line": 373, - "column": 75 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14668, - "end": 14669, - "loc": { - "start": { - "line": 373, - "column": 75 - }, - "end": { - "line": 373, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorListener", - "start": 14670, - "end": 14685, - "loc": { - "start": { - "line": 373, - "column": 77 - }, - "end": { - "line": 373, - "column": 92 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14685, - "end": 14686, - "loc": { - "start": { - "line": 373, - "column": 92 - }, - "end": { - "line": 373, - "column": 93 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14686, - "end": 14687, - "loc": { - "start": { - "line": 373, - "column": 93 - }, - "end": { - "line": 373, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 14692, - "end": 14701, - "loc": { - "start": { - "line": 374, - "column": 4 - }, - "end": { - "line": 374, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14701, - "end": 14702, - "loc": { - "start": { - "line": 374, - "column": 13 - }, - "end": { - "line": 374, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForDevice", - "start": 14702, - "end": 14732, - "loc": { - "start": { - "line": 374, - "column": 14 - }, - "end": { - "line": 374, - "column": 44 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14732, - "end": 14733, - "loc": { - "start": { - "line": 374, - "column": 44 - }, - "end": { - "line": 374, - "column": 45 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceIdentifier", - "start": 14733, - "end": 14749, - "loc": { - "start": { - "line": 374, - "column": 45 - }, - "end": { - "line": 374, - "column": 61 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14749, - "end": 14750, - "loc": { - "start": { - "line": 374, - "column": 61 - }, - "end": { - "line": 374, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 14751, - "end": 14762, - "loc": { - "start": { - "line": 374, - "column": 63 - }, - "end": { - "line": 374, - "column": 74 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14762, - "end": 14763, - "loc": { - "start": { - "line": 374, - "column": 74 - }, - "end": { - "line": 374, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 14764, - "end": 14782, - "loc": { - "start": { - "line": 374, - "column": 76 - }, - "end": { - "line": 374, - "column": 94 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14782, - "end": 14783, - "loc": { - "start": { - "line": 374, - "column": 94 - }, - "end": { - "line": 374, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 14784, - "end": 14797, - "loc": { - "start": { - "line": 374, - "column": 96 - }, - "end": { - "line": 374, - "column": 109 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14797, - "end": 14798, - "loc": { - "start": { - "line": 374, - "column": 109 - }, - "end": { - "line": 374, - "column": 110 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14798, - "end": 14799, - "loc": { - "start": { - "line": 374, - "column": 110 - }, - "end": { - "line": 374, - "column": 111 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "then", - "start": 14799, - "end": 14803, - "loc": { - "start": { - "line": 374, - "column": 111 - }, - "end": { - "line": 374, - "column": 115 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14803, - "end": 14804, - "loc": { - "start": { - "line": 374, - "column": 115 - }, - "end": { - "line": 374, - "column": 116 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "finished", - "start": 14804, - "end": 14812, - "loc": { - "start": { - "line": 374, - "column": 116 - }, - "end": { - "line": 374, - "column": 124 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14813, - "end": 14815, - "loc": { - "start": { - "line": 374, - "column": 125 - }, - "end": { - "line": 374, - "column": 127 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14816, - "end": 14817, - "loc": { - "start": { - "line": 374, - "column": 128 - }, - "end": { - "line": 374, - "column": 129 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 14824, - "end": 14836, - "loc": { - "start": { - "line": 375, - "column": 6 - }, - "end": { - "line": 375, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14836, - "end": 14837, - "loc": { - "start": { - "line": 375, - "column": 18 - }, - "end": { - "line": 375, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 14837, - "end": 14843, - "loc": { - "start": { - "line": 375, - "column": 19 - }, - "end": { - "line": 375, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14843, - "end": 14844, - "loc": { - "start": { - "line": 375, - "column": 25 - }, - "end": { - "line": 375, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14844, - "end": 14845, - "loc": { - "start": { - "line": 375, - "column": 26 - }, - "end": { - "line": 375, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14845, - "end": 14846, - "loc": { - "start": { - "line": 375, - "column": 27 - }, - "end": { - "line": 375, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14851, - "end": 14852, - "loc": { - "start": { - "line": 376, - "column": 4 - }, - "end": { - "line": 376, - "column": 5 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14852, - "end": 14853, - "loc": { - "start": { - "line": 376, - "column": 5 - }, - "end": { - "line": 376, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 14854, - "end": 14859, - "loc": { - "start": { - "line": 376, - "column": 7 - }, - "end": { - "line": 376, - "column": 12 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14860, - "end": 14862, - "loc": { - "start": { - "line": 376, - "column": 13 - }, - "end": { - "line": 376, - "column": 15 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14863, - "end": 14864, - "loc": { - "start": { - "line": 376, - "column": 16 - }, - "end": { - "line": 376, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 14871, - "end": 14879, - "loc": { - "start": { - "line": 377, - "column": 6 - }, - "end": { - "line": 377, - "column": 14 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14879, - "end": 14880, - "loc": { - "start": { - "line": 377, - "column": 14 - }, - "end": { - "line": 377, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "error", - "start": 14880, - "end": 14885, - "loc": { - "start": { - "line": 377, - "column": 15 - }, - "end": { - "line": 377, - "column": 20 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14885, - "end": 14886, - "loc": { - "start": { - "line": 377, - "column": 20 - }, - "end": { - "line": 377, - "column": 21 - } - } - }, - { - "type": { - "label": "null", - "keyword": "null", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "null", - "start": 14887, - "end": 14891, - "loc": { - "start": { - "line": 377, - "column": 22 - }, - "end": { - "line": 377, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14891, - "end": 14892, - "loc": { - "start": { - "line": 377, - "column": 26 - }, - "end": { - "line": 377, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14892, - "end": 14893, - "loc": { - "start": { - "line": 377, - "column": 27 - }, - "end": { - "line": 377, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "subscription", - "start": 14900, - "end": 14912, - "loc": { - "start": { - "line": 378, - "column": 6 - }, - "end": { - "line": 378, - "column": 18 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14912, - "end": 14913, - "loc": { - "start": { - "line": 378, - "column": 18 - }, - "end": { - "line": 378, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 14913, - "end": 14919, - "loc": { - "start": { - "line": 378, - "column": 19 - }, - "end": { - "line": 378, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14919, - "end": 14920, - "loc": { - "start": { - "line": 378, - "column": 25 - }, - "end": { - "line": 378, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14920, - "end": 14921, - "loc": { - "start": { - "line": 378, - "column": 26 - }, - "end": { - "line": 378, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14921, - "end": 14922, - "loc": { - "start": { - "line": 378, - "column": 27 - }, - "end": { - "line": 378, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14927, - "end": 14928, - "loc": { - "start": { - "line": 379, - "column": 4 - }, - "end": { - "line": 379, - "column": 5 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14928, - "end": 14929, - "loc": { - "start": { - "line": 379, - "column": 5 - }, - "end": { - "line": 379, - "column": 6 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14929, - "end": 14930, - "loc": { - "start": { - "line": 379, - "column": 6 - }, - "end": { - "line": 379, - "column": 7 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 14936, - "end": 14942, - "loc": { - "start": { - "line": 381, - "column": 4 - }, - "end": { - "line": 381, - "column": 10 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14943, - "end": 14944, - "loc": { - "start": { - "line": 381, - "column": 11 - }, - "end": { - "line": 381, - "column": 12 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "remove", - "start": 14951, - "end": 14957, - "loc": { - "start": { - "line": 382, - "column": 6 - }, - "end": { - "line": 382, - "column": 12 - } - } - }, - { - "type": { - "label": ":", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14957, - "end": 14958, - "loc": { - "start": { - "line": 382, - "column": 12 - }, - "end": { - "line": 382, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14959, - "end": 14960, - "loc": { - "start": { - "line": 382, - "column": 14 - }, - "end": { - "line": 382, - "column": 15 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14960, - "end": 14961, - "loc": { - "start": { - "line": 382, - "column": 15 - }, - "end": { - "line": 382, - "column": 16 - } - } - }, - { - "type": { - "label": "=>", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14962, - "end": 14964, - "loc": { - "start": { - "line": 382, - "column": 17 - }, - "end": { - "line": 382, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 14965, - "end": 14966, - "loc": { - "start": { - "line": 382, - "column": 20 - }, - "end": { - "line": 382, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleModule", - "start": 14975, - "end": 14984, - "loc": { - "start": { - "line": 383, - "column": 8 - }, - "end": { - "line": 383, - "column": 17 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 14984, - "end": 14985, - "loc": { - "start": { - "line": 383, - "column": 17 - }, - "end": { - "line": 383, - "column": 18 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelTransaction", - "start": 14985, - "end": 15002, - "loc": { - "start": { - "line": 383, - "column": 18 - }, - "end": { - "line": 383, - "column": 35 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15002, - "end": 15003, - "loc": { - "start": { - "line": 383, - "column": 35 - }, - "end": { - "line": 383, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 15003, - "end": 15016, - "loc": { - "start": { - "line": 383, - "column": 36 - }, - "end": { - "line": 383, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15016, - "end": 15017, - "loc": { - "start": { - "line": 383, - "column": 49 - }, - "end": { - "line": 383, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15017, - "end": 15018, - "loc": { - "start": { - "line": 383, - "column": 50 - }, - "end": { - "line": 383, - "column": 51 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15025, - "end": 15026, - "loc": { - "start": { - "line": 384, - "column": 6 - }, - "end": { - "line": 384, - "column": 7 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15031, - "end": 15032, - "loc": { - "start": { - "line": 385, - "column": 4 - }, - "end": { - "line": 385, - "column": 5 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15032, - "end": 15033, - "loc": { - "start": { - "line": 385, - "column": 5 - }, - "end": { - "line": 385, - "column": 6 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15036, - "end": 15037, - "loc": { - "start": { - "line": 386, - "column": 2 - }, - "end": { - "line": 386, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 15038, - "end": 15039, - "loc": { - "start": { - "line": 387, - "column": 0 - }, - "end": { - "line": 387, - "column": 1 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 15039, - "end": 15039, - "loc": { - "start": { - "line": 387, - "column": 1 - }, - "end": { - "line": 387, - "column": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/src/Characteristic.js.json b/docs/ast/source/src/Characteristic.js.json deleted file mode 100644 index 4c693e41..00000000 --- a/docs/ast/source/src/Characteristic.js.json +++ /dev/null @@ -1,10922 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 4768, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 4768, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ImportDeclaration", - "start": 15, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 38 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - }, - "local": { - "type": "Identifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - }, - "identifierName": "BleManager" - }, - "name": "BleManager" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - }, - "extra": { - "rawValue": "./BleManager", - "raw": "'./BleManager'" - }, - "value": "./BleManager" - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Characteristic format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeCharacteristic\n ", - "start": 56, - "end": 231, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 12, - "column": 3 - } - } - } - ] - }, - { - "type": "ClassDeclaration", - "start": 232, - "end": 261, - "loc": { - "start": { - "line": 13, - "column": 0 - }, - "end": { - "line": 13, - "column": 29 - } - }, - "id": { - "type": "Identifier", - "start": 238, - "end": 258, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 26 - }, - "identifierName": "NativeCharacteristic" - }, - "name": "NativeCharacteristic", - "leadingComments": null - }, - "superClass": null, - "body": { - "type": "ClassBody", - "start": 259, - "end": 261, - "loc": { - "start": { - "line": 13, - "column": 27 - }, - "end": { - "line": 13, - "column": 29 - } - }, - "body": [], - "leadingComments": null, - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Characteristic format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeCharacteristic\n ", - "start": 56, - "end": 231, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 12, - "column": 3 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Characteristic object.\n * \n * @export\n * @class Characteristic\n ", - "start": 263, - "end": 336, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 20, - "column": 3 - } - } - } - ] - }, - { - "type": "ExportDefaultDeclaration", - "start": 337, - "end": 4768, - "loc": { - "start": { - "line": 21, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "declaration": { - "type": "ClassDeclaration", - "start": 352, - "end": 4768, - "loc": { - "start": { - "line": 21, - "column": 15 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "id": { - "type": "Identifier", - "start": 358, - "end": 372, - "loc": { - "start": { - "line": 21, - "column": 21 - }, - "end": { - "line": 21, - "column": 35 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic", - "leadingComments": null - }, - "superClass": { - "type": "Identifier", - "start": 381, - "end": 401, - "loc": { - "start": { - "line": 21, - "column": 44 - }, - "end": { - "line": 21, - "column": 64 - }, - "identifierName": "NativeCharacteristic" - }, - "name": "NativeCharacteristic" - }, - "body": { - "type": "ClassBody", - "start": 402, - "end": 4768, - "loc": { - "start": { - "line": 21, - "column": 65 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "body": [ - { - "type": "ClassMethod", - "start": 684, - "end": 2127, - "loc": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 65, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 684, - "end": 695, - "loc": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 13 - }, - "identifierName": "constructor" - }, - "name": "constructor", - "leadingComments": null - }, - "static": false, - "kind": "constructor", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 696, - "end": 701, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 19 - }, - "identifierName": "props" - }, - "name": "props" - }, - { - "type": "Identifier", - "start": 703, - "end": 710, - "loc": { - "start": { - "line": 32, - "column": 21 - }, - "end": { - "line": 32, - "column": 28 - }, - "identifierName": "manager" - }, - "name": "manager" - } - ], - "body": { - "type": "BlockStatement", - "start": 712, - "end": 2127, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 65, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 718, - "end": 726, - "loc": { - "start": { - "line": 33, - "column": 4 - }, - "end": { - "line": 33, - "column": 12 - } - }, - "expression": { - "type": "CallExpression", - "start": 718, - "end": 725, - "loc": { - "start": { - "line": 33, - "column": 4 - }, - "end": { - "line": 33, - "column": 11 - } - }, - "callee": { - "type": "Super", - "start": 718, - "end": 723, - "loc": { - "start": { - "line": 33, - "column": 4 - }, - "end": { - "line": 33, - "column": 9 - } - } - }, - "arguments": [] - } - }, - { - "type": "ExpressionStatement", - "start": 731, - "end": 755, - "loc": { - "start": { - "line": 34, - "column": 4 - }, - "end": { - "line": 34, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 731, - "end": 754, - "loc": { - "start": { - "line": 34, - "column": 4 - }, - "end": { - "line": 34, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 731, - "end": 744, - "loc": { - "start": { - "line": 34, - "column": 4 - }, - "end": { - "line": 34, - "column": 17 - } - }, - "object": { - "type": "ThisExpression", - "start": 731, - "end": 735, - "loc": { - "start": { - "line": 34, - "column": 4 - }, - "end": { - "line": 34, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 736, - "end": 744, - "loc": { - "start": { - "line": 34, - "column": 9 - }, - "end": { - "line": 34, - "column": 17 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 747, - "end": 754, - "loc": { - "start": { - "line": 34, - "column": 20 - }, - "end": { - "line": 34, - "column": 27 - }, - "identifierName": "manager" - }, - "name": "manager" - } - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Characteristic} UUID. ", - "start": 760, - "end": 825, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 36, - "column": 45 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 830, - "end": 853, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 830, - "end": 852, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 830, - "end": 839, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "object": { - "type": "ThisExpression", - "start": 830, - "end": 834, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 835, - "end": 839, - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 13 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 842, - "end": 852, - "loc": { - "start": { - "line": 37, - "column": 16 - }, - "end": { - "line": 37, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 842, - "end": 847, - "loc": { - "start": { - "line": 37, - "column": 16 - }, - "end": { - "line": 37, - "column": 21 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 848, - "end": 852, - "loc": { - "start": { - "line": 37, - "column": 22 - }, - "end": { - "line": 37, - "column": 26 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Characteristic} UUID. ", - "start": 760, - "end": 825, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 36, - "column": 45 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID which owns this characteristic. ", - "start": 858, - "end": 947, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 69 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 952, - "end": 989, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 41 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 952, - "end": 988, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 40 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 952, - "end": 968, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 20 - } - }, - "object": { - "type": "ThisExpression", - "start": 952, - "end": 956, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 957, - "end": 968, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 20 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 971, - "end": 988, - "loc": { - "start": { - "line": 40, - "column": 23 - }, - "end": { - "line": 40, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 971, - "end": 976, - "loc": { - "start": { - "line": 40, - "column": 23 - }, - "end": { - "line": 40, - "column": 28 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 977, - "end": 988, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 40, - "column": 40 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID which owns this characteristic. ", - "start": 858, - "end": 947, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 69 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string}\n * @desc {@link Device} identifier which owns this characteristic. ", - "start": 994, - "end": 1087, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 74 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1092, - "end": 1123, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 35 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1092, - "end": 1122, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 34 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1092, - "end": 1105, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 17 - } - }, - "object": { - "type": "ThisExpression", - "start": 1092, - "end": 1096, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1097, - "end": 1105, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 17 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1108, - "end": 1122, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 1108, - "end": 1113, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 25 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1114, - "end": 1122, - "loc": { - "start": { - "line": 43, - "column": 26 - }, - "end": { - "line": 43, - "column": 34 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string}\n * @desc {@link Device} identifier which owns this characteristic. ", - "start": 994, - "end": 1087, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 74 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is readable. ", - "start": 1128, - "end": 1201, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 52 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1206, - "end": 1241, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 39 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1206, - "end": 1240, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 38 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1206, - "end": 1221, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 19 - } - }, - "object": { - "type": "ThisExpression", - "start": 1206, - "end": 1210, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1211, - "end": 1221, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 19 - }, - "identifierName": "isReadable" - }, - "name": "isReadable" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1224, - "end": 1240, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 38 - } - }, - "object": { - "type": "Identifier", - "start": 1224, - "end": 1229, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 27 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1230, - "end": 1240, - "loc": { - "start": { - "line": 46, - "column": 28 - }, - "end": { - "line": 46, - "column": 38 - }, - "identifierName": "isReadable" - }, - "name": "isReadable" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is readable. ", - "start": 1128, - "end": 1201, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 52 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing with response. ", - "start": 1246, - "end": 1346, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 79 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1351, - "end": 1410, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 63 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1351, - "end": 1409, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 62 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1351, - "end": 1378, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 31 - } - }, - "object": { - "type": "ThisExpression", - "start": 1351, - "end": 1355, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1356, - "end": 1378, - "loc": { - "start": { - "line": 49, - "column": 9 - }, - "end": { - "line": 49, - "column": 31 - }, - "identifierName": "isWritableWithResponse" - }, - "name": "isWritableWithResponse" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1381, - "end": 1409, - "loc": { - "start": { - "line": 49, - "column": 34 - }, - "end": { - "line": 49, - "column": 62 - } - }, - "object": { - "type": "Identifier", - "start": 1381, - "end": 1386, - "loc": { - "start": { - "line": 49, - "column": 34 - }, - "end": { - "line": 49, - "column": 39 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1387, - "end": 1409, - "loc": { - "start": { - "line": 49, - "column": 40 - }, - "end": { - "line": 49, - "column": 62 - }, - "identifierName": "isWritableWithResponse" - }, - "name": "isWritableWithResponse" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing with response. ", - "start": 1246, - "end": 1346, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 79 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing without response. ", - "start": 1415, - "end": 1518, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 82 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1523, - "end": 1588, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 69 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1523, - "end": 1587, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 68 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1523, - "end": 1553, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 34 - } - }, - "object": { - "type": "ThisExpression", - "start": 1523, - "end": 1527, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1528, - "end": 1553, - "loc": { - "start": { - "line": 52, - "column": 9 - }, - "end": { - "line": 52, - "column": 34 - }, - "identifierName": "isWritableWithoutResponse" - }, - "name": "isWritableWithoutResponse" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1556, - "end": 1587, - "loc": { - "start": { - "line": 52, - "column": 37 - }, - "end": { - "line": 52, - "column": 68 - } - }, - "object": { - "type": "Identifier", - "start": 1556, - "end": 1561, - "loc": { - "start": { - "line": 52, - "column": 37 - }, - "end": { - "line": 52, - "column": 42 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1562, - "end": 1587, - "loc": { - "start": { - "line": 52, - "column": 43 - }, - "end": { - "line": 52, - "column": 68 - }, - "identifierName": "isWritableWithoutResponse" - }, - "name": "isWritableWithoutResponse" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing without response. ", - "start": 1415, - "end": 1518, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 82 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is notifiable ", - "start": 1593, - "end": 1667, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 53 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1672, - "end": 1711, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1672, - "end": 1710, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1672, - "end": 1689, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 21 - } - }, - "object": { - "type": "ThisExpression", - "start": 1672, - "end": 1676, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1677, - "end": 1689, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 21 - }, - "identifierName": "isNotifiable" - }, - "name": "isNotifiable" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1692, - "end": 1710, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 1692, - "end": 1697, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 29 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1698, - "end": 1710, - "loc": { - "start": { - "line": 55, - "column": 30 - }, - "end": { - "line": 55, - "column": 42 - }, - "identifierName": "isNotifiable" - }, - "name": "isNotifiable" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is notifiable ", - "start": 1593, - "end": 1667, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 53 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc Current status of notification for this characteristic. ", - "start": 1716, - "end": 1809, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 72 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1814, - "end": 1851, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 41 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1814, - "end": 1850, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 40 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1814, - "end": 1830, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 20 - } - }, - "object": { - "type": "ThisExpression", - "start": 1814, - "end": 1818, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1819, - "end": 1830, - "loc": { - "start": { - "line": 58, - "column": 9 - }, - "end": { - "line": 58, - "column": 20 - }, - "identifierName": "isNotifying" - }, - "name": "isNotifying" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1833, - "end": 1850, - "loc": { - "start": { - "line": 58, - "column": 23 - }, - "end": { - "line": 58, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 1833, - "end": 1838, - "loc": { - "start": { - "line": 58, - "column": 23 - }, - "end": { - "line": 58, - "column": 28 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1839, - "end": 1850, - "loc": { - "start": { - "line": 58, - "column": 29 - }, - "end": { - "line": 58, - "column": 40 - }, - "identifierName": "isNotifying" - }, - "name": "isNotifying" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc Current status of notification for this characteristic. ", - "start": 1716, - "end": 1809, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 72 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is indictable ", - "start": 1856, - "end": 1930, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 53 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1935, - "end": 1974, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1935, - "end": 1973, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1935, - "end": 1952, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 21 - } - }, - "object": { - "type": "ThisExpression", - "start": 1935, - "end": 1939, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1940, - "end": 1952, - "loc": { - "start": { - "line": 61, - "column": 9 - }, - "end": { - "line": 61, - "column": 21 - }, - "identifierName": "isIndictable" - }, - "name": "isIndictable" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1955, - "end": 1973, - "loc": { - "start": { - "line": 61, - "column": 24 - }, - "end": { - "line": 61, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 1955, - "end": 1960, - "loc": { - "start": { - "line": 61, - "column": 24 - }, - "end": { - "line": 61, - "column": 29 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1961, - "end": 1973, - "loc": { - "start": { - "line": 61, - "column": 30 - }, - "end": { - "line": 61, - "column": 42 - }, - "identifierName": "isIndictable" - }, - "name": "isIndictable" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is indictable ", - "start": 1856, - "end": 1930, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 53 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string}\n * @desc Current characteristic value in Base64 encoding, may be `null` when not read. ", - "start": 1979, - "end": 2093, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 94 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 2098, - "end": 2123, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 29 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2098, - "end": 2122, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 28 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2098, - "end": 2108, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 14 - } - }, - "object": { - "type": "ThisExpression", - "start": 2098, - "end": 2102, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 2103, - "end": 2108, - "loc": { - "start": { - "line": 64, - "column": 9 - }, - "end": { - "line": 64, - "column": 14 - }, - "identifierName": "value" - }, - "name": "value" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 2111, - "end": 2122, - "loc": { - "start": { - "line": 64, - "column": 17 - }, - "end": { - "line": 64, - "column": 28 - } - }, - "object": { - "type": "Identifier", - "start": 2111, - "end": 2116, - "loc": { - "start": { - "line": 64, - "column": 17 - }, - "end": { - "line": 64, - "column": 22 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 2117, - "end": 2122, - "loc": { - "start": { - "line": 64, - "column": 23 - }, - "end": { - "line": 64, - "column": 28 - }, - "identifierName": "value" - }, - "name": "value" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string}\n * @desc Current characteristic value in Base64 encoding, may be `null` when not read. ", - "start": 1979, - "end": 2093, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 94 - } - } - } - ] - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Private {@link Characteristic} constructor.\n * \n * @param {NativeCharacteristic} props - NativeCharacteristic properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n * \n * @memberOf Characteristic\n ", - "start": 407, - "end": 681, - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value will be stored inside \n * returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2131, - "end": 2525, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 75, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2528, - "end": 2672, - "loc": { - "start": { - "line": 76, - "column": 2 - }, - "end": { - "line": 78, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2534, - "end": 2538, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 12 - }, - "identifierName": "read" - }, - "name": "read" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 2539, - "end": 2552, - "loc": { - "start": { - "line": 76, - "column": 13 - }, - "end": { - "line": 76, - "column": 26 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 2554, - "end": 2672, - "loc": { - "start": { - "line": 76, - "column": 28 - }, - "end": { - "line": 78, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2560, - "end": 2668, - "loc": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 77, - "column": 112 - } - }, - "argument": { - "type": "CallExpression", - "start": 2567, - "end": 2667, - "loc": { - "start": { - "line": 77, - "column": 11 - }, - "end": { - "line": 77, - "column": 111 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2567, - "end": 2608, - "loc": { - "start": { - "line": 77, - "column": 11 - }, - "end": { - "line": 77, - "column": 52 - } - }, - "object": { - "type": "MemberExpression", - "start": 2567, - "end": 2580, - "loc": { - "start": { - "line": 77, - "column": 11 - }, - "end": { - "line": 77, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 2567, - "end": 2571, - "loc": { - "start": { - "line": 77, - "column": 11 - }, - "end": { - "line": 77, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 2572, - "end": 2580, - "loc": { - "start": { - "line": 77, - "column": 16 - }, - "end": { - "line": 77, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2581, - "end": 2608, - "loc": { - "start": { - "line": 77, - "column": 25 - }, - "end": { - "line": 77, - "column": 52 - }, - "identifierName": "readCharacteristicForDevice" - }, - "name": "readCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 2609, - "end": 2622, - "loc": { - "start": { - "line": 77, - "column": 53 - }, - "end": { - "line": 77, - "column": 66 - } - }, - "object": { - "type": "ThisExpression", - "start": 2609, - "end": 2613, - "loc": { - "start": { - "line": 77, - "column": 53 - }, - "end": { - "line": 77, - "column": 57 - } - } - }, - "property": { - "type": "Identifier", - "start": 2614, - "end": 2622, - "loc": { - "start": { - "line": 77, - "column": 58 - }, - "end": { - "line": 77, - "column": 66 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 2624, - "end": 2640, - "loc": { - "start": { - "line": 77, - "column": 68 - }, - "end": { - "line": 77, - "column": 84 - } - }, - "object": { - "type": "ThisExpression", - "start": 2624, - "end": 2628, - "loc": { - "start": { - "line": 77, - "column": 68 - }, - "end": { - "line": 77, - "column": 72 - } - } - }, - "property": { - "type": "Identifier", - "start": 2629, - "end": 2640, - "loc": { - "start": { - "line": 77, - "column": 73 - }, - "end": { - "line": 77, - "column": 84 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 2642, - "end": 2651, - "loc": { - "start": { - "line": 77, - "column": 86 - }, - "end": { - "line": 77, - "column": 95 - } - }, - "object": { - "type": "ThisExpression", - "start": 2642, - "end": 2646, - "loc": { - "start": { - "line": 77, - "column": 86 - }, - "end": { - "line": 77, - "column": 90 - } - } - }, - "property": { - "type": "Identifier", - "start": 2647, - "end": 2651, - "loc": { - "start": { - "line": 77, - "column": 91 - }, - "end": { - "line": 77, - "column": 95 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 2653, - "end": 2666, - "loc": { - "start": { - "line": 77, - "column": 97 - }, - "end": { - "line": 77, - "column": 110 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value will be stored inside \n * returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2131, - "end": 2525, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 75, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2676, - "end": 3164, - "loc": { - "start": { - "line": 80, - "column": 2 - }, - "end": { - "line": 89, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3167, - "end": 3363, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 92, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3173, - "end": 3190, - "loc": { - "start": { - "line": 90, - "column": 8 - }, - "end": { - "line": 90, - "column": 25 - }, - "identifierName": "writeWithResponse" - }, - "name": "writeWithResponse" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 3191, - "end": 3202, - "loc": { - "start": { - "line": 90, - "column": 26 - }, - "end": { - "line": 90, - "column": 37 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3204, - "end": 3217, - "loc": { - "start": { - "line": 90, - "column": 39 - }, - "end": { - "line": 90, - "column": 52 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 3219, - "end": 3363, - "loc": { - "start": { - "line": 90, - "column": 54 - }, - "end": { - "line": 92, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 3225, - "end": 3359, - "loc": { - "start": { - "line": 91, - "column": 4 - }, - "end": { - "line": 91, - "column": 138 - } - }, - "argument": { - "type": "CallExpression", - "start": 3232, - "end": 3358, - "loc": { - "start": { - "line": 91, - "column": 11 - }, - "end": { - "line": 91, - "column": 137 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3232, - "end": 3286, - "loc": { - "start": { - "line": 91, - "column": 11 - }, - "end": { - "line": 91, - "column": 65 - } - }, - "object": { - "type": "MemberExpression", - "start": 3232, - "end": 3245, - "loc": { - "start": { - "line": 91, - "column": 11 - }, - "end": { - "line": 91, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 3232, - "end": 3236, - "loc": { - "start": { - "line": 91, - "column": 11 - }, - "end": { - "line": 91, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 3237, - "end": 3245, - "loc": { - "start": { - "line": 91, - "column": 16 - }, - "end": { - "line": 91, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3246, - "end": 3286, - "loc": { - "start": { - "line": 91, - "column": 25 - }, - "end": { - "line": 91, - "column": 65 - }, - "identifierName": "writeCharacteristicWithResponseForDevice" - }, - "name": "writeCharacteristicWithResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3287, - "end": 3300, - "loc": { - "start": { - "line": 91, - "column": 66 - }, - "end": { - "line": 91, - "column": 79 - } - }, - "object": { - "type": "ThisExpression", - "start": 3287, - "end": 3291, - "loc": { - "start": { - "line": 91, - "column": 66 - }, - "end": { - "line": 91, - "column": 70 - } - } - }, - "property": { - "type": "Identifier", - "start": 3292, - "end": 3300, - "loc": { - "start": { - "line": 91, - "column": 71 - }, - "end": { - "line": 91, - "column": 79 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 3302, - "end": 3318, - "loc": { - "start": { - "line": 91, - "column": 81 - }, - "end": { - "line": 91, - "column": 97 - } - }, - "object": { - "type": "ThisExpression", - "start": 3302, - "end": 3306, - "loc": { - "start": { - "line": 91, - "column": 81 - }, - "end": { - "line": 91, - "column": 85 - } - } - }, - "property": { - "type": "Identifier", - "start": 3307, - "end": 3318, - "loc": { - "start": { - "line": 91, - "column": 86 - }, - "end": { - "line": 91, - "column": 97 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 3320, - "end": 3329, - "loc": { - "start": { - "line": 91, - "column": 99 - }, - "end": { - "line": 91, - "column": 108 - } - }, - "object": { - "type": "ThisExpression", - "start": 3320, - "end": 3324, - "loc": { - "start": { - "line": 91, - "column": 99 - }, - "end": { - "line": 91, - "column": 103 - } - } - }, - "property": { - "type": "Identifier", - "start": 3325, - "end": 3329, - "loc": { - "start": { - "line": 91, - "column": 104 - }, - "end": { - "line": 91, - "column": 108 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 3331, - "end": 3342, - "loc": { - "start": { - "line": 91, - "column": 110 - }, - "end": { - "line": 91, - "column": 121 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3344, - "end": 3357, - "loc": { - "start": { - "line": 91, - "column": 123 - }, - "end": { - "line": 91, - "column": 136 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2676, - "end": 3164, - "loc": { - "start": { - "line": 80, - "column": 2 - }, - "end": { - "line": 89, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 3367, - "end": 3858, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 103, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3861, - "end": 4063, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 106, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3867, - "end": 3887, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 28 - }, - "identifierName": "writeWithoutResponse" - }, - "name": "writeWithoutResponse" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 3888, - "end": 3899, - "loc": { - "start": { - "line": 104, - "column": 29 - }, - "end": { - "line": 104, - "column": 40 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3901, - "end": 3914, - "loc": { - "start": { - "line": 104, - "column": 42 - }, - "end": { - "line": 104, - "column": 55 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 3916, - "end": 4063, - "loc": { - "start": { - "line": 104, - "column": 57 - }, - "end": { - "line": 106, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 3922, - "end": 4059, - "loc": { - "start": { - "line": 105, - "column": 4 - }, - "end": { - "line": 105, - "column": 141 - } - }, - "argument": { - "type": "CallExpression", - "start": 3929, - "end": 4058, - "loc": { - "start": { - "line": 105, - "column": 11 - }, - "end": { - "line": 105, - "column": 140 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3929, - "end": 3986, - "loc": { - "start": { - "line": 105, - "column": 11 - }, - "end": { - "line": 105, - "column": 68 - } - }, - "object": { - "type": "MemberExpression", - "start": 3929, - "end": 3942, - "loc": { - "start": { - "line": 105, - "column": 11 - }, - "end": { - "line": 105, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 3929, - "end": 3933, - "loc": { - "start": { - "line": 105, - "column": 11 - }, - "end": { - "line": 105, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 3934, - "end": 3942, - "loc": { - "start": { - "line": 105, - "column": 16 - }, - "end": { - "line": 105, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3943, - "end": 3986, - "loc": { - "start": { - "line": 105, - "column": 25 - }, - "end": { - "line": 105, - "column": 68 - }, - "identifierName": "writeCharacteristicWithoutResponseForDevice" - }, - "name": "writeCharacteristicWithoutResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3987, - "end": 4000, - "loc": { - "start": { - "line": 105, - "column": 69 - }, - "end": { - "line": 105, - "column": 82 - } - }, - "object": { - "type": "ThisExpression", - "start": 3987, - "end": 3991, - "loc": { - "start": { - "line": 105, - "column": 69 - }, - "end": { - "line": 105, - "column": 73 - } - } - }, - "property": { - "type": "Identifier", - "start": 3992, - "end": 4000, - "loc": { - "start": { - "line": 105, - "column": 74 - }, - "end": { - "line": 105, - "column": 82 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 4002, - "end": 4018, - "loc": { - "start": { - "line": 105, - "column": 84 - }, - "end": { - "line": 105, - "column": 100 - } - }, - "object": { - "type": "ThisExpression", - "start": 4002, - "end": 4006, - "loc": { - "start": { - "line": 105, - "column": 84 - }, - "end": { - "line": 105, - "column": 88 - } - } - }, - "property": { - "type": "Identifier", - "start": 4007, - "end": 4018, - "loc": { - "start": { - "line": 105, - "column": 89 - }, - "end": { - "line": 105, - "column": 100 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 4020, - "end": 4029, - "loc": { - "start": { - "line": 105, - "column": 102 - }, - "end": { - "line": 105, - "column": 111 - } - }, - "object": { - "type": "ThisExpression", - "start": 4020, - "end": 4024, - "loc": { - "start": { - "line": 105, - "column": 102 - }, - "end": { - "line": 105, - "column": 106 - } - } - }, - "property": { - "type": "Identifier", - "start": 4025, - "end": 4029, - "loc": { - "start": { - "line": 105, - "column": 107 - }, - "end": { - "line": 105, - "column": 111 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 4031, - "end": 4042, - "loc": { - "start": { - "line": 105, - "column": 113 - }, - "end": { - "line": 105, - "column": 124 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 4044, - "end": 4057, - "loc": { - "start": { - "line": 105, - "column": 126 - }, - "end": { - "line": 105, - "column": 139 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 3367, - "end": 3858, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 103, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * this characteristic with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Characteristic\n ", - "start": 4067, - "end": 4599, - "loc": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 117, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 4602, - "end": 4766, - "loc": { - "start": { - "line": 118, - "column": 2 - }, - "end": { - "line": 120, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 4602, - "end": 4609, - "loc": { - "start": { - "line": 118, - "column": 2 - }, - "end": { - "line": 118, - "column": 9 - }, - "identifierName": "monitor" - }, - "name": "monitor", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 4610, - "end": 4618, - "loc": { - "start": { - "line": 118, - "column": 10 - }, - "end": { - "line": 118, - "column": 18 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 4620, - "end": 4633, - "loc": { - "start": { - "line": 118, - "column": 20 - }, - "end": { - "line": 118, - "column": 33 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 4635, - "end": 4766, - "loc": { - "start": { - "line": 118, - "column": 35 - }, - "end": { - "line": 120, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 4641, - "end": 4762, - "loc": { - "start": { - "line": 119, - "column": 4 - }, - "end": { - "line": 119, - "column": 125 - } - }, - "argument": { - "type": "CallExpression", - "start": 4648, - "end": 4761, - "loc": { - "start": { - "line": 119, - "column": 11 - }, - "end": { - "line": 119, - "column": 124 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4648, - "end": 4692, - "loc": { - "start": { - "line": 119, - "column": 11 - }, - "end": { - "line": 119, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 4648, - "end": 4661, - "loc": { - "start": { - "line": 119, - "column": 11 - }, - "end": { - "line": 119, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 4648, - "end": 4652, - "loc": { - "start": { - "line": 119, - "column": 11 - }, - "end": { - "line": 119, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 4653, - "end": 4661, - "loc": { - "start": { - "line": 119, - "column": 16 - }, - "end": { - "line": 119, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 4662, - "end": 4692, - "loc": { - "start": { - "line": 119, - "column": 25 - }, - "end": { - "line": 119, - "column": 55 - }, - "identifierName": "monitorCharacteristicForDevice" - }, - "name": "monitorCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4693, - "end": 4706, - "loc": { - "start": { - "line": 119, - "column": 56 - }, - "end": { - "line": 119, - "column": 69 - } - }, - "object": { - "type": "ThisExpression", - "start": 4693, - "end": 4697, - "loc": { - "start": { - "line": 119, - "column": 56 - }, - "end": { - "line": 119, - "column": 60 - } - } - }, - "property": { - "type": "Identifier", - "start": 4698, - "end": 4706, - "loc": { - "start": { - "line": 119, - "column": 61 - }, - "end": { - "line": 119, - "column": 69 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 4708, - "end": 4724, - "loc": { - "start": { - "line": 119, - "column": 71 - }, - "end": { - "line": 119, - "column": 87 - } - }, - "object": { - "type": "ThisExpression", - "start": 4708, - "end": 4712, - "loc": { - "start": { - "line": 119, - "column": 71 - }, - "end": { - "line": 119, - "column": 75 - } - } - }, - "property": { - "type": "Identifier", - "start": 4713, - "end": 4724, - "loc": { - "start": { - "line": 119, - "column": 76 - }, - "end": { - "line": 119, - "column": 87 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 4726, - "end": 4735, - "loc": { - "start": { - "line": 119, - "column": 89 - }, - "end": { - "line": 119, - "column": 98 - } - }, - "object": { - "type": "ThisExpression", - "start": 4726, - "end": 4730, - "loc": { - "start": { - "line": 119, - "column": 89 - }, - "end": { - "line": 119, - "column": 93 - } - } - }, - "property": { - "type": "Identifier", - "start": 4731, - "end": 4735, - "loc": { - "start": { - "line": 119, - "column": 94 - }, - "end": { - "line": 119, - "column": 98 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 4737, - "end": 4745, - "loc": { - "start": { - "line": 119, - "column": 100 - }, - "end": { - "line": 119, - "column": 108 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 4747, - "end": 4760, - "loc": { - "start": { - "line": 119, - "column": 110 - }, - "end": { - "line": 119, - "column": 123 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * this characteristic with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Characteristic\n ", - "start": 4067, - "end": 4599, - "loc": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 117, - "column": 5 - } - } - } - ] - } - ] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Characteristic object.\n * \n * @export\n * @class Characteristic\n ", - "start": 263, - "end": 336, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 20, - "column": 3 - } - } - } - ], - "trailingComments": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Characteristic object.\n * \n * @export\n * @class Characteristic\n ", - "start": 263, - "end": 336, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 20, - "column": 3 - } - } - } - ] - } - ], - "directives": [ - { - "type": "Directive", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "value": { - "type": "DirectiveLiteral", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "value": "use strict", - "extra": { - "raw": "'use strict'", - "rawValue": "use strict" - } - } - } - ] - }, - "comments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Characteristic format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeCharacteristic\n ", - "start": 56, - "end": 231, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 12, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Characteristic object.\n * \n * @export\n * @class Characteristic\n ", - "start": 263, - "end": 336, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 20, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Characteristic} constructor.\n * \n * @param {NativeCharacteristic} props - NativeCharacteristic properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n * \n * @memberOf Characteristic\n ", - "start": 407, - "end": 681, - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Characteristic} UUID. ", - "start": 760, - "end": 825, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 36, - "column": 45 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID which owns this characteristic. ", - "start": 858, - "end": 947, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 69 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string}\n * @desc {@link Device} identifier which owns this characteristic. ", - "start": 994, - "end": 1087, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 74 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is readable. ", - "start": 1128, - "end": 1201, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 52 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing with response. ", - "start": 1246, - "end": 1346, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 79 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing without response. ", - "start": 1415, - "end": 1518, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 82 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is notifiable ", - "start": 1593, - "end": 1667, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 53 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc Current status of notification for this characteristic. ", - "start": 1716, - "end": 1809, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 72 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is indictable ", - "start": 1856, - "end": 1930, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 53 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string}\n * @desc Current characteristic value in Base64 encoding, may be `null` when not read. ", - "start": 1979, - "end": 2093, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 94 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value will be stored inside \n * returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2131, - "end": 2525, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 75, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2676, - "end": 3164, - "loc": { - "start": { - "line": 80, - "column": 2 - }, - "end": { - "line": 89, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 3367, - "end": 3858, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 103, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * this characteristic with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Characteristic\n ", - "start": 4067, - "end": 4599, - "loc": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 117, - "column": 5 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "use strict", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 15, - "end": 21, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleManager", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 33, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./BleManager", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 52, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 37 - }, - "end": { - "line": 3, - "column": 38 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Characteristic format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeCharacteristic\n ", - "start": 56, - "end": 231, - "loc": { - "start": { - "line": 6, - "column": 0 - }, - "end": { - "line": 12, - "column": 3 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 232, - "end": 237, - "loc": { - "start": { - "line": 13, - "column": 0 - }, - "end": { - "line": 13, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeCharacteristic", - "start": 238, - "end": 258, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 26 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 259, - "end": 260, - "loc": { - "start": { - "line": 13, - "column": 27 - }, - "end": { - "line": 13, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 260, - "end": 261, - "loc": { - "start": { - "line": 13, - "column": 28 - }, - "end": { - "line": 13, - "column": 29 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Characteristic object.\n * \n * @export\n * @class Characteristic\n ", - "start": 263, - "end": 336, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 20, - "column": 3 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 337, - "end": 343, - "loc": { - "start": { - "line": 21, - "column": 0 - }, - "end": { - "line": 21, - "column": 6 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 344, - "end": 351, - "loc": { - "start": { - "line": 21, - "column": 7 - }, - "end": { - "line": 21, - "column": 14 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 352, - "end": 357, - "loc": { - "start": { - "line": 21, - "column": 15 - }, - "end": { - "line": 21, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 358, - "end": 372, - "loc": { - "start": { - "line": 21, - "column": 21 - }, - "end": { - "line": 21, - "column": 35 - } - } - }, - { - "type": { - "label": "extends", - "keyword": "extends", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "extends", - "start": 373, - "end": 380, - "loc": { - "start": { - "line": 21, - "column": 36 - }, - "end": { - "line": 21, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeCharacteristic", - "start": 381, - "end": 401, - "loc": { - "start": { - "line": 21, - "column": 44 - }, - "end": { - "line": 21, - "column": 64 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 402, - "end": 403, - "loc": { - "start": { - "line": 21, - "column": 65 - }, - "end": { - "line": 21, - "column": 66 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Characteristic} constructor.\n * \n * @param {NativeCharacteristic} props - NativeCharacteristic properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n * \n * @memberOf Characteristic\n ", - "start": 407, - "end": 681, - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "constructor", - "start": 684, - "end": 695, - "loc": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 695, - "end": 696, - "loc": { - "start": { - "line": 32, - "column": 13 - }, - "end": { - "line": 32, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 696, - "end": 701, - "loc": { - "start": { - "line": 32, - "column": 14 - }, - "end": { - "line": 32, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 701, - "end": 702, - "loc": { - "start": { - "line": 32, - "column": 19 - }, - "end": { - "line": 32, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 703, - "end": 710, - "loc": { - "start": { - "line": 32, - "column": 21 - }, - "end": { - "line": 32, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 710, - "end": 711, - "loc": { - "start": { - "line": 32, - "column": 28 - }, - "end": { - "line": 32, - "column": 29 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 712, - "end": 713, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 32, - "column": 31 - } - } - }, - { - "type": { - "label": "super", - "keyword": "super", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "super", - "start": 718, - "end": 723, - "loc": { - "start": { - "line": 33, - "column": 4 - }, - "end": { - "line": 33, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 723, - "end": 724, - "loc": { - "start": { - "line": 33, - "column": 9 - }, - "end": { - "line": 33, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 724, - "end": 725, - "loc": { - "start": { - "line": 33, - "column": 10 - }, - "end": { - "line": 33, - "column": 11 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 725, - "end": 726, - "loc": { - "start": { - "line": 33, - "column": 11 - }, - "end": { - "line": 33, - "column": 12 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 731, - "end": 735, - "loc": { - "start": { - "line": 34, - "column": 4 - }, - "end": { - "line": 34, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 735, - "end": 736, - "loc": { - "start": { - "line": 34, - "column": 8 - }, - "end": { - "line": 34, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 736, - "end": 744, - "loc": { - "start": { - "line": 34, - "column": 9 - }, - "end": { - "line": 34, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 745, - "end": 746, - "loc": { - "start": { - "line": 34, - "column": 18 - }, - "end": { - "line": 34, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 747, - "end": 754, - "loc": { - "start": { - "line": 34, - "column": 20 - }, - "end": { - "line": 34, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 754, - "end": 755, - "loc": { - "start": { - "line": 34, - "column": 27 - }, - "end": { - "line": 34, - "column": 28 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Characteristic} UUID. ", - "start": 760, - "end": 825, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 36, - "column": 45 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 830, - "end": 834, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 834, - "end": 835, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 835, - "end": 839, - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 840, - "end": 841, - "loc": { - "start": { - "line": 37, - "column": 14 - }, - "end": { - "line": 37, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 842, - "end": 847, - "loc": { - "start": { - "line": 37, - "column": 16 - }, - "end": { - "line": 37, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 847, - "end": 848, - "loc": { - "start": { - "line": 37, - "column": 21 - }, - "end": { - "line": 37, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 848, - "end": 852, - "loc": { - "start": { - "line": 37, - "column": 22 - }, - "end": { - "line": 37, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 852, - "end": 853, - "loc": { - "start": { - "line": 37, - "column": 26 - }, - "end": { - "line": 37, - "column": 27 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID which owns this characteristic. ", - "start": 858, - "end": 947, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 69 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 952, - "end": 956, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 956, - "end": 957, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 957, - "end": 968, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 969, - "end": 970, - "loc": { - "start": { - "line": 40, - "column": 21 - }, - "end": { - "line": 40, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 971, - "end": 976, - "loc": { - "start": { - "line": 40, - "column": 23 - }, - "end": { - "line": 40, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 976, - "end": 977, - "loc": { - "start": { - "line": 40, - "column": 28 - }, - "end": { - "line": 40, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 977, - "end": 988, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 40, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 988, - "end": 989, - "loc": { - "start": { - "line": 40, - "column": 40 - }, - "end": { - "line": 40, - "column": 41 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string}\n * @desc {@link Device} identifier which owns this characteristic. ", - "start": 994, - "end": 1087, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 74 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1092, - "end": 1096, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1096, - "end": 1097, - "loc": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 1097, - "end": 1105, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1106, - "end": 1107, - "loc": { - "start": { - "line": 43, - "column": 18 - }, - "end": { - "line": 43, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1108, - "end": 1113, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1113, - "end": 1114, - "loc": { - "start": { - "line": 43, - "column": 25 - }, - "end": { - "line": 43, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 1114, - "end": 1122, - "loc": { - "start": { - "line": 43, - "column": 26 - }, - "end": { - "line": 43, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1122, - "end": 1123, - "loc": { - "start": { - "line": 43, - "column": 34 - }, - "end": { - "line": 43, - "column": 35 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is readable. ", - "start": 1128, - "end": 1201, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 52 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1206, - "end": 1210, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1210, - "end": 1211, - "loc": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isReadable", - "start": 1211, - "end": 1221, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 19 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1222, - "end": 1223, - "loc": { - "start": { - "line": 46, - "column": 20 - }, - "end": { - "line": 46, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1224, - "end": 1229, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 27 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1229, - "end": 1230, - "loc": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 28 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isReadable", - "start": 1230, - "end": 1240, - "loc": { - "start": { - "line": 46, - "column": 28 - }, - "end": { - "line": 46, - "column": 38 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1240, - "end": 1241, - "loc": { - "start": { - "line": 46, - "column": 38 - }, - "end": { - "line": 46, - "column": 39 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing with response. ", - "start": 1246, - "end": 1346, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 79 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1351, - "end": 1355, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1355, - "end": 1356, - "loc": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isWritableWithResponse", - "start": 1356, - "end": 1378, - "loc": { - "start": { - "line": 49, - "column": 9 - }, - "end": { - "line": 49, - "column": 31 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1379, - "end": 1380, - "loc": { - "start": { - "line": 49, - "column": 32 - }, - "end": { - "line": 49, - "column": 33 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1381, - "end": 1386, - "loc": { - "start": { - "line": 49, - "column": 34 - }, - "end": { - "line": 49, - "column": 39 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1386, - "end": 1387, - "loc": { - "start": { - "line": 49, - "column": 39 - }, - "end": { - "line": 49, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isWritableWithResponse", - "start": 1387, - "end": 1409, - "loc": { - "start": { - "line": 49, - "column": 40 - }, - "end": { - "line": 49, - "column": 62 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1409, - "end": 1410, - "loc": { - "start": { - "line": 49, - "column": 62 - }, - "end": { - "line": 49, - "column": 63 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is writable when writing without response. ", - "start": 1415, - "end": 1518, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 82 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1523, - "end": 1527, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1527, - "end": 1528, - "loc": { - "start": { - "line": 52, - "column": 8 - }, - "end": { - "line": 52, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isWritableWithoutResponse", - "start": 1528, - "end": 1553, - "loc": { - "start": { - "line": 52, - "column": 9 - }, - "end": { - "line": 52, - "column": 34 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1554, - "end": 1555, - "loc": { - "start": { - "line": 52, - "column": 35 - }, - "end": { - "line": 52, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1556, - "end": 1561, - "loc": { - "start": { - "line": 52, - "column": 37 - }, - "end": { - "line": 52, - "column": 42 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1561, - "end": 1562, - "loc": { - "start": { - "line": 52, - "column": 42 - }, - "end": { - "line": 52, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isWritableWithoutResponse", - "start": 1562, - "end": 1587, - "loc": { - "start": { - "line": 52, - "column": 43 - }, - "end": { - "line": 52, - "column": 68 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1587, - "end": 1588, - "loc": { - "start": { - "line": 52, - "column": 68 - }, - "end": { - "line": 52, - "column": 69 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is notifiable ", - "start": 1593, - "end": 1667, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 53 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1672, - "end": 1676, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1676, - "end": 1677, - "loc": { - "start": { - "line": 55, - "column": 8 - }, - "end": { - "line": 55, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isNotifiable", - "start": 1677, - "end": 1689, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1690, - "end": 1691, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1692, - "end": 1697, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1697, - "end": 1698, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 55, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isNotifiable", - "start": 1698, - "end": 1710, - "loc": { - "start": { - "line": 55, - "column": 30 - }, - "end": { - "line": 55, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1710, - "end": 1711, - "loc": { - "start": { - "line": 55, - "column": 42 - }, - "end": { - "line": 55, - "column": 43 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc Current status of notification for this characteristic. ", - "start": 1716, - "end": 1809, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 72 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1814, - "end": 1818, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1818, - "end": 1819, - "loc": { - "start": { - "line": 58, - "column": 8 - }, - "end": { - "line": 58, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isNotifying", - "start": 1819, - "end": 1830, - "loc": { - "start": { - "line": 58, - "column": 9 - }, - "end": { - "line": 58, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1831, - "end": 1832, - "loc": { - "start": { - "line": 58, - "column": 21 - }, - "end": { - "line": 58, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1833, - "end": 1838, - "loc": { - "start": { - "line": 58, - "column": 23 - }, - "end": { - "line": 58, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1838, - "end": 1839, - "loc": { - "start": { - "line": 58, - "column": 28 - }, - "end": { - "line": 58, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isNotifying", - "start": 1839, - "end": 1850, - "loc": { - "start": { - "line": 58, - "column": 29 - }, - "end": { - "line": 58, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1850, - "end": 1851, - "loc": { - "start": { - "line": 58, - "column": 40 - }, - "end": { - "line": 58, - "column": 41 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if characteristic is indictable ", - "start": 1856, - "end": 1930, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 53 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1935, - "end": 1939, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1939, - "end": 1940, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isIndictable", - "start": 1940, - "end": 1952, - "loc": { - "start": { - "line": 61, - "column": 9 - }, - "end": { - "line": 61, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1953, - "end": 1954, - "loc": { - "start": { - "line": 61, - "column": 22 - }, - "end": { - "line": 61, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1955, - "end": 1960, - "loc": { - "start": { - "line": 61, - "column": 24 - }, - "end": { - "line": 61, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1960, - "end": 1961, - "loc": { - "start": { - "line": 61, - "column": 29 - }, - "end": { - "line": 61, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isIndictable", - "start": 1961, - "end": 1973, - "loc": { - "start": { - "line": 61, - "column": 30 - }, - "end": { - "line": 61, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1973, - "end": 1974, - "loc": { - "start": { - "line": 61, - "column": 42 - }, - "end": { - "line": 61, - "column": 43 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string}\n * @desc Current characteristic value in Base64 encoding, may be `null` when not read. ", - "start": 1979, - "end": 2093, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 94 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2098, - "end": 2102, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2102, - "end": 2103, - "loc": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "value", - "start": 2103, - "end": 2108, - "loc": { - "start": { - "line": 64, - "column": 9 - }, - "end": { - "line": 64, - "column": 14 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2109, - "end": 2110, - "loc": { - "start": { - "line": 64, - "column": 15 - }, - "end": { - "line": 64, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 2111, - "end": 2116, - "loc": { - "start": { - "line": 64, - "column": 17 - }, - "end": { - "line": 64, - "column": 22 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2116, - "end": 2117, - "loc": { - "start": { - "line": 64, - "column": 22 - }, - "end": { - "line": 64, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "value", - "start": 2117, - "end": 2122, - "loc": { - "start": { - "line": 64, - "column": 23 - }, - "end": { - "line": 64, - "column": 28 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2122, - "end": 2123, - "loc": { - "start": { - "line": 64, - "column": 28 - }, - "end": { - "line": 64, - "column": 29 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2126, - "end": 2127, - "loc": { - "start": { - "line": 65, - "column": 2 - }, - "end": { - "line": 65, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value will be stored inside \n * returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2131, - "end": 2525, - "loc": { - "start": { - "line": 67, - "column": 2 - }, - "end": { - "line": 75, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 2528, - "end": 2533, - "loc": { - "start": { - "line": 76, - "column": 2 - }, - "end": { - "line": 76, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "read", - "start": 2534, - "end": 2538, - "loc": { - "start": { - "line": 76, - "column": 8 - }, - "end": { - "line": 76, - "column": 12 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2538, - "end": 2539, - "loc": { - "start": { - "line": 76, - "column": 12 - }, - "end": { - "line": 76, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 2539, - "end": 2552, - "loc": { - "start": { - "line": 76, - "column": 13 - }, - "end": { - "line": 76, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2552, - "end": 2553, - "loc": { - "start": { - "line": 76, - "column": 26 - }, - "end": { - "line": 76, - "column": 27 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2554, - "end": 2555, - "loc": { - "start": { - "line": 76, - "column": 28 - }, - "end": { - "line": 76, - "column": 29 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2560, - "end": 2566, - "loc": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 77, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2567, - "end": 2571, - "loc": { - "start": { - "line": 77, - "column": 11 - }, - "end": { - "line": 77, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2571, - "end": 2572, - "loc": { - "start": { - "line": 77, - "column": 15 - }, - "end": { - "line": 77, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 2572, - "end": 2580, - "loc": { - "start": { - "line": 77, - "column": 16 - }, - "end": { - "line": 77, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2580, - "end": 2581, - "loc": { - "start": { - "line": 77, - "column": 24 - }, - "end": { - "line": 77, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForDevice", - "start": 2581, - "end": 2608, - "loc": { - "start": { - "line": 77, - "column": 25 - }, - "end": { - "line": 77, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2608, - "end": 2609, - "loc": { - "start": { - "line": 77, - "column": 52 - }, - "end": { - "line": 77, - "column": 53 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2609, - "end": 2613, - "loc": { - "start": { - "line": 77, - "column": 53 - }, - "end": { - "line": 77, - "column": 57 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2613, - "end": 2614, - "loc": { - "start": { - "line": 77, - "column": 57 - }, - "end": { - "line": 77, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 2614, - "end": 2622, - "loc": { - "start": { - "line": 77, - "column": 58 - }, - "end": { - "line": 77, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2622, - "end": 2623, - "loc": { - "start": { - "line": 77, - "column": 66 - }, - "end": { - "line": 77, - "column": 67 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2624, - "end": 2628, - "loc": { - "start": { - "line": 77, - "column": 68 - }, - "end": { - "line": 77, - "column": 72 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2628, - "end": 2629, - "loc": { - "start": { - "line": 77, - "column": 72 - }, - "end": { - "line": 77, - "column": 73 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 2629, - "end": 2640, - "loc": { - "start": { - "line": 77, - "column": 73 - }, - "end": { - "line": 77, - "column": 84 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2640, - "end": 2641, - "loc": { - "start": { - "line": 77, - "column": 84 - }, - "end": { - "line": 77, - "column": 85 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2642, - "end": 2646, - "loc": { - "start": { - "line": 77, - "column": 86 - }, - "end": { - "line": 77, - "column": 90 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2646, - "end": 2647, - "loc": { - "start": { - "line": 77, - "column": 90 - }, - "end": { - "line": 77, - "column": 91 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 2647, - "end": 2651, - "loc": { - "start": { - "line": 77, - "column": 91 - }, - "end": { - "line": 77, - "column": 95 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2651, - "end": 2652, - "loc": { - "start": { - "line": 77, - "column": 95 - }, - "end": { - "line": 77, - "column": 96 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 2653, - "end": 2666, - "loc": { - "start": { - "line": 77, - "column": 97 - }, - "end": { - "line": 77, - "column": 110 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2666, - "end": 2667, - "loc": { - "start": { - "line": 77, - "column": 110 - }, - "end": { - "line": 77, - "column": 111 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2667, - "end": 2668, - "loc": { - "start": { - "line": 77, - "column": 111 - }, - "end": { - "line": 77, - "column": 112 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2671, - "end": 2672, - "loc": { - "start": { - "line": 78, - "column": 2 - }, - "end": { - "line": 78, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 2676, - "end": 3164, - "loc": { - "start": { - "line": 80, - "column": 2 - }, - "end": { - "line": 89, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 3167, - "end": 3172, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 90, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeWithResponse", - "start": 3173, - "end": 3190, - "loc": { - "start": { - "line": 90, - "column": 8 - }, - "end": { - "line": 90, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3190, - "end": 3191, - "loc": { - "start": { - "line": 90, - "column": 25 - }, - "end": { - "line": 90, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 3191, - "end": 3202, - "loc": { - "start": { - "line": 90, - "column": 26 - }, - "end": { - "line": 90, - "column": 37 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3202, - "end": 3203, - "loc": { - "start": { - "line": 90, - "column": 37 - }, - "end": { - "line": 90, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3204, - "end": 3217, - "loc": { - "start": { - "line": 90, - "column": 39 - }, - "end": { - "line": 90, - "column": 52 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3217, - "end": 3218, - "loc": { - "start": { - "line": 90, - "column": 52 - }, - "end": { - "line": 90, - "column": 53 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3219, - "end": 3220, - "loc": { - "start": { - "line": 90, - "column": 54 - }, - "end": { - "line": 90, - "column": 55 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3225, - "end": 3231, - "loc": { - "start": { - "line": 91, - "column": 4 - }, - "end": { - "line": 91, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3232, - "end": 3236, - "loc": { - "start": { - "line": 91, - "column": 11 - }, - "end": { - "line": 91, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3236, - "end": 3237, - "loc": { - "start": { - "line": 91, - "column": 15 - }, - "end": { - "line": 91, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 3237, - "end": 3245, - "loc": { - "start": { - "line": 91, - "column": 16 - }, - "end": { - "line": 91, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3245, - "end": 3246, - "loc": { - "start": { - "line": 91, - "column": 24 - }, - "end": { - "line": 91, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponseForDevice", - "start": 3246, - "end": 3286, - "loc": { - "start": { - "line": 91, - "column": 25 - }, - "end": { - "line": 91, - "column": 65 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3286, - "end": 3287, - "loc": { - "start": { - "line": 91, - "column": 65 - }, - "end": { - "line": 91, - "column": 66 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3287, - "end": 3291, - "loc": { - "start": { - "line": 91, - "column": 66 - }, - "end": { - "line": 91, - "column": 70 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3291, - "end": 3292, - "loc": { - "start": { - "line": 91, - "column": 70 - }, - "end": { - "line": 91, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 3292, - "end": 3300, - "loc": { - "start": { - "line": 91, - "column": 71 - }, - "end": { - "line": 91, - "column": 79 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3300, - "end": 3301, - "loc": { - "start": { - "line": 91, - "column": 79 - }, - "end": { - "line": 91, - "column": 80 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3302, - "end": 3306, - "loc": { - "start": { - "line": 91, - "column": 81 - }, - "end": { - "line": 91, - "column": 85 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3306, - "end": 3307, - "loc": { - "start": { - "line": 91, - "column": 85 - }, - "end": { - "line": 91, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 3307, - "end": 3318, - "loc": { - "start": { - "line": 91, - "column": 86 - }, - "end": { - "line": 91, - "column": 97 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3318, - "end": 3319, - "loc": { - "start": { - "line": 91, - "column": 97 - }, - "end": { - "line": 91, - "column": 98 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3320, - "end": 3324, - "loc": { - "start": { - "line": 91, - "column": 99 - }, - "end": { - "line": 91, - "column": 103 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3324, - "end": 3325, - "loc": { - "start": { - "line": 91, - "column": 103 - }, - "end": { - "line": 91, - "column": 104 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 3325, - "end": 3329, - "loc": { - "start": { - "line": 91, - "column": 104 - }, - "end": { - "line": 91, - "column": 108 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3329, - "end": 3330, - "loc": { - "start": { - "line": 91, - "column": 108 - }, - "end": { - "line": 91, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 3331, - "end": 3342, - "loc": { - "start": { - "line": 91, - "column": 110 - }, - "end": { - "line": 91, - "column": 121 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3342, - "end": 3343, - "loc": { - "start": { - "line": 91, - "column": 121 - }, - "end": { - "line": 91, - "column": 122 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3344, - "end": 3357, - "loc": { - "start": { - "line": 91, - "column": 123 - }, - "end": { - "line": 91, - "column": 136 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3357, - "end": 3358, - "loc": { - "start": { - "line": 91, - "column": 136 - }, - "end": { - "line": 91, - "column": 137 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3358, - "end": 3359, - "loc": { - "start": { - "line": 91, - "column": 137 - }, - "end": { - "line": 91, - "column": 138 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3362, - "end": 3363, - "loc": { - "start": { - "line": 92, - "column": 2 - }, - "end": { - "line": 92, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} Promise which emits this characteristic. Latest value of characteristic may \n * not be stored inside returned object.\n * \n * @memberOf Characteristic\n ", - "start": 3367, - "end": 3858, - "loc": { - "start": { - "line": 94, - "column": 2 - }, - "end": { - "line": 103, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 3861, - "end": 3866, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 104, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeWithoutResponse", - "start": 3867, - "end": 3887, - "loc": { - "start": { - "line": 104, - "column": 8 - }, - "end": { - "line": 104, - "column": 28 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3887, - "end": 3888, - "loc": { - "start": { - "line": 104, - "column": 28 - }, - "end": { - "line": 104, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 3888, - "end": 3899, - "loc": { - "start": { - "line": 104, - "column": 29 - }, - "end": { - "line": 104, - "column": 40 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3899, - "end": 3900, - "loc": { - "start": { - "line": 104, - "column": 40 - }, - "end": { - "line": 104, - "column": 41 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3901, - "end": 3914, - "loc": { - "start": { - "line": 104, - "column": 42 - }, - "end": { - "line": 104, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3914, - "end": 3915, - "loc": { - "start": { - "line": 104, - "column": 55 - }, - "end": { - "line": 104, - "column": 56 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3916, - "end": 3917, - "loc": { - "start": { - "line": 104, - "column": 57 - }, - "end": { - "line": 104, - "column": 58 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3922, - "end": 3928, - "loc": { - "start": { - "line": 105, - "column": 4 - }, - "end": { - "line": 105, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3929, - "end": 3933, - "loc": { - "start": { - "line": 105, - "column": 11 - }, - "end": { - "line": 105, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3933, - "end": 3934, - "loc": { - "start": { - "line": 105, - "column": 15 - }, - "end": { - "line": 105, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 3934, - "end": 3942, - "loc": { - "start": { - "line": 105, - "column": 16 - }, - "end": { - "line": 105, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3942, - "end": 3943, - "loc": { - "start": { - "line": 105, - "column": 24 - }, - "end": { - "line": 105, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponseForDevice", - "start": 3943, - "end": 3986, - "loc": { - "start": { - "line": 105, - "column": 25 - }, - "end": { - "line": 105, - "column": 68 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3986, - "end": 3987, - "loc": { - "start": { - "line": 105, - "column": 68 - }, - "end": { - "line": 105, - "column": 69 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3987, - "end": 3991, - "loc": { - "start": { - "line": 105, - "column": 69 - }, - "end": { - "line": 105, - "column": 73 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3991, - "end": 3992, - "loc": { - "start": { - "line": 105, - "column": 73 - }, - "end": { - "line": 105, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 3992, - "end": 4000, - "loc": { - "start": { - "line": 105, - "column": 74 - }, - "end": { - "line": 105, - "column": 82 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4000, - "end": 4001, - "loc": { - "start": { - "line": 105, - "column": 82 - }, - "end": { - "line": 105, - "column": 83 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4002, - "end": 4006, - "loc": { - "start": { - "line": 105, - "column": 84 - }, - "end": { - "line": 105, - "column": 88 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4006, - "end": 4007, - "loc": { - "start": { - "line": 105, - "column": 88 - }, - "end": { - "line": 105, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 4007, - "end": 4018, - "loc": { - "start": { - "line": 105, - "column": 89 - }, - "end": { - "line": 105, - "column": 100 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4018, - "end": 4019, - "loc": { - "start": { - "line": 105, - "column": 100 - }, - "end": { - "line": 105, - "column": 101 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4020, - "end": 4024, - "loc": { - "start": { - "line": 105, - "column": 102 - }, - "end": { - "line": 105, - "column": 106 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4024, - "end": 4025, - "loc": { - "start": { - "line": 105, - "column": 106 - }, - "end": { - "line": 105, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 4025, - "end": 4029, - "loc": { - "start": { - "line": 105, - "column": 107 - }, - "end": { - "line": 105, - "column": 111 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4029, - "end": 4030, - "loc": { - "start": { - "line": 105, - "column": 111 - }, - "end": { - "line": 105, - "column": 112 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 4031, - "end": 4042, - "loc": { - "start": { - "line": 105, - "column": 113 - }, - "end": { - "line": 105, - "column": 124 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4042, - "end": 4043, - "loc": { - "start": { - "line": 105, - "column": 124 - }, - "end": { - "line": 105, - "column": 125 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 4044, - "end": 4057, - "loc": { - "start": { - "line": 105, - "column": 126 - }, - "end": { - "line": 105, - "column": 139 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4057, - "end": 4058, - "loc": { - "start": { - "line": 105, - "column": 139 - }, - "end": { - "line": 105, - "column": 140 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4058, - "end": 4059, - "loc": { - "start": { - "line": 105, - "column": 140 - }, - "end": { - "line": 105, - "column": 141 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4062, - "end": 4063, - "loc": { - "start": { - "line": 106, - "column": 2 - }, - "end": { - "line": 106, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * this characteristic with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Characteristic\n ", - "start": 4067, - "end": 4599, - "loc": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 117, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitor", - "start": 4602, - "end": 4609, - "loc": { - "start": { - "line": 118, - "column": 2 - }, - "end": { - "line": 118, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4609, - "end": 4610, - "loc": { - "start": { - "line": 118, - "column": 9 - }, - "end": { - "line": 118, - "column": 10 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 4610, - "end": 4618, - "loc": { - "start": { - "line": 118, - "column": 10 - }, - "end": { - "line": 118, - "column": 18 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4618, - "end": 4619, - "loc": { - "start": { - "line": 118, - "column": 18 - }, - "end": { - "line": 118, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 4620, - "end": 4633, - "loc": { - "start": { - "line": 118, - "column": 20 - }, - "end": { - "line": 118, - "column": 33 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4633, - "end": 4634, - "loc": { - "start": { - "line": 118, - "column": 33 - }, - "end": { - "line": 118, - "column": 34 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4635, - "end": 4636, - "loc": { - "start": { - "line": 118, - "column": 35 - }, - "end": { - "line": 118, - "column": 36 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 4641, - "end": 4647, - "loc": { - "start": { - "line": 119, - "column": 4 - }, - "end": { - "line": 119, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4648, - "end": 4652, - "loc": { - "start": { - "line": 119, - "column": 11 - }, - "end": { - "line": 119, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4652, - "end": 4653, - "loc": { - "start": { - "line": 119, - "column": 15 - }, - "end": { - "line": 119, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 4653, - "end": 4661, - "loc": { - "start": { - "line": 119, - "column": 16 - }, - "end": { - "line": 119, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4661, - "end": 4662, - "loc": { - "start": { - "line": 119, - "column": 24 - }, - "end": { - "line": 119, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForDevice", - "start": 4662, - "end": 4692, - "loc": { - "start": { - "line": 119, - "column": 25 - }, - "end": { - "line": 119, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4692, - "end": 4693, - "loc": { - "start": { - "line": 119, - "column": 55 - }, - "end": { - "line": 119, - "column": 56 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4693, - "end": 4697, - "loc": { - "start": { - "line": 119, - "column": 56 - }, - "end": { - "line": 119, - "column": 60 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4697, - "end": 4698, - "loc": { - "start": { - "line": 119, - "column": 60 - }, - "end": { - "line": 119, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 4698, - "end": 4706, - "loc": { - "start": { - "line": 119, - "column": 61 - }, - "end": { - "line": 119, - "column": 69 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4706, - "end": 4707, - "loc": { - "start": { - "line": 119, - "column": 69 - }, - "end": { - "line": 119, - "column": 70 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4708, - "end": 4712, - "loc": { - "start": { - "line": 119, - "column": 71 - }, - "end": { - "line": 119, - "column": 75 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4712, - "end": 4713, - "loc": { - "start": { - "line": 119, - "column": 75 - }, - "end": { - "line": 119, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 4713, - "end": 4724, - "loc": { - "start": { - "line": 119, - "column": 76 - }, - "end": { - "line": 119, - "column": 87 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4724, - "end": 4725, - "loc": { - "start": { - "line": 119, - "column": 87 - }, - "end": { - "line": 119, - "column": 88 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4726, - "end": 4730, - "loc": { - "start": { - "line": 119, - "column": 89 - }, - "end": { - "line": 119, - "column": 93 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4730, - "end": 4731, - "loc": { - "start": { - "line": 119, - "column": 93 - }, - "end": { - "line": 119, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 4731, - "end": 4735, - "loc": { - "start": { - "line": 119, - "column": 94 - }, - "end": { - "line": 119, - "column": 98 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4735, - "end": 4736, - "loc": { - "start": { - "line": 119, - "column": 98 - }, - "end": { - "line": 119, - "column": 99 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 4737, - "end": 4745, - "loc": { - "start": { - "line": 119, - "column": 100 - }, - "end": { - "line": 119, - "column": 108 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4745, - "end": 4746, - "loc": { - "start": { - "line": 119, - "column": 108 - }, - "end": { - "line": 119, - "column": 109 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 4747, - "end": 4760, - "loc": { - "start": { - "line": 119, - "column": 110 - }, - "end": { - "line": 119, - "column": 123 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4760, - "end": 4761, - "loc": { - "start": { - "line": 119, - "column": 123 - }, - "end": { - "line": 119, - "column": 124 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4761, - "end": 4762, - "loc": { - "start": { - "line": 119, - "column": 124 - }, - "end": { - "line": 119, - "column": 125 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4765, - "end": 4766, - "loc": { - "start": { - "line": 120, - "column": 2 - }, - "end": { - "line": 120, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4767, - "end": 4768, - "loc": { - "start": { - "line": 121, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4768, - "end": 4768, - "loc": { - "start": { - "line": 121, - "column": 1 - }, - "end": { - "line": 121, - "column": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/src/Device.js.json b/docs/ast/source/src/Device.js.json deleted file mode 100644 index 5d2b8105..00000000 --- a/docs/ast/source/src/Device.js.json +++ /dev/null @@ -1,16804 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 8435, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 216, - "column": 1 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 8435, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 216, - "column": 1 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ImportDeclaration", - "start": 15, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 38 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - }, - "local": { - "type": "Identifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - }, - "identifierName": "BleManager" - }, - "name": "BleManager" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - }, - "extra": { - "rawValue": "./BleManager", - "raw": "'./BleManager'" - }, - "value": "./BleManager" - } - }, - { - "type": "ImportDeclaration", - "start": 54, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 46 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - } - }, - "local": { - "type": "Identifier", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 81, - "end": 99, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 45 - } - }, - "extra": { - "rawValue": "./Characteristic", - "raw": "'./Characteristic'" - }, - "value": "./Characteristic" - } - }, - { - "type": "ImportDeclaration", - "start": 101, - "end": 133, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 32 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 108, - "end": 115, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - } - }, - "local": { - "type": "Identifier", - "start": 108, - "end": 115, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - }, - "identifierName": "Service" - }, - "name": "Service" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 121, - "end": 132, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 31 - } - }, - "extra": { - "rawValue": "./Service", - "raw": "'./Service'" - }, - "value": "./Service" - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Device format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeDevice\n ", - "start": 136, - "end": 295, - "loc": { - "start": { - "line": 8, - "column": 0 - }, - "end": { - "line": 14, - "column": 3 - } - } - } - ] - }, - { - "type": "ClassDeclaration", - "start": 296, - "end": 317, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 15, - "column": 21 - } - }, - "id": { - "type": "Identifier", - "start": 302, - "end": 314, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 18 - }, - "identifierName": "NativeDevice" - }, - "name": "NativeDevice", - "leadingComments": null - }, - "superClass": null, - "body": { - "type": "ClassBody", - "start": 315, - "end": 317, - "loc": { - "start": { - "line": 15, - "column": 19 - }, - "end": { - "line": 15, - "column": 21 - } - }, - "body": [], - "leadingComments": null, - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Device format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeDevice\n ", - "start": 136, - "end": 295, - "loc": { - "start": { - "line": 8, - "column": 0 - }, - "end": { - "line": 14, - "column": 3 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Device object.\n * \n * @export\n * @class Device\n * @extends {NativeDevice}\n ", - "start": 319, - "end": 403, - "loc": { - "start": { - "line": 17, - "column": 0 - }, - "end": { - "line": 23, - "column": 3 - } - } - } - ] - }, - { - "type": "ExportDefaultDeclaration", - "start": 404, - "end": 8435, - "loc": { - "start": { - "line": 24, - "column": 0 - }, - "end": { - "line": 216, - "column": 1 - } - }, - "declaration": { - "type": "ClassDeclaration", - "start": 419, - "end": 8435, - "loc": { - "start": { - "line": 24, - "column": 15 - }, - "end": { - "line": 216, - "column": 1 - } - }, - "id": { - "type": "Identifier", - "start": 425, - "end": 431, - "loc": { - "start": { - "line": 24, - "column": 21 - }, - "end": { - "line": 24, - "column": 27 - }, - "identifierName": "Device" - }, - "name": "Device", - "leadingComments": null - }, - "superClass": { - "type": "Identifier", - "start": 440, - "end": 452, - "loc": { - "start": { - "line": 24, - "column": 36 - }, - "end": { - "line": 24, - "column": 48 - }, - "identifierName": "NativeDevice" - }, - "name": "NativeDevice" - }, - "body": { - "type": "ClassBody", - "start": 453, - "end": 8435, - "loc": { - "start": { - "line": 24, - "column": 49 - }, - "end": { - "line": 216, - "column": 1 - } - }, - "body": [ - { - "type": "ClassMethod", - "start": 702, - "end": 2127, - "loc": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 68, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 702, - "end": 713, - "loc": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 13 - }, - "identifierName": "constructor" - }, - "name": "constructor", - "leadingComments": null - }, - "static": false, - "kind": "constructor", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 714, - "end": 719, - "loc": { - "start": { - "line": 35, - "column": 14 - }, - "end": { - "line": 35, - "column": 19 - }, - "identifierName": "props" - }, - "name": "props" - }, - { - "type": "Identifier", - "start": 721, - "end": 728, - "loc": { - "start": { - "line": 35, - "column": 21 - }, - "end": { - "line": 35, - "column": 28 - }, - "identifierName": "manager" - }, - "name": "manager" - } - ], - "body": { - "type": "BlockStatement", - "start": 730, - "end": 2127, - "loc": { - "start": { - "line": 35, - "column": 30 - }, - "end": { - "line": 68, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 736, - "end": 744, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 12 - } - }, - "expression": { - "type": "CallExpression", - "start": 736, - "end": 743, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 11 - } - }, - "callee": { - "type": "Super", - "start": 736, - "end": 741, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 9 - } - } - }, - "arguments": [] - } - }, - { - "type": "ExpressionStatement", - "start": 749, - "end": 773, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 749, - "end": 772, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 749, - "end": 762, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 17 - } - }, - "object": { - "type": "ThisExpression", - "start": 749, - "end": 753, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 754, - "end": 762, - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 17 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 765, - "end": 772, - "loc": { - "start": { - "line": 37, - "column": 20 - }, - "end": { - "line": 37, - "column": 27 - }, - "identifierName": "manager" - }, - "name": "manager" - } - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc Device identifier. ", - "start": 778, - "end": 833, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 35 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 838, - "end": 857, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 23 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 838, - "end": 856, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 22 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 838, - "end": 845, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 11 - } - }, - "object": { - "type": "ThisExpression", - "start": 838, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 843, - "end": 845, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 11 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 848, - "end": 856, - "loc": { - "start": { - "line": 40, - "column": 14 - }, - "end": { - "line": 40, - "column": 22 - } - }, - "object": { - "type": "Identifier", - "start": 848, - "end": 853, - "loc": { - "start": { - "line": 40, - "column": 14 - }, - "end": { - "line": 40, - "column": 19 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 854, - "end": 856, - "loc": { - "start": { - "line": 40, - "column": 20 - }, - "end": { - "line": 40, - "column": 22 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc Device identifier. ", - "start": 778, - "end": 833, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 35 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device name, may be `null`. ", - "start": 862, - "end": 927, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 44 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 932, - "end": 955, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 932, - "end": 954, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 932, - "end": 941, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 13 - } - }, - "object": { - "type": "ThisExpression", - "start": 932, - "end": 936, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 937, - "end": 941, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 13 - }, - "identifierName": "name" - }, - "name": "name" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 944, - "end": 954, - "loc": { - "start": { - "line": 43, - "column": 16 - }, - "end": { - "line": 43, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 944, - "end": 949, - "loc": { - "start": { - "line": 43, - "column": 16 - }, - "end": { - "line": 43, - "column": 21 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 950, - "end": 954, - "loc": { - "start": { - "line": 43, - "column": 22 - }, - "end": { - "line": 43, - "column": 26 - }, - "identifierName": "name" - }, - "name": "name" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device name, may be `null`. ", - "start": 862, - "end": 927, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 44 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Device Received Signal Strength Indication value, may be `null`. ", - "start": 960, - "end": 1062, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 81 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1067, - "end": 1090, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1067, - "end": 1089, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1067, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 13 - } - }, - "object": { - "type": "ThisExpression", - "start": 1067, - "end": 1071, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1072, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 13 - }, - "identifierName": "rssi" - }, - "name": "rssi" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1079, - "end": 1089, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 1079, - "end": 1084, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 21 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1085, - "end": 1089, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 26 - }, - "identifierName": "rssi" - }, - "name": "rssi" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Device Received Signal Strength Indication value, may be `null`. ", - "start": 960, - "end": 1062, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 81 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device Manufacturer Data in Base64 format, may be `null`. ", - "start": 1095, - "end": 1190, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 74 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1195, - "end": 1242, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 51 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1195, - "end": 1241, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 50 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1195, - "end": 1216, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 25 - } - }, - "object": { - "type": "ThisExpression", - "start": 1195, - "end": 1199, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1200, - "end": 1216, - "loc": { - "start": { - "line": 49, - "column": 9 - }, - "end": { - "line": 49, - "column": 25 - }, - "identifierName": "manufacturerData" - }, - "name": "manufacturerData" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1219, - "end": 1241, - "loc": { - "start": { - "line": 49, - "column": 28 - }, - "end": { - "line": 49, - "column": 50 - } - }, - "object": { - "type": "Identifier", - "start": 1219, - "end": 1224, - "loc": { - "start": { - "line": 49, - "column": 28 - }, - "end": { - "line": 49, - "column": 33 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1225, - "end": 1241, - "loc": { - "start": { - "line": 49, - "column": 34 - }, - "end": { - "line": 49, - "column": 50 - }, - "identifierName": "manufacturerData" - }, - "name": "manufacturerData" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device Manufacturer Data in Base64 format, may be `null`. ", - "start": 1095, - "end": 1190, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 74 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc UUIDs of advertised {@link Service}s, may be `null`. ", - "start": 1247, - "end": 1339, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 69 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1344, - "end": 1383, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1344, - "end": 1382, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1344, - "end": 1361, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 21 - } - }, - "object": { - "type": "ThisExpression", - "start": 1344, - "end": 1348, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1349, - "end": 1361, - "loc": { - "start": { - "line": 52, - "column": 9 - }, - "end": { - "line": 52, - "column": 21 - }, - "identifierName": "serviceUUIDs" - }, - "name": "serviceUUIDs" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1364, - "end": 1382, - "loc": { - "start": { - "line": 52, - "column": 24 - }, - "end": { - "line": 52, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 1364, - "end": 1369, - "loc": { - "start": { - "line": 52, - "column": 24 - }, - "end": { - "line": 52, - "column": 29 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1370, - "end": 1382, - "loc": { - "start": { - "line": 52, - "column": 30 - }, - "end": { - "line": 52, - "column": 42 - }, - "identifierName": "serviceUUIDs" - }, - "name": "serviceUUIDs" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc UUIDs of advertised {@link Service}s, may be `null`. ", - "start": 1247, - "end": 1339, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 69 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Transmitted power level, may be `null`. ", - "start": 1388, - "end": 1465, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 56 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1470, - "end": 1509, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 43 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1470, - "end": 1508, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 42 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1470, - "end": 1487, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 21 - } - }, - "object": { - "type": "ThisExpression", - "start": 1470, - "end": 1474, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1475, - "end": 1487, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 21 - }, - "identifierName": "txPowerLevel" - }, - "name": "txPowerLevel" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1490, - "end": 1508, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 42 - } - }, - "object": { - "type": "Identifier", - "start": 1490, - "end": 1495, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 29 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1496, - "end": 1508, - "loc": { - "start": { - "line": 55, - "column": 30 - }, - "end": { - "line": 55, - "column": 42 - }, - "identifierName": "txPowerLevel" - }, - "name": "txPowerLevel" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Transmitted power level, may be `null`. ", - "start": 1388, - "end": 1465, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 56 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Solicited {@link Service} UUIDs, may be `null`. ", - "start": 1514, - "end": 1601, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 64 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1606, - "end": 1663, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 61 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1606, - "end": 1662, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 60 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1606, - "end": 1632, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 30 - } - }, - "object": { - "type": "ThisExpression", - "start": 1606, - "end": 1610, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1611, - "end": 1632, - "loc": { - "start": { - "line": 58, - "column": 9 - }, - "end": { - "line": 58, - "column": 30 - }, - "identifierName": "solicitedServiceUUIDs" - }, - "name": "solicitedServiceUUIDs" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1635, - "end": 1662, - "loc": { - "start": { - "line": 58, - "column": 33 - }, - "end": { - "line": 58, - "column": 60 - } - }, - "object": { - "type": "Identifier", - "start": 1635, - "end": 1640, - "loc": { - "start": { - "line": 58, - "column": 33 - }, - "end": { - "line": 58, - "column": 38 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1641, - "end": 1662, - "loc": { - "start": { - "line": 58, - "column": 39 - }, - "end": { - "line": 58, - "column": 60 - }, - "identifierName": "solicitedServiceUUIDs" - }, - "name": "solicitedServiceUUIDs" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Solicited {@link Service} UUIDs, may be `null`. ", - "start": 1514, - "end": 1601, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 64 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?boolean} \n * @desc Is Device connectable (iOS only), may be `null`. ", - "start": 1668, - "end": 1755, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 65 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1760, - "end": 1801, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 45 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1760, - "end": 1800, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 44 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1760, - "end": 1778, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 22 - } - }, - "object": { - "type": "ThisExpression", - "start": 1760, - "end": 1764, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1765, - "end": 1778, - "loc": { - "start": { - "line": 61, - "column": 9 - }, - "end": { - "line": 61, - "column": 22 - }, - "identifierName": "isConnectable" - }, - "name": "isConnectable" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1781, - "end": 1800, - "loc": { - "start": { - "line": 61, - "column": 25 - }, - "end": { - "line": 61, - "column": 44 - } - }, - "object": { - "type": "Identifier", - "start": 1781, - "end": 1786, - "loc": { - "start": { - "line": 61, - "column": 25 - }, - "end": { - "line": 61, - "column": 30 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1787, - "end": 1800, - "loc": { - "start": { - "line": 61, - "column": 31 - }, - "end": { - "line": 61, - "column": 44 - }, - "identifierName": "isConnectable" - }, - "name": "isConnectable" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?boolean} \n * @desc Is Device connectable (iOS only), may be `null`. ", - "start": 1668, - "end": 1755, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 65 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Overflow {@link Service} UUIDs (iOS only), may be `null`. ", - "start": 1806, - "end": 1903, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 74 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1908, - "end": 1963, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 59 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1908, - "end": 1962, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 58 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1908, - "end": 1933, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 29 - } - }, - "object": { - "type": "ThisExpression", - "start": 1908, - "end": 1912, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1913, - "end": 1933, - "loc": { - "start": { - "line": 64, - "column": 9 - }, - "end": { - "line": 64, - "column": 29 - }, - "identifierName": "overflowServiceUUIDs" - }, - "name": "overflowServiceUUIDs" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1936, - "end": 1962, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 58 - } - }, - "object": { - "type": "Identifier", - "start": 1936, - "end": 1941, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 37 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1942, - "end": 1962, - "loc": { - "start": { - "line": 64, - "column": 38 - }, - "end": { - "line": 64, - "column": 58 - }, - "identifierName": "overflowServiceUUIDs" - }, - "name": "overflowServiceUUIDs" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Overflow {@link Service} UUIDs (iOS only), may be `null`. ", - "start": 1806, - "end": 1903, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 74 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?{[service:string]:string}} \n * @desc Data related to specific {@link Service}, may be `null`. ", - "start": 1968, - "end": 2081, - "loc": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 66, - "column": 73 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 2086, - "end": 2123, - "loc": { - "start": { - "line": 67, - "column": 4 - }, - "end": { - "line": 67, - "column": 41 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 2086, - "end": 2122, - "loc": { - "start": { - "line": 67, - "column": 4 - }, - "end": { - "line": 67, - "column": 40 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 2086, - "end": 2102, - "loc": { - "start": { - "line": 67, - "column": 4 - }, - "end": { - "line": 67, - "column": 20 - } - }, - "object": { - "type": "ThisExpression", - "start": 2086, - "end": 2090, - "loc": { - "start": { - "line": 67, - "column": 4 - }, - "end": { - "line": 67, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 2091, - "end": 2102, - "loc": { - "start": { - "line": 67, - "column": 9 - }, - "end": { - "line": 67, - "column": 20 - }, - "identifierName": "serviceData" - }, - "name": "serviceData" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 2105, - "end": 2122, - "loc": { - "start": { - "line": 67, - "column": 23 - }, - "end": { - "line": 67, - "column": 40 - } - }, - "object": { - "type": "Identifier", - "start": 2105, - "end": 2110, - "loc": { - "start": { - "line": 67, - "column": 23 - }, - "end": { - "line": 67, - "column": 28 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 2111, - "end": 2122, - "loc": { - "start": { - "line": 67, - "column": 29 - }, - "end": { - "line": 67, - "column": 40 - }, - "identifierName": "serviceData" - }, - "name": "serviceData" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {?{[service:string]:string}} \n * @desc Data related to specific {@link Service}, may be `null`. ", - "start": 1968, - "end": 2081, - "loc": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 66, - "column": 73 - } - } - } - ] - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Private {@link Device} constructor.\n * \n * @param {NativeDevice} props - NativeDevice properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 458, - "end": 699, - "loc": { - "start": { - "line": 26, - "column": 2 - }, - "end": { - "line": 34, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.connectToDevice} with partially filled arguments.\n * \n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf Device\n ", - "start": 2131, - "end": 2446, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2449, - "end": 2537, - "loc": { - "start": { - "line": 78, - "column": 2 - }, - "end": { - "line": 80, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2455, - "end": 2462, - "loc": { - "start": { - "line": 78, - "column": 8 - }, - "end": { - "line": 78, - "column": 15 - }, - "identifierName": "connect" - }, - "name": "connect" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 2463, - "end": 2470, - "loc": { - "start": { - "line": 78, - "column": 16 - }, - "end": { - "line": 78, - "column": 23 - }, - "identifierName": "options" - }, - "name": "options" - } - ], - "body": { - "type": "BlockStatement", - "start": 2472, - "end": 2537, - "loc": { - "start": { - "line": 78, - "column": 25 - }, - "end": { - "line": 80, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2478, - "end": 2533, - "loc": { - "start": { - "line": 79, - "column": 4 - }, - "end": { - "line": 79, - "column": 59 - } - }, - "argument": { - "type": "CallExpression", - "start": 2485, - "end": 2532, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 58 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2485, - "end": 2514, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 40 - } - }, - "object": { - "type": "MemberExpression", - "start": 2485, - "end": 2498, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 2485, - "end": 2489, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 2490, - "end": 2498, - "loc": { - "start": { - "line": 79, - "column": 16 - }, - "end": { - "line": 79, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2499, - "end": 2514, - "loc": { - "start": { - "line": 79, - "column": 25 - }, - "end": { - "line": 79, - "column": 40 - }, - "identifierName": "connectToDevice" - }, - "name": "connectToDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 2515, - "end": 2522, - "loc": { - "start": { - "line": 79, - "column": 41 - }, - "end": { - "line": 79, - "column": 48 - } - }, - "object": { - "type": "ThisExpression", - "start": 2515, - "end": 2519, - "loc": { - "start": { - "line": 79, - "column": 41 - }, - "end": { - "line": 79, - "column": 45 - } - } - }, - "property": { - "type": "Identifier", - "start": 2520, - "end": 2522, - "loc": { - "start": { - "line": 79, - "column": 46 - }, - "end": { - "line": 79, - "column": 48 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 2524, - "end": 2531, - "loc": { - "start": { - "line": 79, - "column": 50 - }, - "end": { - "line": 79, - "column": 57 - }, - "identifierName": "options" - }, - "name": "options" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.connectToDevice} with partially filled arguments.\n * \n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf Device\n ", - "start": 2131, - "end": 2446, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.cancelDeviceConnection} with partially filled arguments.\n * \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf Device\n ", - "start": 2541, - "end": 2756, - "loc": { - "start": { - "line": 82, - "column": 2 - }, - "end": { - "line": 88, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2759, - "end": 2847, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 91, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2765, - "end": 2781, - "loc": { - "start": { - "line": 89, - "column": 8 - }, - "end": { - "line": 89, - "column": 24 - }, - "identifierName": "cancelConnection" - }, - "name": "cancelConnection" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [], - "body": { - "type": "BlockStatement", - "start": 2784, - "end": 2847, - "loc": { - "start": { - "line": 89, - "column": 27 - }, - "end": { - "line": 91, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2790, - "end": 2843, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 57 - } - }, - "argument": { - "type": "CallExpression", - "start": 2797, - "end": 2842, - "loc": { - "start": { - "line": 90, - "column": 11 - }, - "end": { - "line": 90, - "column": 56 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2797, - "end": 2833, - "loc": { - "start": { - "line": 90, - "column": 11 - }, - "end": { - "line": 90, - "column": 47 - } - }, - "object": { - "type": "MemberExpression", - "start": 2797, - "end": 2810, - "loc": { - "start": { - "line": 90, - "column": 11 - }, - "end": { - "line": 90, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 2797, - "end": 2801, - "loc": { - "start": { - "line": 90, - "column": 11 - }, - "end": { - "line": 90, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 2802, - "end": 2810, - "loc": { - "start": { - "line": 90, - "column": 16 - }, - "end": { - "line": 90, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2811, - "end": 2833, - "loc": { - "start": { - "line": 90, - "column": 25 - }, - "end": { - "line": 90, - "column": 47 - }, - "identifierName": "cancelDeviceConnection" - }, - "name": "cancelDeviceConnection" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 2834, - "end": 2841, - "loc": { - "start": { - "line": 90, - "column": 48 - }, - "end": { - "line": 90, - "column": 55 - } - }, - "object": { - "type": "ThisExpression", - "start": 2834, - "end": 2838, - "loc": { - "start": { - "line": 90, - "column": 48 - }, - "end": { - "line": 90, - "column": 52 - } - } - }, - "property": { - "type": "Identifier", - "start": 2839, - "end": 2841, - "loc": { - "start": { - "line": 90, - "column": 53 - }, - "end": { - "line": 90, - "column": 55 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.cancelDeviceConnection} with partially filled arguments.\n * \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf Device\n ", - "start": 2541, - "end": 2756, - "loc": { - "start": { - "line": 82, - "column": 2 - }, - "end": { - "line": 88, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.isDeviceConnected} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf Device\n ", - "start": 2851, - "end": 3078, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 99, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3081, - "end": 3159, - "loc": { - "start": { - "line": 100, - "column": 2 - }, - "end": { - "line": 102, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3087, - "end": 3098, - "loc": { - "start": { - "line": 100, - "column": 8 - }, - "end": { - "line": 100, - "column": 19 - }, - "identifierName": "isConnected" - }, - "name": "isConnected" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [], - "body": { - "type": "BlockStatement", - "start": 3101, - "end": 3159, - "loc": { - "start": { - "line": 100, - "column": 22 - }, - "end": { - "line": 102, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 3107, - "end": 3155, - "loc": { - "start": { - "line": 101, - "column": 4 - }, - "end": { - "line": 101, - "column": 52 - } - }, - "argument": { - "type": "CallExpression", - "start": 3114, - "end": 3154, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 51 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3114, - "end": 3145, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 42 - } - }, - "object": { - "type": "MemberExpression", - "start": 3114, - "end": 3127, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 3114, - "end": 3118, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 3119, - "end": 3127, - "loc": { - "start": { - "line": 101, - "column": 16 - }, - "end": { - "line": 101, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3128, - "end": 3145, - "loc": { - "start": { - "line": 101, - "column": 25 - }, - "end": { - "line": 101, - "column": 42 - }, - "identifierName": "isDeviceConnected" - }, - "name": "isDeviceConnected" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3146, - "end": 3153, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 50 - } - }, - "object": { - "type": "ThisExpression", - "start": 3146, - "end": 3150, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 47 - } - } - }, - "property": { - "type": "Identifier", - "start": 3151, - "end": 3153, - "loc": { - "start": { - "line": 101, - "column": 48 - }, - "end": { - "line": 101, - "column": 50 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.isDeviceConnected} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf Device\n ", - "start": 2851, - "end": 3078, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 99, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.onDeviceDisconnected} with partially filled arguments.\n * \n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 3163, - "end": 3550, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 112, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3553, - "end": 3649, - "loc": { - "start": { - "line": 113, - "column": 2 - }, - "end": { - "line": 115, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3553, - "end": 3567, - "loc": { - "start": { - "line": 113, - "column": 2 - }, - "end": { - "line": 113, - "column": 16 - }, - "identifierName": "onDisconnected" - }, - "name": "onDisconnected", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 3568, - "end": 3576, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 25 - }, - "identifierName": "listener" - }, - "name": "listener" - } - ], - "body": { - "type": "BlockStatement", - "start": 3578, - "end": 3649, - "loc": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 115, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 3584, - "end": 3645, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 65 - } - }, - "argument": { - "type": "CallExpression", - "start": 3591, - "end": 3644, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 64 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3591, - "end": 3625, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 45 - } - }, - "object": { - "type": "MemberExpression", - "start": 3591, - "end": 3604, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 3591, - "end": 3595, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 3596, - "end": 3604, - "loc": { - "start": { - "line": 114, - "column": 16 - }, - "end": { - "line": 114, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3605, - "end": 3625, - "loc": { - "start": { - "line": 114, - "column": 25 - }, - "end": { - "line": 114, - "column": 45 - }, - "identifierName": "onDeviceDisconnected" - }, - "name": "onDeviceDisconnected" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3626, - "end": 3633, - "loc": { - "start": { - "line": 114, - "column": 46 - }, - "end": { - "line": 114, - "column": 53 - } - }, - "object": { - "type": "ThisExpression", - "start": 3626, - "end": 3630, - "loc": { - "start": { - "line": 114, - "column": 46 - }, - "end": { - "line": 114, - "column": 50 - } - } - }, - "property": { - "type": "Identifier", - "start": 3631, - "end": 3633, - "loc": { - "start": { - "line": 114, - "column": 51 - }, - "end": { - "line": 114, - "column": 53 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 3635, - "end": 3643, - "loc": { - "start": { - "line": 114, - "column": 55 - }, - "end": { - "line": 114, - "column": 63 - }, - "identifierName": "listener" - }, - "name": "listener" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.onDeviceDisconnected} with partially filled arguments.\n * \n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 3163, - "end": 3550, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 112, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf Device\n ", - "start": 3653, - "end": 3950, - "loc": { - "start": { - "line": 117, - "column": 2 - }, - "end": { - "line": 124, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3953, - "end": 4086, - "loc": { - "start": { - "line": 125, - "column": 2 - }, - "end": { - "line": 127, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3959, - "end": 3996, - "loc": { - "start": { - "line": 125, - "column": 8 - }, - "end": { - "line": 125, - "column": 45 - }, - "identifierName": "discoverAllServicesAndCharacteristics" - }, - "name": "discoverAllServicesAndCharacteristics" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [], - "body": { - "type": "BlockStatement", - "start": 3999, - "end": 4086, - "loc": { - "start": { - "line": 125, - "column": 48 - }, - "end": { - "line": 127, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 4005, - "end": 4082, - "loc": { - "start": { - "line": 126, - "column": 4 - }, - "end": { - "line": 126, - "column": 81 - } - }, - "argument": { - "type": "CallExpression", - "start": 4012, - "end": 4081, - "loc": { - "start": { - "line": 126, - "column": 11 - }, - "end": { - "line": 126, - "column": 80 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4012, - "end": 4072, - "loc": { - "start": { - "line": 126, - "column": 11 - }, - "end": { - "line": 126, - "column": 71 - } - }, - "object": { - "type": "MemberExpression", - "start": 4012, - "end": 4025, - "loc": { - "start": { - "line": 126, - "column": 11 - }, - "end": { - "line": 126, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 4012, - "end": 4016, - "loc": { - "start": { - "line": 126, - "column": 11 - }, - "end": { - "line": 126, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 4017, - "end": 4025, - "loc": { - "start": { - "line": 126, - "column": 16 - }, - "end": { - "line": 126, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 4026, - "end": 4072, - "loc": { - "start": { - "line": 126, - "column": 25 - }, - "end": { - "line": 126, - "column": 71 - }, - "identifierName": "discoverAllServicesAndCharacteristicsForDevice" - }, - "name": "discoverAllServicesAndCharacteristicsForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4073, - "end": 4080, - "loc": { - "start": { - "line": 126, - "column": 72 - }, - "end": { - "line": 126, - "column": 79 - } - }, - "object": { - "type": "ThisExpression", - "start": 4073, - "end": 4077, - "loc": { - "start": { - "line": 126, - "column": 72 - }, - "end": { - "line": 126, - "column": 76 - } - } - }, - "property": { - "type": "Identifier", - "start": 4078, - "end": 4080, - "loc": { - "start": { - "line": 126, - "column": 77 - }, - "end": { - "line": 126, - "column": 79 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf Device\n ", - "start": 3653, - "end": 3950, - "loc": { - "start": { - "line": 117, - "column": 2 - }, - "end": { - "line": 124, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.servicesForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered by this\n * device.\n * \n * @memberOf Device\n ", - "start": 4090, - "end": 4340, - "loc": { - "start": { - "line": 129, - "column": 2 - }, - "end": { - "line": 136, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 4343, - "end": 4418, - "loc": { - "start": { - "line": 137, - "column": 2 - }, - "end": { - "line": 139, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 4349, - "end": 4357, - "loc": { - "start": { - "line": 137, - "column": 8 - }, - "end": { - "line": 137, - "column": 16 - }, - "identifierName": "services" - }, - "name": "services" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [], - "body": { - "type": "BlockStatement", - "start": 4360, - "end": 4418, - "loc": { - "start": { - "line": 137, - "column": 19 - }, - "end": { - "line": 139, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 4366, - "end": 4414, - "loc": { - "start": { - "line": 138, - "column": 4 - }, - "end": { - "line": 138, - "column": 52 - } - }, - "argument": { - "type": "CallExpression", - "start": 4373, - "end": 4413, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 51 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4373, - "end": 4404, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 42 - } - }, - "object": { - "type": "MemberExpression", - "start": 4373, - "end": 4386, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 4373, - "end": 4377, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 4378, - "end": 4386, - "loc": { - "start": { - "line": 138, - "column": 16 - }, - "end": { - "line": 138, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 4387, - "end": 4404, - "loc": { - "start": { - "line": 138, - "column": 25 - }, - "end": { - "line": 138, - "column": 42 - }, - "identifierName": "servicesForDevice" - }, - "name": "servicesForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4405, - "end": 4412, - "loc": { - "start": { - "line": 138, - "column": 43 - }, - "end": { - "line": 138, - "column": 50 - } - }, - "object": { - "type": "ThisExpression", - "start": 4405, - "end": 4409, - "loc": { - "start": { - "line": 138, - "column": 43 - }, - "end": { - "line": 138, - "column": 47 - } - } - }, - "property": { - "type": "Identifier", - "start": 4410, - "end": 4412, - "loc": { - "start": { - "line": 138, - "column": 48 - }, - "end": { - "line": 138, - "column": 50 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.servicesForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered by this\n * device.\n * \n * @memberOf Device\n ", - "start": 4090, - "end": 4340, - "loc": { - "start": { - "line": 129, - "column": 2 - }, - "end": { - "line": 136, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf Device\n ", - "start": 4422, - "end": 4786, - "loc": { - "start": { - "line": 141, - "column": 2 - }, - "end": { - "line": 149, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 4789, - "end": 4912, - "loc": { - "start": { - "line": 150, - "column": 2 - }, - "end": { - "line": 152, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 4795, - "end": 4820, - "loc": { - "start": { - "line": 150, - "column": 8 - }, - "end": { - "line": 150, - "column": 33 - }, - "identifierName": "characteristicsForService" - }, - "name": "characteristicsForService" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 4821, - "end": 4832, - "loc": { - "start": { - "line": 150, - "column": 34 - }, - "end": { - "line": 150, - "column": 45 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - } - ], - "body": { - "type": "BlockStatement", - "start": 4834, - "end": 4912, - "loc": { - "start": { - "line": 150, - "column": 47 - }, - "end": { - "line": 152, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 4840, - "end": 4908, - "loc": { - "start": { - "line": 151, - "column": 4 - }, - "end": { - "line": 151, - "column": 72 - } - }, - "argument": { - "type": "CallExpression", - "start": 4847, - "end": 4907, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 71 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4847, - "end": 4885, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 49 - } - }, - "object": { - "type": "MemberExpression", - "start": 4847, - "end": 4860, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 4847, - "end": 4851, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 4852, - "end": 4860, - "loc": { - "start": { - "line": 151, - "column": 16 - }, - "end": { - "line": 151, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 4861, - "end": 4885, - "loc": { - "start": { - "line": 151, - "column": 25 - }, - "end": { - "line": 151, - "column": 49 - }, - "identifierName": "characteristicsForDevice" - }, - "name": "characteristicsForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4886, - "end": 4893, - "loc": { - "start": { - "line": 151, - "column": 50 - }, - "end": { - "line": 151, - "column": 57 - } - }, - "object": { - "type": "ThisExpression", - "start": 4886, - "end": 4890, - "loc": { - "start": { - "line": 151, - "column": 50 - }, - "end": { - "line": 151, - "column": 54 - } - } - }, - "property": { - "type": "Identifier", - "start": 4891, - "end": 4893, - "loc": { - "start": { - "line": 151, - "column": 55 - }, - "end": { - "line": 151, - "column": 57 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 4895, - "end": 4906, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 70 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf Device\n ", - "start": 4422, - "end": 4786, - "loc": { - "start": { - "line": 141, - "column": 2 - }, - "end": { - "line": 149, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 4916, - "end": 5505, - "loc": { - "start": { - "line": 154, - "column": 2 - }, - "end": { - "line": 164, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 5508, - "end": 5707, - "loc": { - "start": { - "line": 165, - "column": 2 - }, - "end": { - "line": 167, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 5514, - "end": 5542, - "loc": { - "start": { - "line": 165, - "column": 8 - }, - "end": { - "line": 165, - "column": 36 - }, - "identifierName": "readCharacteristicForService" - }, - "name": "readCharacteristicForService" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 5543, - "end": 5554, - "loc": { - "start": { - "line": 165, - "column": 37 - }, - "end": { - "line": 165, - "column": 48 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 5556, - "end": 5574, - "loc": { - "start": { - "line": 165, - "column": 50 - }, - "end": { - "line": 165, - "column": 68 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 5576, - "end": 5589, - "loc": { - "start": { - "line": 165, - "column": 70 - }, - "end": { - "line": 165, - "column": 83 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 5591, - "end": 5707, - "loc": { - "start": { - "line": 165, - "column": 85 - }, - "end": { - "line": 167, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 5597, - "end": 5703, - "loc": { - "start": { - "line": 166, - "column": 4 - }, - "end": { - "line": 166, - "column": 110 - } - }, - "argument": { - "type": "CallExpression", - "start": 5604, - "end": 5702, - "loc": { - "start": { - "line": 166, - "column": 11 - }, - "end": { - "line": 166, - "column": 109 - } - }, - "callee": { - "type": "MemberExpression", - "start": 5604, - "end": 5645, - "loc": { - "start": { - "line": 166, - "column": 11 - }, - "end": { - "line": 166, - "column": 52 - } - }, - "object": { - "type": "MemberExpression", - "start": 5604, - "end": 5617, - "loc": { - "start": { - "line": 166, - "column": 11 - }, - "end": { - "line": 166, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 5604, - "end": 5608, - "loc": { - "start": { - "line": 166, - "column": 11 - }, - "end": { - "line": 166, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 5609, - "end": 5617, - "loc": { - "start": { - "line": 166, - "column": 16 - }, - "end": { - "line": 166, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 5618, - "end": 5645, - "loc": { - "start": { - "line": 166, - "column": 25 - }, - "end": { - "line": 166, - "column": 52 - }, - "identifierName": "readCharacteristicForDevice" - }, - "name": "readCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 5646, - "end": 5653, - "loc": { - "start": { - "line": 166, - "column": 53 - }, - "end": { - "line": 166, - "column": 60 - } - }, - "object": { - "type": "ThisExpression", - "start": 5646, - "end": 5650, - "loc": { - "start": { - "line": 166, - "column": 53 - }, - "end": { - "line": 166, - "column": 57 - } - } - }, - "property": { - "type": "Identifier", - "start": 5651, - "end": 5653, - "loc": { - "start": { - "line": 166, - "column": 58 - }, - "end": { - "line": 166, - "column": 60 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 5655, - "end": 5666, - "loc": { - "start": { - "line": 166, - "column": 62 - }, - "end": { - "line": 166, - "column": 73 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 5668, - "end": 5686, - "loc": { - "start": { - "line": 166, - "column": 75 - }, - "end": { - "line": 166, - "column": 93 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 5688, - "end": 5701, - "loc": { - "start": { - "line": 166, - "column": 95 - }, - "end": { - "line": 166, - "column": 108 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 4916, - "end": 5505, - "loc": { - "start": { - "line": 154, - "column": 2 - }, - "end": { - "line": 164, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 5711, - "end": 6367, - "loc": { - "start": { - "line": 169, - "column": 2 - }, - "end": { - "line": 180, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 6370, - "end": 6621, - "loc": { - "start": { - "line": 181, - "column": 2 - }, - "end": { - "line": 183, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 6376, - "end": 6417, - "loc": { - "start": { - "line": 181, - "column": 8 - }, - "end": { - "line": 181, - "column": 49 - }, - "identifierName": "writeCharacteristicWithResponseForService" - }, - "name": "writeCharacteristicWithResponseForService" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 6418, - "end": 6429, - "loc": { - "start": { - "line": 181, - "column": 50 - }, - "end": { - "line": 181, - "column": 61 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 6431, - "end": 6449, - "loc": { - "start": { - "line": 181, - "column": 63 - }, - "end": { - "line": 181, - "column": 81 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 6451, - "end": 6462, - "loc": { - "start": { - "line": 181, - "column": 83 - }, - "end": { - "line": 181, - "column": 94 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 6464, - "end": 6477, - "loc": { - "start": { - "line": 181, - "column": 96 - }, - "end": { - "line": 181, - "column": 109 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 6479, - "end": 6621, - "loc": { - "start": { - "line": 181, - "column": 111 - }, - "end": { - "line": 183, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 6485, - "end": 6617, - "loc": { - "start": { - "line": 182, - "column": 4 - }, - "end": { - "line": 182, - "column": 136 - } - }, - "argument": { - "type": "CallExpression", - "start": 6492, - "end": 6616, - "loc": { - "start": { - "line": 182, - "column": 11 - }, - "end": { - "line": 182, - "column": 135 - } - }, - "callee": { - "type": "MemberExpression", - "start": 6492, - "end": 6546, - "loc": { - "start": { - "line": 182, - "column": 11 - }, - "end": { - "line": 182, - "column": 65 - } - }, - "object": { - "type": "MemberExpression", - "start": 6492, - "end": 6505, - "loc": { - "start": { - "line": 182, - "column": 11 - }, - "end": { - "line": 182, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 6492, - "end": 6496, - "loc": { - "start": { - "line": 182, - "column": 11 - }, - "end": { - "line": 182, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 6497, - "end": 6505, - "loc": { - "start": { - "line": 182, - "column": 16 - }, - "end": { - "line": 182, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 6506, - "end": 6546, - "loc": { - "start": { - "line": 182, - "column": 25 - }, - "end": { - "line": 182, - "column": 65 - }, - "identifierName": "writeCharacteristicWithResponseForDevice" - }, - "name": "writeCharacteristicWithResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 6547, - "end": 6554, - "loc": { - "start": { - "line": 182, - "column": 66 - }, - "end": { - "line": 182, - "column": 73 - } - }, - "object": { - "type": "ThisExpression", - "start": 6547, - "end": 6551, - "loc": { - "start": { - "line": 182, - "column": 66 - }, - "end": { - "line": 182, - "column": 70 - } - } - }, - "property": { - "type": "Identifier", - "start": 6552, - "end": 6554, - "loc": { - "start": { - "line": 182, - "column": 71 - }, - "end": { - "line": 182, - "column": 73 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 6556, - "end": 6567, - "loc": { - "start": { - "line": 182, - "column": 75 - }, - "end": { - "line": 182, - "column": 86 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 6569, - "end": 6587, - "loc": { - "start": { - "line": 182, - "column": 88 - }, - "end": { - "line": 182, - "column": 106 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 6589, - "end": 6600, - "loc": { - "start": { - "line": 182, - "column": 108 - }, - "end": { - "line": 182, - "column": 119 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 6602, - "end": 6615, - "loc": { - "start": { - "line": 182, - "column": 121 - }, - "end": { - "line": 182, - "column": 134 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 5711, - "end": 6367, - "loc": { - "start": { - "line": 169, - "column": 2 - }, - "end": { - "line": 180, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 6625, - "end": 7284, - "loc": { - "start": { - "line": 185, - "column": 2 - }, - "end": { - "line": 196, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 7287, - "end": 7544, - "loc": { - "start": { - "line": 197, - "column": 2 - }, - "end": { - "line": 199, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 7293, - "end": 7337, - "loc": { - "start": { - "line": 197, - "column": 8 - }, - "end": { - "line": 197, - "column": 52 - }, - "identifierName": "writeCharacteristicWithoutResponseForService" - }, - "name": "writeCharacteristicWithoutResponseForService" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 7338, - "end": 7349, - "loc": { - "start": { - "line": 197, - "column": 53 - }, - "end": { - "line": 197, - "column": 64 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 7351, - "end": 7369, - "loc": { - "start": { - "line": 197, - "column": 66 - }, - "end": { - "line": 197, - "column": 84 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 7371, - "end": 7382, - "loc": { - "start": { - "line": 197, - "column": 86 - }, - "end": { - "line": 197, - "column": 97 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 7384, - "end": 7397, - "loc": { - "start": { - "line": 197, - "column": 99 - }, - "end": { - "line": 197, - "column": 112 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 7399, - "end": 7544, - "loc": { - "start": { - "line": 197, - "column": 114 - }, - "end": { - "line": 199, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 7405, - "end": 7540, - "loc": { - "start": { - "line": 198, - "column": 4 - }, - "end": { - "line": 198, - "column": 139 - } - }, - "argument": { - "type": "CallExpression", - "start": 7412, - "end": 7539, - "loc": { - "start": { - "line": 198, - "column": 11 - }, - "end": { - "line": 198, - "column": 138 - } - }, - "callee": { - "type": "MemberExpression", - "start": 7412, - "end": 7469, - "loc": { - "start": { - "line": 198, - "column": 11 - }, - "end": { - "line": 198, - "column": 68 - } - }, - "object": { - "type": "MemberExpression", - "start": 7412, - "end": 7425, - "loc": { - "start": { - "line": 198, - "column": 11 - }, - "end": { - "line": 198, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 7412, - "end": 7416, - "loc": { - "start": { - "line": 198, - "column": 11 - }, - "end": { - "line": 198, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 7417, - "end": 7425, - "loc": { - "start": { - "line": 198, - "column": 16 - }, - "end": { - "line": 198, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 7426, - "end": 7469, - "loc": { - "start": { - "line": 198, - "column": 25 - }, - "end": { - "line": 198, - "column": 68 - }, - "identifierName": "writeCharacteristicWithoutResponseForDevice" - }, - "name": "writeCharacteristicWithoutResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 7470, - "end": 7477, - "loc": { - "start": { - "line": 198, - "column": 69 - }, - "end": { - "line": 198, - "column": 76 - } - }, - "object": { - "type": "ThisExpression", - "start": 7470, - "end": 7474, - "loc": { - "start": { - "line": 198, - "column": 69 - }, - "end": { - "line": 198, - "column": 73 - } - } - }, - "property": { - "type": "Identifier", - "start": 7475, - "end": 7477, - "loc": { - "start": { - "line": 198, - "column": 74 - }, - "end": { - "line": 198, - "column": 76 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 7479, - "end": 7490, - "loc": { - "start": { - "line": 198, - "column": 78 - }, - "end": { - "line": 198, - "column": 89 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 7492, - "end": 7510, - "loc": { - "start": { - "line": 198, - "column": 91 - }, - "end": { - "line": 198, - "column": 109 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 7512, - "end": 7523, - "loc": { - "start": { - "line": 198, - "column": 111 - }, - "end": { - "line": 198, - "column": 122 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 7525, - "end": 7538, - "loc": { - "start": { - "line": 198, - "column": 124 - }, - "end": { - "line": 198, - "column": 137 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 6625, - "end": 7284, - "loc": { - "start": { - "line": 185, - "column": 2 - }, - "end": { - "line": 196, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 7548, - "end": 8211, - "loc": { - "start": { - "line": 201, - "column": 2 - }, - "end": { - "line": 212, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 8214, - "end": 8433, - "loc": { - "start": { - "line": 213, - "column": 2 - }, - "end": { - "line": 215, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 8214, - "end": 8245, - "loc": { - "start": { - "line": 213, - "column": 2 - }, - "end": { - "line": 213, - "column": 33 - }, - "identifierName": "monitorCharacteristicForService" - }, - "name": "monitorCharacteristicForService", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 8246, - "end": 8257, - "loc": { - "start": { - "line": 213, - "column": 34 - }, - "end": { - "line": 213, - "column": 45 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 8259, - "end": 8277, - "loc": { - "start": { - "line": 213, - "column": 47 - }, - "end": { - "line": 213, - "column": 65 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 8279, - "end": 8287, - "loc": { - "start": { - "line": 213, - "column": 67 - }, - "end": { - "line": 213, - "column": 75 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 8289, - "end": 8302, - "loc": { - "start": { - "line": 213, - "column": 77 - }, - "end": { - "line": 213, - "column": 90 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 8304, - "end": 8433, - "loc": { - "start": { - "line": 213, - "column": 92 - }, - "end": { - "line": 215, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 8310, - "end": 8429, - "loc": { - "start": { - "line": 214, - "column": 4 - }, - "end": { - "line": 214, - "column": 123 - } - }, - "argument": { - "type": "CallExpression", - "start": 8317, - "end": 8428, - "loc": { - "start": { - "line": 214, - "column": 11 - }, - "end": { - "line": 214, - "column": 122 - } - }, - "callee": { - "type": "MemberExpression", - "start": 8317, - "end": 8361, - "loc": { - "start": { - "line": 214, - "column": 11 - }, - "end": { - "line": 214, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 8317, - "end": 8330, - "loc": { - "start": { - "line": 214, - "column": 11 - }, - "end": { - "line": 214, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 8317, - "end": 8321, - "loc": { - "start": { - "line": 214, - "column": 11 - }, - "end": { - "line": 214, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 8322, - "end": 8330, - "loc": { - "start": { - "line": 214, - "column": 16 - }, - "end": { - "line": 214, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 8331, - "end": 8361, - "loc": { - "start": { - "line": 214, - "column": 25 - }, - "end": { - "line": 214, - "column": 55 - }, - "identifierName": "monitorCharacteristicForDevice" - }, - "name": "monitorCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 8362, - "end": 8369, - "loc": { - "start": { - "line": 214, - "column": 56 - }, - "end": { - "line": 214, - "column": 63 - } - }, - "object": { - "type": "ThisExpression", - "start": 8362, - "end": 8366, - "loc": { - "start": { - "line": 214, - "column": 56 - }, - "end": { - "line": 214, - "column": 60 - } - } - }, - "property": { - "type": "Identifier", - "start": 8367, - "end": 8369, - "loc": { - "start": { - "line": 214, - "column": 61 - }, - "end": { - "line": 214, - "column": 63 - }, - "identifierName": "id" - }, - "name": "id" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 8371, - "end": 8382, - "loc": { - "start": { - "line": 214, - "column": 65 - }, - "end": { - "line": 214, - "column": 76 - }, - "identifierName": "serviceUUID" - }, - "name": "serviceUUID" - }, - { - "type": "Identifier", - "start": 8384, - "end": 8402, - "loc": { - "start": { - "line": 214, - "column": 78 - }, - "end": { - "line": 214, - "column": 96 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 8404, - "end": 8412, - "loc": { - "start": { - "line": 214, - "column": 98 - }, - "end": { - "line": 214, - "column": 106 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 8414, - "end": 8427, - "loc": { - "start": { - "line": 214, - "column": 108 - }, - "end": { - "line": 214, - "column": 121 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 7548, - "end": 8211, - "loc": { - "start": { - "line": 201, - "column": 2 - }, - "end": { - "line": 212, - "column": 5 - } - } - } - ] - } - ] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Device object.\n * \n * @export\n * @class Device\n * @extends {NativeDevice}\n ", - "start": 319, - "end": 403, - "loc": { - "start": { - "line": 17, - "column": 0 - }, - "end": { - "line": 23, - "column": 3 - } - } - } - ], - "trailingComments": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Device object.\n * \n * @export\n * @class Device\n * @extends {NativeDevice}\n ", - "start": 319, - "end": 403, - "loc": { - "start": { - "line": 17, - "column": 0 - }, - "end": { - "line": 23, - "column": 3 - } - } - } - ] - } - ], - "directives": [ - { - "type": "Directive", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "value": { - "type": "DirectiveLiteral", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "value": "use strict", - "extra": { - "raw": "'use strict'", - "rawValue": "use strict" - } - } - } - ] - }, - "comments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Device format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeDevice\n ", - "start": 136, - "end": 295, - "loc": { - "start": { - "line": 8, - "column": 0 - }, - "end": { - "line": 14, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Device object.\n * \n * @export\n * @class Device\n * @extends {NativeDevice}\n ", - "start": 319, - "end": 403, - "loc": { - "start": { - "line": 17, - "column": 0 - }, - "end": { - "line": 23, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Device} constructor.\n * \n * @param {NativeDevice} props - NativeDevice properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 458, - "end": 699, - "loc": { - "start": { - "line": 26, - "column": 2 - }, - "end": { - "line": 34, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc Device identifier. ", - "start": 778, - "end": 833, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 35 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device name, may be `null`. ", - "start": 862, - "end": 927, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 44 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Device Received Signal Strength Indication value, may be `null`. ", - "start": 960, - "end": 1062, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 81 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device Manufacturer Data in Base64 format, may be `null`. ", - "start": 1095, - "end": 1190, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 74 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc UUIDs of advertised {@link Service}s, may be `null`. ", - "start": 1247, - "end": 1339, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 69 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Transmitted power level, may be `null`. ", - "start": 1388, - "end": 1465, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 56 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Solicited {@link Service} UUIDs, may be `null`. ", - "start": 1514, - "end": 1601, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 64 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?boolean} \n * @desc Is Device connectable (iOS only), may be `null`. ", - "start": 1668, - "end": 1755, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 65 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Overflow {@link Service} UUIDs (iOS only), may be `null`. ", - "start": 1806, - "end": 1903, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 74 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?{[service:string]:string}} \n * @desc Data related to specific {@link Service}, may be `null`. ", - "start": 1968, - "end": 2081, - "loc": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 66, - "column": 73 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.connectToDevice} with partially filled arguments.\n * \n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf Device\n ", - "start": 2131, - "end": 2446, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.cancelDeviceConnection} with partially filled arguments.\n * \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf Device\n ", - "start": 2541, - "end": 2756, - "loc": { - "start": { - "line": 82, - "column": 2 - }, - "end": { - "line": 88, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.isDeviceConnected} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf Device\n ", - "start": 2851, - "end": 3078, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 99, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.onDeviceDisconnected} with partially filled arguments.\n * \n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 3163, - "end": 3550, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 112, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf Device\n ", - "start": 3653, - "end": 3950, - "loc": { - "start": { - "line": 117, - "column": 2 - }, - "end": { - "line": 124, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.servicesForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered by this\n * device.\n * \n * @memberOf Device\n ", - "start": 4090, - "end": 4340, - "loc": { - "start": { - "line": 129, - "column": 2 - }, - "end": { - "line": 136, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf Device\n ", - "start": 4422, - "end": 4786, - "loc": { - "start": { - "line": 141, - "column": 2 - }, - "end": { - "line": 149, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 4916, - "end": 5505, - "loc": { - "start": { - "line": 154, - "column": 2 - }, - "end": { - "line": 164, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 5711, - "end": 6367, - "loc": { - "start": { - "line": 169, - "column": 2 - }, - "end": { - "line": 180, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 6625, - "end": 7284, - "loc": { - "start": { - "line": 185, - "column": 2 - }, - "end": { - "line": 196, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 7548, - "end": 8211, - "loc": { - "start": { - "line": 201, - "column": 2 - }, - "end": { - "line": 212, - "column": 5 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "use strict", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 15, - "end": 21, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleManager", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 33, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./BleManager", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 52, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 37 - }, - "end": { - "line": 3, - "column": 38 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 54, - "end": 60, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 76, - "end": 80, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Characteristic", - "start": 81, - "end": 99, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 99, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 45 - }, - "end": { - "line": 4, - "column": 46 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 101, - "end": 107, - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 5, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Service", - "start": 108, - "end": 115, - "loc": { - "start": { - "line": 5, - "column": 7 - }, - "end": { - "line": 5, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 116, - "end": 120, - "loc": { - "start": { - "line": 5, - "column": 15 - }, - "end": { - "line": 5, - "column": 19 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Service", - "start": 121, - "end": 132, - "loc": { - "start": { - "line": 5, - "column": 20 - }, - "end": { - "line": 5, - "column": 31 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 132, - "end": 133, - "loc": { - "start": { - "line": 5, - "column": 31 - }, - "end": { - "line": 5, - "column": 32 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Device format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeDevice\n ", - "start": 136, - "end": 295, - "loc": { - "start": { - "line": 8, - "column": 0 - }, - "end": { - "line": 14, - "column": 3 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 296, - "end": 301, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 15, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeDevice", - "start": 302, - "end": 314, - "loc": { - "start": { - "line": 15, - "column": 6 - }, - "end": { - "line": 15, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 315, - "end": 316, - "loc": { - "start": { - "line": 15, - "column": 19 - }, - "end": { - "line": 15, - "column": 20 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 316, - "end": 317, - "loc": { - "start": { - "line": 15, - "column": 20 - }, - "end": { - "line": 15, - "column": 21 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Device object.\n * \n * @export\n * @class Device\n * @extends {NativeDevice}\n ", - "start": 319, - "end": 403, - "loc": { - "start": { - "line": 17, - "column": 0 - }, - "end": { - "line": 23, - "column": 3 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 404, - "end": 410, - "loc": { - "start": { - "line": 24, - "column": 0 - }, - "end": { - "line": 24, - "column": 6 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 411, - "end": 418, - "loc": { - "start": { - "line": 24, - "column": 7 - }, - "end": { - "line": 24, - "column": 14 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 419, - "end": 424, - "loc": { - "start": { - "line": 24, - "column": 15 - }, - "end": { - "line": 24, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Device", - "start": 425, - "end": 431, - "loc": { - "start": { - "line": 24, - "column": 21 - }, - "end": { - "line": 24, - "column": 27 - } - } - }, - { - "type": { - "label": "extends", - "keyword": "extends", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "extends", - "start": 432, - "end": 439, - "loc": { - "start": { - "line": 24, - "column": 28 - }, - "end": { - "line": 24, - "column": 35 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeDevice", - "start": 440, - "end": 452, - "loc": { - "start": { - "line": 24, - "column": 36 - }, - "end": { - "line": 24, - "column": 48 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 453, - "end": 454, - "loc": { - "start": { - "line": 24, - "column": 49 - }, - "end": { - "line": 24, - "column": 50 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Device} constructor.\n * \n * @param {NativeDevice} props - NativeDevice properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 458, - "end": 699, - "loc": { - "start": { - "line": 26, - "column": 2 - }, - "end": { - "line": 34, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "constructor", - "start": 702, - "end": 713, - "loc": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 713, - "end": 714, - "loc": { - "start": { - "line": 35, - "column": 13 - }, - "end": { - "line": 35, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 714, - "end": 719, - "loc": { - "start": { - "line": 35, - "column": 14 - }, - "end": { - "line": 35, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 719, - "end": 720, - "loc": { - "start": { - "line": 35, - "column": 19 - }, - "end": { - "line": 35, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 721, - "end": 728, - "loc": { - "start": { - "line": 35, - "column": 21 - }, - "end": { - "line": 35, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 728, - "end": 729, - "loc": { - "start": { - "line": 35, - "column": 28 - }, - "end": { - "line": 35, - "column": 29 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 730, - "end": 731, - "loc": { - "start": { - "line": 35, - "column": 30 - }, - "end": { - "line": 35, - "column": 31 - } - } - }, - { - "type": { - "label": "super", - "keyword": "super", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "super", - "start": 736, - "end": 741, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 741, - "end": 742, - "loc": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 742, - "end": 743, - "loc": { - "start": { - "line": 36, - "column": 10 - }, - "end": { - "line": 36, - "column": 11 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 743, - "end": 744, - "loc": { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 12 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 749, - "end": 753, - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 753, - "end": 754, - "loc": { - "start": { - "line": 37, - "column": 8 - }, - "end": { - "line": 37, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 754, - "end": 762, - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 763, - "end": 764, - "loc": { - "start": { - "line": 37, - "column": 18 - }, - "end": { - "line": 37, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 765, - "end": 772, - "loc": { - "start": { - "line": 37, - "column": 20 - }, - "end": { - "line": 37, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 772, - "end": 773, - "loc": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc Device identifier. ", - "start": 778, - "end": 833, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 35 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 838, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 842, - "end": 843, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 843, - "end": 845, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 11 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 846, - "end": 847, - "loc": { - "start": { - "line": 40, - "column": 12 - }, - "end": { - "line": 40, - "column": 13 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 848, - "end": 853, - "loc": { - "start": { - "line": 40, - "column": 14 - }, - "end": { - "line": 40, - "column": 19 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 853, - "end": 854, - "loc": { - "start": { - "line": 40, - "column": 19 - }, - "end": { - "line": 40, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 854, - "end": 856, - "loc": { - "start": { - "line": 40, - "column": 20 - }, - "end": { - "line": 40, - "column": 22 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 856, - "end": 857, - "loc": { - "start": { - "line": 40, - "column": 22 - }, - "end": { - "line": 40, - "column": 23 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device name, may be `null`. ", - "start": 862, - "end": 927, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 44 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 932, - "end": 936, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 936, - "end": 937, - "loc": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "name", - "start": 937, - "end": 941, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 942, - "end": 943, - "loc": { - "start": { - "line": 43, - "column": 14 - }, - "end": { - "line": 43, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 944, - "end": 949, - "loc": { - "start": { - "line": 43, - "column": 16 - }, - "end": { - "line": 43, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 949, - "end": 950, - "loc": { - "start": { - "line": 43, - "column": 21 - }, - "end": { - "line": 43, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "name", - "start": 950, - "end": 954, - "loc": { - "start": { - "line": 43, - "column": 22 - }, - "end": { - "line": 43, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 954, - "end": 955, - "loc": { - "start": { - "line": 43, - "column": 26 - }, - "end": { - "line": 43, - "column": 27 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Device Received Signal Strength Indication value, may be `null`. ", - "start": 960, - "end": 1062, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 81 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1067, - "end": 1071, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1071, - "end": 1072, - "loc": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "rssi", - "start": 1072, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1077, - "end": 1078, - "loc": { - "start": { - "line": 46, - "column": 14 - }, - "end": { - "line": 46, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1079, - "end": 1084, - "loc": { - "start": { - "line": 46, - "column": 16 - }, - "end": { - "line": 46, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1084, - "end": 1085, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "rssi", - "start": 1085, - "end": 1089, - "loc": { - "start": { - "line": 46, - "column": 22 - }, - "end": { - "line": 46, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1089, - "end": 1090, - "loc": { - "start": { - "line": 46, - "column": 26 - }, - "end": { - "line": 46, - "column": 27 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string} \n * @desc Device Manufacturer Data in Base64 format, may be `null`. ", - "start": 1095, - "end": 1190, - "loc": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 48, - "column": 74 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1195, - "end": 1199, - "loc": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 49, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1199, - "end": 1200, - "loc": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manufacturerData", - "start": 1200, - "end": 1216, - "loc": { - "start": { - "line": 49, - "column": 9 - }, - "end": { - "line": 49, - "column": 25 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1217, - "end": 1218, - "loc": { - "start": { - "line": 49, - "column": 26 - }, - "end": { - "line": 49, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1219, - "end": 1224, - "loc": { - "start": { - "line": 49, - "column": 28 - }, - "end": { - "line": 49, - "column": 33 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1224, - "end": 1225, - "loc": { - "start": { - "line": 49, - "column": 33 - }, - "end": { - "line": 49, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manufacturerData", - "start": 1225, - "end": 1241, - "loc": { - "start": { - "line": 49, - "column": 34 - }, - "end": { - "line": 49, - "column": 50 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1241, - "end": 1242, - "loc": { - "start": { - "line": 49, - "column": 50 - }, - "end": { - "line": 49, - "column": 51 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc UUIDs of advertised {@link Service}s, may be `null`. ", - "start": 1247, - "end": 1339, - "loc": { - "start": { - "line": 50, - "column": 4 - }, - "end": { - "line": 51, - "column": 69 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1344, - "end": 1348, - "loc": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 52, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1348, - "end": 1349, - "loc": { - "start": { - "line": 52, - "column": 8 - }, - "end": { - "line": 52, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUIDs", - "start": 1349, - "end": 1361, - "loc": { - "start": { - "line": 52, - "column": 9 - }, - "end": { - "line": 52, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1362, - "end": 1363, - "loc": { - "start": { - "line": 52, - "column": 22 - }, - "end": { - "line": 52, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1364, - "end": 1369, - "loc": { - "start": { - "line": 52, - "column": 24 - }, - "end": { - "line": 52, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1369, - "end": 1370, - "loc": { - "start": { - "line": 52, - "column": 29 - }, - "end": { - "line": 52, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUIDs", - "start": 1370, - "end": 1382, - "loc": { - "start": { - "line": 52, - "column": 30 - }, - "end": { - "line": 52, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1382, - "end": 1383, - "loc": { - "start": { - "line": 52, - "column": 42 - }, - "end": { - "line": 52, - "column": 43 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?number} \n * @desc Transmitted power level, may be `null`. ", - "start": 1388, - "end": 1465, - "loc": { - "start": { - "line": 53, - "column": 4 - }, - "end": { - "line": 54, - "column": 56 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1470, - "end": 1474, - "loc": { - "start": { - "line": 55, - "column": 4 - }, - "end": { - "line": 55, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1474, - "end": 1475, - "loc": { - "start": { - "line": 55, - "column": 8 - }, - "end": { - "line": 55, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "txPowerLevel", - "start": 1475, - "end": 1487, - "loc": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 21 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1488, - "end": 1489, - "loc": { - "start": { - "line": 55, - "column": 22 - }, - "end": { - "line": 55, - "column": 23 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1490, - "end": 1495, - "loc": { - "start": { - "line": 55, - "column": 24 - }, - "end": { - "line": 55, - "column": 29 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1495, - "end": 1496, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 55, - "column": 30 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "txPowerLevel", - "start": 1496, - "end": 1508, - "loc": { - "start": { - "line": 55, - "column": 30 - }, - "end": { - "line": 55, - "column": 42 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1508, - "end": 1509, - "loc": { - "start": { - "line": 55, - "column": 42 - }, - "end": { - "line": 55, - "column": 43 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Solicited {@link Service} UUIDs, may be `null`. ", - "start": 1514, - "end": 1601, - "loc": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 57, - "column": 64 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1606, - "end": 1610, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1610, - "end": 1611, - "loc": { - "start": { - "line": 58, - "column": 8 - }, - "end": { - "line": 58, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "solicitedServiceUUIDs", - "start": 1611, - "end": 1632, - "loc": { - "start": { - "line": 58, - "column": 9 - }, - "end": { - "line": 58, - "column": 30 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1633, - "end": 1634, - "loc": { - "start": { - "line": 58, - "column": 31 - }, - "end": { - "line": 58, - "column": 32 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1635, - "end": 1640, - "loc": { - "start": { - "line": 58, - "column": 33 - }, - "end": { - "line": 58, - "column": 38 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1640, - "end": 1641, - "loc": { - "start": { - "line": 58, - "column": 38 - }, - "end": { - "line": 58, - "column": 39 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "solicitedServiceUUIDs", - "start": 1641, - "end": 1662, - "loc": { - "start": { - "line": 58, - "column": 39 - }, - "end": { - "line": 58, - "column": 60 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1662, - "end": 1663, - "loc": { - "start": { - "line": 58, - "column": 60 - }, - "end": { - "line": 58, - "column": 61 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?boolean} \n * @desc Is Device connectable (iOS only), may be `null`. ", - "start": 1668, - "end": 1755, - "loc": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 60, - "column": 65 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1760, - "end": 1764, - "loc": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1764, - "end": 1765, - "loc": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isConnectable", - "start": 1765, - "end": 1778, - "loc": { - "start": { - "line": 61, - "column": 9 - }, - "end": { - "line": 61, - "column": 22 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1779, - "end": 1780, - "loc": { - "start": { - "line": 61, - "column": 23 - }, - "end": { - "line": 61, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1781, - "end": 1786, - "loc": { - "start": { - "line": 61, - "column": 25 - }, - "end": { - "line": 61, - "column": 30 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1786, - "end": 1787, - "loc": { - "start": { - "line": 61, - "column": 30 - }, - "end": { - "line": 61, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isConnectable", - "start": 1787, - "end": 1800, - "loc": { - "start": { - "line": 61, - "column": 31 - }, - "end": { - "line": 61, - "column": 44 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1800, - "end": 1801, - "loc": { - "start": { - "line": 61, - "column": 44 - }, - "end": { - "line": 61, - "column": 45 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?string[]} \n * @desc Overflow {@link Service} UUIDs (iOS only), may be `null`. ", - "start": 1806, - "end": 1903, - "loc": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 63, - "column": 74 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1908, - "end": 1912, - "loc": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1912, - "end": 1913, - "loc": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "overflowServiceUUIDs", - "start": 1913, - "end": 1933, - "loc": { - "start": { - "line": 64, - "column": 9 - }, - "end": { - "line": 64, - "column": 29 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1934, - "end": 1935, - "loc": { - "start": { - "line": 64, - "column": 30 - }, - "end": { - "line": 64, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1936, - "end": 1941, - "loc": { - "start": { - "line": 64, - "column": 32 - }, - "end": { - "line": 64, - "column": 37 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1941, - "end": 1942, - "loc": { - "start": { - "line": 64, - "column": 37 - }, - "end": { - "line": 64, - "column": 38 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "overflowServiceUUIDs", - "start": 1942, - "end": 1962, - "loc": { - "start": { - "line": 64, - "column": 38 - }, - "end": { - "line": 64, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1962, - "end": 1963, - "loc": { - "start": { - "line": 64, - "column": 58 - }, - "end": { - "line": 64, - "column": 59 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {?{[service:string]:string}} \n * @desc Data related to specific {@link Service}, may be `null`. ", - "start": 1968, - "end": 2081, - "loc": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 66, - "column": 73 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2086, - "end": 2090, - "loc": { - "start": { - "line": 67, - "column": 4 - }, - "end": { - "line": 67, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2090, - "end": 2091, - "loc": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceData", - "start": 2091, - "end": 2102, - "loc": { - "start": { - "line": 67, - "column": 9 - }, - "end": { - "line": 67, - "column": 20 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 2103, - "end": 2104, - "loc": { - "start": { - "line": 67, - "column": 21 - }, - "end": { - "line": 67, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 2105, - "end": 2110, - "loc": { - "start": { - "line": 67, - "column": 23 - }, - "end": { - "line": 67, - "column": 28 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2110, - "end": 2111, - "loc": { - "start": { - "line": 67, - "column": 28 - }, - "end": { - "line": 67, - "column": 29 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceData", - "start": 2111, - "end": 2122, - "loc": { - "start": { - "line": 67, - "column": 29 - }, - "end": { - "line": 67, - "column": 40 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2122, - "end": 2123, - "loc": { - "start": { - "line": 67, - "column": 40 - }, - "end": { - "line": 67, - "column": 41 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2126, - "end": 2127, - "loc": { - "start": { - "line": 68, - "column": 2 - }, - "end": { - "line": 68, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.connectToDevice} with partially filled arguments.\n * \n * @param {?ConnectionOptions} options - Platform specific options for connection establishment. Not used currently.\n * @returns {Promise} Connected {@link Device} object if successful.\n * \n * @memberOf Device\n ", - "start": 2131, - "end": 2446, - "loc": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 2449, - "end": 2454, - "loc": { - "start": { - "line": 78, - "column": 2 - }, - "end": { - "line": 78, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "connect", - "start": 2455, - "end": 2462, - "loc": { - "start": { - "line": 78, - "column": 8 - }, - "end": { - "line": 78, - "column": 15 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2462, - "end": 2463, - "loc": { - "start": { - "line": 78, - "column": 15 - }, - "end": { - "line": 78, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 2463, - "end": 2470, - "loc": { - "start": { - "line": 78, - "column": 16 - }, - "end": { - "line": 78, - "column": 23 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2470, - "end": 2471, - "loc": { - "start": { - "line": 78, - "column": 23 - }, - "end": { - "line": 78, - "column": 24 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2472, - "end": 2473, - "loc": { - "start": { - "line": 78, - "column": 25 - }, - "end": { - "line": 78, - "column": 26 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2478, - "end": 2484, - "loc": { - "start": { - "line": 79, - "column": 4 - }, - "end": { - "line": 79, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2485, - "end": 2489, - "loc": { - "start": { - "line": 79, - "column": 11 - }, - "end": { - "line": 79, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2489, - "end": 2490, - "loc": { - "start": { - "line": 79, - "column": 15 - }, - "end": { - "line": 79, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 2490, - "end": 2498, - "loc": { - "start": { - "line": 79, - "column": 16 - }, - "end": { - "line": 79, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2498, - "end": 2499, - "loc": { - "start": { - "line": 79, - "column": 24 - }, - "end": { - "line": 79, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "connectToDevice", - "start": 2499, - "end": 2514, - "loc": { - "start": { - "line": 79, - "column": 25 - }, - "end": { - "line": 79, - "column": 40 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2514, - "end": 2515, - "loc": { - "start": { - "line": 79, - "column": 40 - }, - "end": { - "line": 79, - "column": 41 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2515, - "end": 2519, - "loc": { - "start": { - "line": 79, - "column": 41 - }, - "end": { - "line": 79, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2519, - "end": 2520, - "loc": { - "start": { - "line": 79, - "column": 45 - }, - "end": { - "line": 79, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 2520, - "end": 2522, - "loc": { - "start": { - "line": 79, - "column": 46 - }, - "end": { - "line": 79, - "column": 48 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2522, - "end": 2523, - "loc": { - "start": { - "line": 79, - "column": 48 - }, - "end": { - "line": 79, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "options", - "start": 2524, - "end": 2531, - "loc": { - "start": { - "line": 79, - "column": 50 - }, - "end": { - "line": 79, - "column": 57 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2531, - "end": 2532, - "loc": { - "start": { - "line": 79, - "column": 57 - }, - "end": { - "line": 79, - "column": 58 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2532, - "end": 2533, - "loc": { - "start": { - "line": 79, - "column": 58 - }, - "end": { - "line": 79, - "column": 59 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2536, - "end": 2537, - "loc": { - "start": { - "line": 80, - "column": 2 - }, - "end": { - "line": 80, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.cancelDeviceConnection} with partially filled arguments.\n * \n * @returns {Promise} Returns closed {@link Device} when operation is successful.\n * \n * @memberOf Device\n ", - "start": 2541, - "end": 2756, - "loc": { - "start": { - "line": 82, - "column": 2 - }, - "end": { - "line": 88, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 2759, - "end": 2764, - "loc": { - "start": { - "line": 89, - "column": 2 - }, - "end": { - "line": 89, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelConnection", - "start": 2765, - "end": 2781, - "loc": { - "start": { - "line": 89, - "column": 8 - }, - "end": { - "line": 89, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2781, - "end": 2782, - "loc": { - "start": { - "line": 89, - "column": 24 - }, - "end": { - "line": 89, - "column": 25 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2782, - "end": 2783, - "loc": { - "start": { - "line": 89, - "column": 25 - }, - "end": { - "line": 89, - "column": 26 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2784, - "end": 2785, - "loc": { - "start": { - "line": 89, - "column": 27 - }, - "end": { - "line": 89, - "column": 28 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2790, - "end": 2796, - "loc": { - "start": { - "line": 90, - "column": 4 - }, - "end": { - "line": 90, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2797, - "end": 2801, - "loc": { - "start": { - "line": 90, - "column": 11 - }, - "end": { - "line": 90, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2801, - "end": 2802, - "loc": { - "start": { - "line": 90, - "column": 15 - }, - "end": { - "line": 90, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 2802, - "end": 2810, - "loc": { - "start": { - "line": 90, - "column": 16 - }, - "end": { - "line": 90, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2810, - "end": 2811, - "loc": { - "start": { - "line": 90, - "column": 24 - }, - "end": { - "line": 90, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "cancelDeviceConnection", - "start": 2811, - "end": 2833, - "loc": { - "start": { - "line": 90, - "column": 25 - }, - "end": { - "line": 90, - "column": 47 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2833, - "end": 2834, - "loc": { - "start": { - "line": 90, - "column": 47 - }, - "end": { - "line": 90, - "column": 48 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2834, - "end": 2838, - "loc": { - "start": { - "line": 90, - "column": 48 - }, - "end": { - "line": 90, - "column": 52 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2838, - "end": 2839, - "loc": { - "start": { - "line": 90, - "column": 52 - }, - "end": { - "line": 90, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 2839, - "end": 2841, - "loc": { - "start": { - "line": 90, - "column": 53 - }, - "end": { - "line": 90, - "column": 55 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2841, - "end": 2842, - "loc": { - "start": { - "line": 90, - "column": 55 - }, - "end": { - "line": 90, - "column": 56 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2842, - "end": 2843, - "loc": { - "start": { - "line": 90, - "column": 56 - }, - "end": { - "line": 90, - "column": 57 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2846, - "end": 2847, - "loc": { - "start": { - "line": 91, - "column": 2 - }, - "end": { - "line": 91, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.isDeviceConnected} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits `true` if device is connected, and `false` otherwise.\n * \n * @memberOf Device\n ", - "start": 2851, - "end": 3078, - "loc": { - "start": { - "line": 93, - "column": 2 - }, - "end": { - "line": 99, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 3081, - "end": 3086, - "loc": { - "start": { - "line": 100, - "column": 2 - }, - "end": { - "line": 100, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isConnected", - "start": 3087, - "end": 3098, - "loc": { - "start": { - "line": 100, - "column": 8 - }, - "end": { - "line": 100, - "column": 19 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3098, - "end": 3099, - "loc": { - "start": { - "line": 100, - "column": 19 - }, - "end": { - "line": 100, - "column": 20 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3099, - "end": 3100, - "loc": { - "start": { - "line": 100, - "column": 20 - }, - "end": { - "line": 100, - "column": 21 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3101, - "end": 3102, - "loc": { - "start": { - "line": 100, - "column": 22 - }, - "end": { - "line": 100, - "column": 23 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3107, - "end": 3113, - "loc": { - "start": { - "line": 101, - "column": 4 - }, - "end": { - "line": 101, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3114, - "end": 3118, - "loc": { - "start": { - "line": 101, - "column": 11 - }, - "end": { - "line": 101, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3118, - "end": 3119, - "loc": { - "start": { - "line": 101, - "column": 15 - }, - "end": { - "line": 101, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 3119, - "end": 3127, - "loc": { - "start": { - "line": 101, - "column": 16 - }, - "end": { - "line": 101, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3127, - "end": 3128, - "loc": { - "start": { - "line": 101, - "column": 24 - }, - "end": { - "line": 101, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isDeviceConnected", - "start": 3128, - "end": 3145, - "loc": { - "start": { - "line": 101, - "column": 25 - }, - "end": { - "line": 101, - "column": 42 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3145, - "end": 3146, - "loc": { - "start": { - "line": 101, - "column": 42 - }, - "end": { - "line": 101, - "column": 43 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3146, - "end": 3150, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3150, - "end": 3151, - "loc": { - "start": { - "line": 101, - "column": 47 - }, - "end": { - "line": 101, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 3151, - "end": 3153, - "loc": { - "start": { - "line": 101, - "column": 48 - }, - "end": { - "line": 101, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3153, - "end": 3154, - "loc": { - "start": { - "line": 101, - "column": 50 - }, - "end": { - "line": 101, - "column": 51 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3154, - "end": 3155, - "loc": { - "start": { - "line": 101, - "column": 51 - }, - "end": { - "line": 101, - "column": 52 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3158, - "end": 3159, - "loc": { - "start": { - "line": 102, - "column": 2 - }, - "end": { - "line": 102, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.onDeviceDisconnected} with partially filled arguments.\n * \n * @param {function(error: ?Error, device: Device)} listener - callback returning error as a reason of disconnection \n * if available and {@link Device} object.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 3163, - "end": 3550, - "loc": { - "start": { - "line": 104, - "column": 2 - }, - "end": { - "line": 112, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "onDisconnected", - "start": 3553, - "end": 3567, - "loc": { - "start": { - "line": 113, - "column": 2 - }, - "end": { - "line": 113, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3567, - "end": 3568, - "loc": { - "start": { - "line": 113, - "column": 16 - }, - "end": { - "line": 113, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 3568, - "end": 3576, - "loc": { - "start": { - "line": 113, - "column": 17 - }, - "end": { - "line": 113, - "column": 25 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3576, - "end": 3577, - "loc": { - "start": { - "line": 113, - "column": 25 - }, - "end": { - "line": 113, - "column": 26 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3578, - "end": 3579, - "loc": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 28 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3584, - "end": 3590, - "loc": { - "start": { - "line": 114, - "column": 4 - }, - "end": { - "line": 114, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3591, - "end": 3595, - "loc": { - "start": { - "line": 114, - "column": 11 - }, - "end": { - "line": 114, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3595, - "end": 3596, - "loc": { - "start": { - "line": 114, - "column": 15 - }, - "end": { - "line": 114, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 3596, - "end": 3604, - "loc": { - "start": { - "line": 114, - "column": 16 - }, - "end": { - "line": 114, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3604, - "end": 3605, - "loc": { - "start": { - "line": 114, - "column": 24 - }, - "end": { - "line": 114, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "onDeviceDisconnected", - "start": 3605, - "end": 3625, - "loc": { - "start": { - "line": 114, - "column": 25 - }, - "end": { - "line": 114, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3625, - "end": 3626, - "loc": { - "start": { - "line": 114, - "column": 45 - }, - "end": { - "line": 114, - "column": 46 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3626, - "end": 3630, - "loc": { - "start": { - "line": 114, - "column": 46 - }, - "end": { - "line": 114, - "column": 50 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3630, - "end": 3631, - "loc": { - "start": { - "line": 114, - "column": 50 - }, - "end": { - "line": 114, - "column": 51 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 3631, - "end": 3633, - "loc": { - "start": { - "line": 114, - "column": 51 - }, - "end": { - "line": 114, - "column": 53 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3633, - "end": 3634, - "loc": { - "start": { - "line": 114, - "column": 53 - }, - "end": { - "line": 114, - "column": 54 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 3635, - "end": 3643, - "loc": { - "start": { - "line": 114, - "column": 55 - }, - "end": { - "line": 114, - "column": 63 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3643, - "end": 3644, - "loc": { - "start": { - "line": 114, - "column": 63 - }, - "end": { - "line": 114, - "column": 64 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3644, - "end": 3645, - "loc": { - "start": { - "line": 114, - "column": 64 - }, - "end": { - "line": 114, - "column": 65 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3648, - "end": 3649, - "loc": { - "start": { - "line": 115, - "column": 2 - }, - "end": { - "line": 115, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits {@link Device} object if all available services and \n * characteristics have been discovered.\n * \n * @memberOf Device\n ", - "start": 3653, - "end": 3950, - "loc": { - "start": { - "line": 117, - "column": 2 - }, - "end": { - "line": 124, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 3953, - "end": 3958, - "loc": { - "start": { - "line": 125, - "column": 2 - }, - "end": { - "line": 125, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "discoverAllServicesAndCharacteristics", - "start": 3959, - "end": 3996, - "loc": { - "start": { - "line": 125, - "column": 8 - }, - "end": { - "line": 125, - "column": 45 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3996, - "end": 3997, - "loc": { - "start": { - "line": 125, - "column": 45 - }, - "end": { - "line": 125, - "column": 46 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3997, - "end": 3998, - "loc": { - "start": { - "line": 125, - "column": 46 - }, - "end": { - "line": 125, - "column": 47 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3999, - "end": 4000, - "loc": { - "start": { - "line": 125, - "column": 48 - }, - "end": { - "line": 125, - "column": 49 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 4005, - "end": 4011, - "loc": { - "start": { - "line": 126, - "column": 4 - }, - "end": { - "line": 126, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4012, - "end": 4016, - "loc": { - "start": { - "line": 126, - "column": 11 - }, - "end": { - "line": 126, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4016, - "end": 4017, - "loc": { - "start": { - "line": 126, - "column": 15 - }, - "end": { - "line": 126, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 4017, - "end": 4025, - "loc": { - "start": { - "line": 126, - "column": 16 - }, - "end": { - "line": 126, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4025, - "end": 4026, - "loc": { - "start": { - "line": 126, - "column": 24 - }, - "end": { - "line": 126, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "discoverAllServicesAndCharacteristicsForDevice", - "start": 4026, - "end": 4072, - "loc": { - "start": { - "line": 126, - "column": 25 - }, - "end": { - "line": 126, - "column": 71 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4072, - "end": 4073, - "loc": { - "start": { - "line": 126, - "column": 71 - }, - "end": { - "line": 126, - "column": 72 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4073, - "end": 4077, - "loc": { - "start": { - "line": 126, - "column": 72 - }, - "end": { - "line": 126, - "column": 76 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4077, - "end": 4078, - "loc": { - "start": { - "line": 126, - "column": 76 - }, - "end": { - "line": 126, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 4078, - "end": 4080, - "loc": { - "start": { - "line": 126, - "column": 77 - }, - "end": { - "line": 126, - "column": 79 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4080, - "end": 4081, - "loc": { - "start": { - "line": 126, - "column": 79 - }, - "end": { - "line": 126, - "column": 80 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4081, - "end": 4082, - "loc": { - "start": { - "line": 126, - "column": 80 - }, - "end": { - "line": 126, - "column": 81 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4085, - "end": 4086, - "loc": { - "start": { - "line": 127, - "column": 2 - }, - "end": { - "line": 127, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.servicesForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Service} objects which are discovered by this\n * device.\n * \n * @memberOf Device\n ", - "start": 4090, - "end": 4340, - "loc": { - "start": { - "line": 129, - "column": 2 - }, - "end": { - "line": 136, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 4343, - "end": 4348, - "loc": { - "start": { - "line": 137, - "column": 2 - }, - "end": { - "line": 137, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "services", - "start": 4349, - "end": 4357, - "loc": { - "start": { - "line": 137, - "column": 8 - }, - "end": { - "line": 137, - "column": 16 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4357, - "end": 4358, - "loc": { - "start": { - "line": 137, - "column": 16 - }, - "end": { - "line": 137, - "column": 17 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4358, - "end": 4359, - "loc": { - "start": { - "line": 137, - "column": 17 - }, - "end": { - "line": 137, - "column": 18 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4360, - "end": 4361, - "loc": { - "start": { - "line": 137, - "column": 19 - }, - "end": { - "line": 137, - "column": 20 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 4366, - "end": 4372, - "loc": { - "start": { - "line": 138, - "column": 4 - }, - "end": { - "line": 138, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4373, - "end": 4377, - "loc": { - "start": { - "line": 138, - "column": 11 - }, - "end": { - "line": 138, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4377, - "end": 4378, - "loc": { - "start": { - "line": 138, - "column": 15 - }, - "end": { - "line": 138, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 4378, - "end": 4386, - "loc": { - "start": { - "line": 138, - "column": 16 - }, - "end": { - "line": 138, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4386, - "end": 4387, - "loc": { - "start": { - "line": 138, - "column": 24 - }, - "end": { - "line": 138, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "servicesForDevice", - "start": 4387, - "end": 4404, - "loc": { - "start": { - "line": 138, - "column": 25 - }, - "end": { - "line": 138, - "column": 42 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4404, - "end": 4405, - "loc": { - "start": { - "line": 138, - "column": 42 - }, - "end": { - "line": 138, - "column": 43 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4405, - "end": 4409, - "loc": { - "start": { - "line": 138, - "column": 43 - }, - "end": { - "line": 138, - "column": 47 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4409, - "end": 4410, - "loc": { - "start": { - "line": 138, - "column": 47 - }, - "end": { - "line": 138, - "column": 48 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 4410, - "end": 4412, - "loc": { - "start": { - "line": 138, - "column": 48 - }, - "end": { - "line": 138, - "column": 50 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4412, - "end": 4413, - "loc": { - "start": { - "line": 138, - "column": 50 - }, - "end": { - "line": 138, - "column": 51 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4413, - "end": 4414, - "loc": { - "start": { - "line": 138, - "column": 51 - }, - "end": { - "line": 138, - "column": 52 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4417, - "end": 4418, - "loc": { - "start": { - "line": 139, - "column": 2 - }, - "end": { - "line": 139, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for a {@link Device} in specified {@link Service}.\n * \n * @memberOf Device\n ", - "start": 4422, - "end": 4786, - "loc": { - "start": { - "line": 141, - "column": 2 - }, - "end": { - "line": 149, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 4789, - "end": 4794, - "loc": { - "start": { - "line": 150, - "column": 2 - }, - "end": { - "line": 150, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicsForService", - "start": 4795, - "end": 4820, - "loc": { - "start": { - "line": 150, - "column": 8 - }, - "end": { - "line": 150, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4820, - "end": 4821, - "loc": { - "start": { - "line": 150, - "column": 33 - }, - "end": { - "line": 150, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 4821, - "end": 4832, - "loc": { - "start": { - "line": 150, - "column": 34 - }, - "end": { - "line": 150, - "column": 45 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4832, - "end": 4833, - "loc": { - "start": { - "line": 150, - "column": 45 - }, - "end": { - "line": 150, - "column": 46 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4834, - "end": 4835, - "loc": { - "start": { - "line": 150, - "column": 47 - }, - "end": { - "line": 150, - "column": 48 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 4840, - "end": 4846, - "loc": { - "start": { - "line": 151, - "column": 4 - }, - "end": { - "line": 151, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4847, - "end": 4851, - "loc": { - "start": { - "line": 151, - "column": 11 - }, - "end": { - "line": 151, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4851, - "end": 4852, - "loc": { - "start": { - "line": 151, - "column": 15 - }, - "end": { - "line": 151, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 4852, - "end": 4860, - "loc": { - "start": { - "line": 151, - "column": 16 - }, - "end": { - "line": 151, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4860, - "end": 4861, - "loc": { - "start": { - "line": 151, - "column": 24 - }, - "end": { - "line": 151, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicsForDevice", - "start": 4861, - "end": 4885, - "loc": { - "start": { - "line": 151, - "column": 25 - }, - "end": { - "line": 151, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4885, - "end": 4886, - "loc": { - "start": { - "line": 151, - "column": 49 - }, - "end": { - "line": 151, - "column": 50 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4886, - "end": 4890, - "loc": { - "start": { - "line": 151, - "column": 50 - }, - "end": { - "line": 151, - "column": 54 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4890, - "end": 4891, - "loc": { - "start": { - "line": 151, - "column": 54 - }, - "end": { - "line": 151, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 4891, - "end": 4893, - "loc": { - "start": { - "line": 151, - "column": 55 - }, - "end": { - "line": 151, - "column": 57 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4893, - "end": 4894, - "loc": { - "start": { - "line": 151, - "column": 57 - }, - "end": { - "line": 151, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 4895, - "end": 4906, - "loc": { - "start": { - "line": 151, - "column": 59 - }, - "end": { - "line": 151, - "column": 70 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4906, - "end": 4907, - "loc": { - "start": { - "line": 151, - "column": 70 - }, - "end": { - "line": 151, - "column": 71 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4907, - "end": 4908, - "loc": { - "start": { - "line": 151, - "column": 71 - }, - "end": { - "line": 151, - "column": 72 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4911, - "end": 4912, - "loc": { - "start": { - "line": 152, - "column": 2 - }, - "end": { - "line": 152, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 4916, - "end": 5505, - "loc": { - "start": { - "line": 154, - "column": 2 - }, - "end": { - "line": 164, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 5508, - "end": 5513, - "loc": { - "start": { - "line": 165, - "column": 2 - }, - "end": { - "line": 165, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForService", - "start": 5514, - "end": 5542, - "loc": { - "start": { - "line": 165, - "column": 8 - }, - "end": { - "line": 165, - "column": 36 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5542, - "end": 5543, - "loc": { - "start": { - "line": 165, - "column": 36 - }, - "end": { - "line": 165, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 5543, - "end": 5554, - "loc": { - "start": { - "line": 165, - "column": 37 - }, - "end": { - "line": 165, - "column": 48 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5554, - "end": 5555, - "loc": { - "start": { - "line": 165, - "column": 48 - }, - "end": { - "line": 165, - "column": 49 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 5556, - "end": 5574, - "loc": { - "start": { - "line": 165, - "column": 50 - }, - "end": { - "line": 165, - "column": 68 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5574, - "end": 5575, - "loc": { - "start": { - "line": 165, - "column": 68 - }, - "end": { - "line": 165, - "column": 69 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 5576, - "end": 5589, - "loc": { - "start": { - "line": 165, - "column": 70 - }, - "end": { - "line": 165, - "column": 83 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5589, - "end": 5590, - "loc": { - "start": { - "line": 165, - "column": 83 - }, - "end": { - "line": 165, - "column": 84 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5591, - "end": 5592, - "loc": { - "start": { - "line": 165, - "column": 85 - }, - "end": { - "line": 165, - "column": 86 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 5597, - "end": 5603, - "loc": { - "start": { - "line": 166, - "column": 4 - }, - "end": { - "line": 166, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5604, - "end": 5608, - "loc": { - "start": { - "line": 166, - "column": 11 - }, - "end": { - "line": 166, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5608, - "end": 5609, - "loc": { - "start": { - "line": 166, - "column": 15 - }, - "end": { - "line": 166, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 5609, - "end": 5617, - "loc": { - "start": { - "line": 166, - "column": 16 - }, - "end": { - "line": 166, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5617, - "end": 5618, - "loc": { - "start": { - "line": 166, - "column": 24 - }, - "end": { - "line": 166, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForDevice", - "start": 5618, - "end": 5645, - "loc": { - "start": { - "line": 166, - "column": 25 - }, - "end": { - "line": 166, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5645, - "end": 5646, - "loc": { - "start": { - "line": 166, - "column": 52 - }, - "end": { - "line": 166, - "column": 53 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 5646, - "end": 5650, - "loc": { - "start": { - "line": 166, - "column": 53 - }, - "end": { - "line": 166, - "column": 57 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5650, - "end": 5651, - "loc": { - "start": { - "line": 166, - "column": 57 - }, - "end": { - "line": 166, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 5651, - "end": 5653, - "loc": { - "start": { - "line": 166, - "column": 58 - }, - "end": { - "line": 166, - "column": 60 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5653, - "end": 5654, - "loc": { - "start": { - "line": 166, - "column": 60 - }, - "end": { - "line": 166, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 5655, - "end": 5666, - "loc": { - "start": { - "line": 166, - "column": 62 - }, - "end": { - "line": 166, - "column": 73 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5666, - "end": 5667, - "loc": { - "start": { - "line": 166, - "column": 73 - }, - "end": { - "line": 166, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 5668, - "end": 5686, - "loc": { - "start": { - "line": 166, - "column": 75 - }, - "end": { - "line": 166, - "column": 93 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5686, - "end": 5687, - "loc": { - "start": { - "line": 166, - "column": 93 - }, - "end": { - "line": 166, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 5688, - "end": 5701, - "loc": { - "start": { - "line": 166, - "column": 95 - }, - "end": { - "line": 166, - "column": 108 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5701, - "end": 5702, - "loc": { - "start": { - "line": 166, - "column": 108 - }, - "end": { - "line": 166, - "column": 109 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 5702, - "end": 5703, - "loc": { - "start": { - "line": 166, - "column": 109 - }, - "end": { - "line": 166, - "column": 110 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 5706, - "end": 5707, - "loc": { - "start": { - "line": 167, - "column": 2 - }, - "end": { - "line": 167, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 5711, - "end": 6367, - "loc": { - "start": { - "line": 169, - "column": 2 - }, - "end": { - "line": 180, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 6370, - "end": 6375, - "loc": { - "start": { - "line": 181, - "column": 2 - }, - "end": { - "line": 181, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponseForService", - "start": 6376, - "end": 6417, - "loc": { - "start": { - "line": 181, - "column": 8 - }, - "end": { - "line": 181, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6417, - "end": 6418, - "loc": { - "start": { - "line": 181, - "column": 49 - }, - "end": { - "line": 181, - "column": 50 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 6418, - "end": 6429, - "loc": { - "start": { - "line": 181, - "column": 50 - }, - "end": { - "line": 181, - "column": 61 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6429, - "end": 6430, - "loc": { - "start": { - "line": 181, - "column": 61 - }, - "end": { - "line": 181, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 6431, - "end": 6449, - "loc": { - "start": { - "line": 181, - "column": 63 - }, - "end": { - "line": 181, - "column": 81 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6449, - "end": 6450, - "loc": { - "start": { - "line": 181, - "column": 81 - }, - "end": { - "line": 181, - "column": 82 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 6451, - "end": 6462, - "loc": { - "start": { - "line": 181, - "column": 83 - }, - "end": { - "line": 181, - "column": 94 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6462, - "end": 6463, - "loc": { - "start": { - "line": 181, - "column": 94 - }, - "end": { - "line": 181, - "column": 95 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 6464, - "end": 6477, - "loc": { - "start": { - "line": 181, - "column": 96 - }, - "end": { - "line": 181, - "column": 109 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6477, - "end": 6478, - "loc": { - "start": { - "line": 181, - "column": 109 - }, - "end": { - "line": 181, - "column": 110 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6479, - "end": 6480, - "loc": { - "start": { - "line": 181, - "column": 111 - }, - "end": { - "line": 181, - "column": 112 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 6485, - "end": 6491, - "loc": { - "start": { - "line": 182, - "column": 4 - }, - "end": { - "line": 182, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 6492, - "end": 6496, - "loc": { - "start": { - "line": 182, - "column": 11 - }, - "end": { - "line": 182, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6496, - "end": 6497, - "loc": { - "start": { - "line": 182, - "column": 15 - }, - "end": { - "line": 182, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 6497, - "end": 6505, - "loc": { - "start": { - "line": 182, - "column": 16 - }, - "end": { - "line": 182, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6505, - "end": 6506, - "loc": { - "start": { - "line": 182, - "column": 24 - }, - "end": { - "line": 182, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponseForDevice", - "start": 6506, - "end": 6546, - "loc": { - "start": { - "line": 182, - "column": 25 - }, - "end": { - "line": 182, - "column": 65 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6546, - "end": 6547, - "loc": { - "start": { - "line": 182, - "column": 65 - }, - "end": { - "line": 182, - "column": 66 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 6547, - "end": 6551, - "loc": { - "start": { - "line": 182, - "column": 66 - }, - "end": { - "line": 182, - "column": 70 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6551, - "end": 6552, - "loc": { - "start": { - "line": 182, - "column": 70 - }, - "end": { - "line": 182, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 6552, - "end": 6554, - "loc": { - "start": { - "line": 182, - "column": 71 - }, - "end": { - "line": 182, - "column": 73 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6554, - "end": 6555, - "loc": { - "start": { - "line": 182, - "column": 73 - }, - "end": { - "line": 182, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 6556, - "end": 6567, - "loc": { - "start": { - "line": 182, - "column": 75 - }, - "end": { - "line": 182, - "column": 86 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6567, - "end": 6568, - "loc": { - "start": { - "line": 182, - "column": 86 - }, - "end": { - "line": 182, - "column": 87 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 6569, - "end": 6587, - "loc": { - "start": { - "line": 182, - "column": 88 - }, - "end": { - "line": 182, - "column": 106 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6587, - "end": 6588, - "loc": { - "start": { - "line": 182, - "column": 106 - }, - "end": { - "line": 182, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 6589, - "end": 6600, - "loc": { - "start": { - "line": 182, - "column": 108 - }, - "end": { - "line": 182, - "column": 119 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6600, - "end": 6601, - "loc": { - "start": { - "line": 182, - "column": 119 - }, - "end": { - "line": 182, - "column": 120 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 6602, - "end": 6615, - "loc": { - "start": { - "line": 182, - "column": 121 - }, - "end": { - "line": 182, - "column": 134 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6615, - "end": 6616, - "loc": { - "start": { - "line": 182, - "column": 134 - }, - "end": { - "line": 182, - "column": 135 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 6616, - "end": 6617, - "loc": { - "start": { - "line": 182, - "column": 135 - }, - "end": { - "line": 182, - "column": 136 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 6620, - "end": 6621, - "loc": { - "start": { - "line": 183, - "column": 2 - }, - "end": { - "line": 183, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID paths. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Device\n ", - "start": 6625, - "end": 7284, - "loc": { - "start": { - "line": 185, - "column": 2 - }, - "end": { - "line": 196, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 7287, - "end": 7292, - "loc": { - "start": { - "line": 197, - "column": 2 - }, - "end": { - "line": 197, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponseForService", - "start": 7293, - "end": 7337, - "loc": { - "start": { - "line": 197, - "column": 8 - }, - "end": { - "line": 197, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7337, - "end": 7338, - "loc": { - "start": { - "line": 197, - "column": 52 - }, - "end": { - "line": 197, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 7338, - "end": 7349, - "loc": { - "start": { - "line": 197, - "column": 53 - }, - "end": { - "line": 197, - "column": 64 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7349, - "end": 7350, - "loc": { - "start": { - "line": 197, - "column": 64 - }, - "end": { - "line": 197, - "column": 65 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 7351, - "end": 7369, - "loc": { - "start": { - "line": 197, - "column": 66 - }, - "end": { - "line": 197, - "column": 84 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7369, - "end": 7370, - "loc": { - "start": { - "line": 197, - "column": 84 - }, - "end": { - "line": 197, - "column": 85 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 7371, - "end": 7382, - "loc": { - "start": { - "line": 197, - "column": 86 - }, - "end": { - "line": 197, - "column": 97 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7382, - "end": 7383, - "loc": { - "start": { - "line": 197, - "column": 97 - }, - "end": { - "line": 197, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 7384, - "end": 7397, - "loc": { - "start": { - "line": 197, - "column": 99 - }, - "end": { - "line": 197, - "column": 112 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7397, - "end": 7398, - "loc": { - "start": { - "line": 197, - "column": 112 - }, - "end": { - "line": 197, - "column": 113 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7399, - "end": 7400, - "loc": { - "start": { - "line": 197, - "column": 114 - }, - "end": { - "line": 197, - "column": 115 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 7405, - "end": 7411, - "loc": { - "start": { - "line": 198, - "column": 4 - }, - "end": { - "line": 198, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 7412, - "end": 7416, - "loc": { - "start": { - "line": 198, - "column": 11 - }, - "end": { - "line": 198, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7416, - "end": 7417, - "loc": { - "start": { - "line": 198, - "column": 15 - }, - "end": { - "line": 198, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 7417, - "end": 7425, - "loc": { - "start": { - "line": 198, - "column": 16 - }, - "end": { - "line": 198, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7425, - "end": 7426, - "loc": { - "start": { - "line": 198, - "column": 24 - }, - "end": { - "line": 198, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponseForDevice", - "start": 7426, - "end": 7469, - "loc": { - "start": { - "line": 198, - "column": 25 - }, - "end": { - "line": 198, - "column": 68 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7469, - "end": 7470, - "loc": { - "start": { - "line": 198, - "column": 68 - }, - "end": { - "line": 198, - "column": 69 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 7470, - "end": 7474, - "loc": { - "start": { - "line": 198, - "column": 69 - }, - "end": { - "line": 198, - "column": 73 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7474, - "end": 7475, - "loc": { - "start": { - "line": 198, - "column": 73 - }, - "end": { - "line": 198, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 7475, - "end": 7477, - "loc": { - "start": { - "line": 198, - "column": 74 - }, - "end": { - "line": 198, - "column": 76 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7477, - "end": 7478, - "loc": { - "start": { - "line": 198, - "column": 76 - }, - "end": { - "line": 198, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 7479, - "end": 7490, - "loc": { - "start": { - "line": 198, - "column": 78 - }, - "end": { - "line": 198, - "column": 89 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7490, - "end": 7491, - "loc": { - "start": { - "line": 198, - "column": 89 - }, - "end": { - "line": 198, - "column": 90 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 7492, - "end": 7510, - "loc": { - "start": { - "line": 198, - "column": 91 - }, - "end": { - "line": 198, - "column": 109 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7510, - "end": 7511, - "loc": { - "start": { - "line": 198, - "column": 109 - }, - "end": { - "line": 198, - "column": 110 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 7512, - "end": 7523, - "loc": { - "start": { - "line": 198, - "column": 111 - }, - "end": { - "line": 198, - "column": 122 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7523, - "end": 7524, - "loc": { - "start": { - "line": 198, - "column": 122 - }, - "end": { - "line": 198, - "column": 123 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 7525, - "end": 7538, - "loc": { - "start": { - "line": 198, - "column": 124 - }, - "end": { - "line": 198, - "column": 137 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7538, - "end": 7539, - "loc": { - "start": { - "line": 198, - "column": 137 - }, - "end": { - "line": 198, - "column": 138 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 7539, - "end": 7540, - "loc": { - "start": { - "line": 198, - "column": 138 - }, - "end": { - "line": 198, - "column": 139 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 7543, - "end": 7544, - "loc": { - "start": { - "line": 199, - "column": 2 - }, - "end": { - "line": 199, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} serviceUUID - {@link Service} UUID.\n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Device\n ", - "start": 7548, - "end": 8211, - "loc": { - "start": { - "line": 201, - "column": 2 - }, - "end": { - "line": 212, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForService", - "start": 8214, - "end": 8245, - "loc": { - "start": { - "line": 213, - "column": 2 - }, - "end": { - "line": 213, - "column": 33 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8245, - "end": 8246, - "loc": { - "start": { - "line": 213, - "column": 33 - }, - "end": { - "line": 213, - "column": 34 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 8246, - "end": 8257, - "loc": { - "start": { - "line": 213, - "column": 34 - }, - "end": { - "line": 213, - "column": 45 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8257, - "end": 8258, - "loc": { - "start": { - "line": 213, - "column": 45 - }, - "end": { - "line": 213, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 8259, - "end": 8277, - "loc": { - "start": { - "line": 213, - "column": 47 - }, - "end": { - "line": 213, - "column": 65 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8277, - "end": 8278, - "loc": { - "start": { - "line": 213, - "column": 65 - }, - "end": { - "line": 213, - "column": 66 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 8279, - "end": 8287, - "loc": { - "start": { - "line": 213, - "column": 67 - }, - "end": { - "line": 213, - "column": 75 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8287, - "end": 8288, - "loc": { - "start": { - "line": 213, - "column": 75 - }, - "end": { - "line": 213, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 8289, - "end": 8302, - "loc": { - "start": { - "line": 213, - "column": 77 - }, - "end": { - "line": 213, - "column": 90 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8302, - "end": 8303, - "loc": { - "start": { - "line": 213, - "column": 90 - }, - "end": { - "line": 213, - "column": 91 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8304, - "end": 8305, - "loc": { - "start": { - "line": 213, - "column": 92 - }, - "end": { - "line": 213, - "column": 93 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 8310, - "end": 8316, - "loc": { - "start": { - "line": 214, - "column": 4 - }, - "end": { - "line": 214, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 8317, - "end": 8321, - "loc": { - "start": { - "line": 214, - "column": 11 - }, - "end": { - "line": 214, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8321, - "end": 8322, - "loc": { - "start": { - "line": 214, - "column": 15 - }, - "end": { - "line": 214, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 8322, - "end": 8330, - "loc": { - "start": { - "line": 214, - "column": 16 - }, - "end": { - "line": 214, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8330, - "end": 8331, - "loc": { - "start": { - "line": 214, - "column": 24 - }, - "end": { - "line": 214, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForDevice", - "start": 8331, - "end": 8361, - "loc": { - "start": { - "line": 214, - "column": 25 - }, - "end": { - "line": 214, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8361, - "end": 8362, - "loc": { - "start": { - "line": 214, - "column": 55 - }, - "end": { - "line": 214, - "column": 56 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 8362, - "end": 8366, - "loc": { - "start": { - "line": 214, - "column": 56 - }, - "end": { - "line": 214, - "column": 60 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8366, - "end": 8367, - "loc": { - "start": { - "line": 214, - "column": 60 - }, - "end": { - "line": 214, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "id", - "start": 8367, - "end": 8369, - "loc": { - "start": { - "line": 214, - "column": 61 - }, - "end": { - "line": 214, - "column": 63 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8369, - "end": 8370, - "loc": { - "start": { - "line": 214, - "column": 63 - }, - "end": { - "line": 214, - "column": 64 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "serviceUUID", - "start": 8371, - "end": 8382, - "loc": { - "start": { - "line": 214, - "column": 65 - }, - "end": { - "line": 214, - "column": 76 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8382, - "end": 8383, - "loc": { - "start": { - "line": 214, - "column": 76 - }, - "end": { - "line": 214, - "column": 77 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 8384, - "end": 8402, - "loc": { - "start": { - "line": 214, - "column": 78 - }, - "end": { - "line": 214, - "column": 96 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8402, - "end": 8403, - "loc": { - "start": { - "line": 214, - "column": 96 - }, - "end": { - "line": 214, - "column": 97 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 8404, - "end": 8412, - "loc": { - "start": { - "line": 214, - "column": 98 - }, - "end": { - "line": 214, - "column": 106 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8412, - "end": 8413, - "loc": { - "start": { - "line": 214, - "column": 106 - }, - "end": { - "line": 214, - "column": 107 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 8414, - "end": 8427, - "loc": { - "start": { - "line": 214, - "column": 108 - }, - "end": { - "line": 214, - "column": 121 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8427, - "end": 8428, - "loc": { - "start": { - "line": 214, - "column": 121 - }, - "end": { - "line": 214, - "column": 122 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8428, - "end": 8429, - "loc": { - "start": { - "line": 214, - "column": 122 - }, - "end": { - "line": 214, - "column": 123 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8432, - "end": 8433, - "loc": { - "start": { - "line": 215, - "column": 2 - }, - "end": { - "line": 215, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 8434, - "end": 8435, - "loc": { - "start": { - "line": 216, - "column": 0 - }, - "end": { - "line": 216, - "column": 1 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 8435, - "end": 8435, - "loc": { - "start": { - "line": 216, - "column": 1 - }, - "end": { - "line": 216, - "column": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/src/Service.js.json b/docs/ast/source/src/Service.js.json deleted file mode 100644 index 5745ad01..00000000 --- a/docs/ast/source/src/Service.js.json +++ /dev/null @@ -1,9093 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 4689, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 119, - "column": 1 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 4689, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 119, - "column": 1 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ImportDeclaration", - "start": 15, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 38 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - }, - "local": { - "type": "Identifier", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - }, - "identifierName": "BleManager" - }, - "name": "BleManager" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - }, - "extra": { - "rawValue": "./BleManager", - "raw": "'./BleManager'" - }, - "value": "./BleManager" - } - }, - { - "type": "ImportDeclaration", - "start": 54, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 46 - } - }, - "specifiers": [ - { - "type": "ImportDefaultSpecifier", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - } - }, - "local": { - "type": "Identifier", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - }, - "identifierName": "Characteristic" - }, - "name": "Characteristic" - } - } - ], - "source": { - "type": "StringLiteral", - "start": 81, - "end": 99, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 45 - } - }, - "extra": { - "rawValue": "./Characteristic", - "raw": "'./Characteristic'" - }, - "value": "./Characteristic" - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Service format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeService\n ", - "start": 103, - "end": 264, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 13, - "column": 3 - } - } - } - ] - }, - { - "type": "ClassDeclaration", - "start": 265, - "end": 287, - "loc": { - "start": { - "line": 14, - "column": 0 - }, - "end": { - "line": 14, - "column": 22 - } - }, - "id": { - "type": "Identifier", - "start": 271, - "end": 284, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 19 - }, - "identifierName": "NativeService" - }, - "name": "NativeService", - "leadingComments": null - }, - "superClass": null, - "body": { - "type": "ClassBody", - "start": 285, - "end": 287, - "loc": { - "start": { - "line": 14, - "column": 20 - }, - "end": { - "line": 14, - "column": 22 - } - }, - "body": [], - "leadingComments": null, - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Service format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeService\n ", - "start": 103, - "end": 264, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 13, - "column": 3 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Service object.\n * \n * @export\n * @class Service\n * @extends {NativeService}\n ", - "start": 289, - "end": 376, - "loc": { - "start": { - "line": 16, - "column": 0 - }, - "end": { - "line": 22, - "column": 3 - } - } - } - ] - }, - { - "type": "ExportDefaultDeclaration", - "start": 377, - "end": 4689, - "loc": { - "start": { - "line": 23, - "column": 0 - }, - "end": { - "line": 119, - "column": 1 - } - }, - "declaration": { - "type": "ClassDeclaration", - "start": 392, - "end": 4689, - "loc": { - "start": { - "line": 23, - "column": 15 - }, - "end": { - "line": 119, - "column": 1 - } - }, - "id": { - "type": "Identifier", - "start": 398, - "end": 405, - "loc": { - "start": { - "line": 23, - "column": 21 - }, - "end": { - "line": 23, - "column": 28 - }, - "identifierName": "Service" - }, - "name": "Service", - "leadingComments": null - }, - "superClass": { - "type": "Identifier", - "start": 414, - "end": 427, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 50 - }, - "identifierName": "NativeService" - }, - "name": "NativeService" - }, - "body": { - "type": "ClassBody", - "start": 428, - "end": 4689, - "loc": { - "start": { - "line": 23, - "column": 51 - }, - "end": { - "line": 119, - "column": 1 - } - }, - "body": [ - { - "type": "ClassMethod", - "start": 680, - "end": 1081, - "loc": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 680, - "end": 691, - "loc": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 13 - }, - "identifierName": "constructor" - }, - "name": "constructor", - "leadingComments": null - }, - "static": false, - "kind": "constructor", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 692, - "end": 697, - "loc": { - "start": { - "line": 34, - "column": 14 - }, - "end": { - "line": 34, - "column": 19 - }, - "identifierName": "props" - }, - "name": "props" - }, - { - "type": "Identifier", - "start": 699, - "end": 706, - "loc": { - "start": { - "line": 34, - "column": 21 - }, - "end": { - "line": 34, - "column": 28 - }, - "identifierName": "manager" - }, - "name": "manager" - } - ], - "body": { - "type": "BlockStatement", - "start": 708, - "end": 1081, - "loc": { - "start": { - "line": 34, - "column": 30 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "body": [ - { - "type": "ExpressionStatement", - "start": 714, - "end": 722, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 12 - } - }, - "expression": { - "type": "CallExpression", - "start": 714, - "end": 721, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 11 - } - }, - "callee": { - "type": "Super", - "start": 714, - "end": 719, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 9 - } - } - }, - "arguments": [] - } - }, - { - "type": "ExpressionStatement", - "start": 727, - "end": 751, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 28 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 727, - "end": 750, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 27 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 727, - "end": 740, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 17 - } - }, - "object": { - "type": "ThisExpression", - "start": 727, - "end": 731, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 8 - } - } - }, - "property": { - "type": "Identifier", - "start": 732, - "end": 740, - "loc": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 17 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "right": { - "type": "Identifier", - "start": 743, - "end": 750, - "loc": { - "start": { - "line": 36, - "column": 20 - }, - "end": { - "line": 36, - "column": 27 - }, - "identifierName": "manager" - }, - "name": "manager" - } - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID. ", - "start": 757, - "end": 815, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 38 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 820, - "end": 843, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 27 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 820, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 26 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 820, - "end": 829, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 13 - } - }, - "object": { - "type": "ThisExpression", - "start": 820, - "end": 824, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 825, - "end": 829, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 13 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 832, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 16 - }, - "end": { - "line": 40, - "column": 26 - } - }, - "object": { - "type": "Identifier", - "start": 832, - "end": 837, - "loc": { - "start": { - "line": 40, - "column": 16 - }, - "end": { - "line": 40, - "column": 21 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 838, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 22 - }, - "end": { - "line": 40, - "column": 26 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID. ", - "start": 757, - "end": 815, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 38 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Device} ID who owns this {@link Service}. ", - "start": 848, - "end": 933, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 65 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 938, - "end": 969, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 35 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 938, - "end": 968, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 34 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 938, - "end": 951, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 17 - } - }, - "object": { - "type": "ThisExpression", - "start": 938, - "end": 942, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 943, - "end": 951, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 17 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 954, - "end": 968, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 34 - } - }, - "object": { - "type": "Identifier", - "start": 954, - "end": 959, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 25 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 960, - "end": 968, - "loc": { - "start": { - "line": 43, - "column": 26 - }, - "end": { - "line": 43, - "column": 34 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Device} ID who owns this {@link Service}. ", - "start": 848, - "end": 933, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 65 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if service is primary. ", - "start": 974, - "end": 1039, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 44 - } - } - } - ] - }, - { - "type": "ExpressionStatement", - "start": 1044, - "end": 1077, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 37 - } - }, - "expression": { - "type": "AssignmentExpression", - "start": 1044, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 36 - } - }, - "operator": "=", - "left": { - "type": "MemberExpression", - "start": 1044, - "end": 1058, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 18 - } - }, - "object": { - "type": "ThisExpression", - "start": 1044, - "end": 1048, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "leadingComments": null - }, - "property": { - "type": "Identifier", - "start": 1049, - "end": 1058, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 18 - }, - "identifierName": "isPrimary" - }, - "name": "isPrimary" - }, - "computed": false, - "leadingComments": null - }, - "right": { - "type": "MemberExpression", - "start": 1061, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 36 - } - }, - "object": { - "type": "Identifier", - "start": 1061, - "end": 1066, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 26 - }, - "identifierName": "props" - }, - "name": "props" - }, - "property": { - "type": "Identifier", - "start": 1067, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 36 - }, - "identifierName": "isPrimary" - }, - "name": "isPrimary" - }, - "computed": false - }, - "leadingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if service is primary. ", - "start": 974, - "end": 1039, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 44 - } - } - } - ] - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Private {@link Service} constructor.\n * \n * @param {NativeService} props - NativeService properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 433, - "end": 677, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 33, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for this service.\n * \n * @memberOf Service\n ", - "start": 1085, - "end": 1360, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 1363, - "end": 1469, - "loc": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 59, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 1369, - "end": 1384, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 23 - }, - "identifierName": "characteristics" - }, - "name": "characteristics" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [], - "body": { - "type": "BlockStatement", - "start": 1387, - "end": 1469, - "loc": { - "start": { - "line": 57, - "column": 26 - }, - "end": { - "line": 59, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 1393, - "end": 1465, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 76 - } - }, - "argument": { - "type": "CallExpression", - "start": 1400, - "end": 1464, - "loc": { - "start": { - "line": 58, - "column": 11 - }, - "end": { - "line": 58, - "column": 75 - } - }, - "callee": { - "type": "MemberExpression", - "start": 1400, - "end": 1438, - "loc": { - "start": { - "line": 58, - "column": 11 - }, - "end": { - "line": 58, - "column": 49 - } - }, - "object": { - "type": "MemberExpression", - "start": 1400, - "end": 1413, - "loc": { - "start": { - "line": 58, - "column": 11 - }, - "end": { - "line": 58, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 1400, - "end": 1404, - "loc": { - "start": { - "line": 58, - "column": 11 - }, - "end": { - "line": 58, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 1405, - "end": 1413, - "loc": { - "start": { - "line": 58, - "column": 16 - }, - "end": { - "line": 58, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 1414, - "end": 1438, - "loc": { - "start": { - "line": 58, - "column": 25 - }, - "end": { - "line": 58, - "column": 49 - }, - "identifierName": "characteristicsForDevice" - }, - "name": "characteristicsForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 1439, - "end": 1452, - "loc": { - "start": { - "line": 58, - "column": 50 - }, - "end": { - "line": 58, - "column": 63 - } - }, - "object": { - "type": "ThisExpression", - "start": 1439, - "end": 1443, - "loc": { - "start": { - "line": 58, - "column": 50 - }, - "end": { - "line": 58, - "column": 54 - } - } - }, - "property": { - "type": "Identifier", - "start": 1444, - "end": 1452, - "loc": { - "start": { - "line": 58, - "column": 55 - }, - "end": { - "line": 58, - "column": 63 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 1454, - "end": 1463, - "loc": { - "start": { - "line": 58, - "column": 65 - }, - "end": { - "line": 58, - "column": 74 - } - }, - "object": { - "type": "ThisExpression", - "start": 1454, - "end": 1458, - "loc": { - "start": { - "line": 58, - "column": 65 - }, - "end": { - "line": 58, - "column": 69 - } - } - }, - "property": { - "type": "Identifier", - "start": 1459, - "end": 1463, - "loc": { - "start": { - "line": 58, - "column": 70 - }, - "end": { - "line": 58, - "column": 74 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for this service.\n * \n * @memberOf Service\n ", - "start": 1085, - "end": 1360, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 1473, - "end": 2005, - "loc": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 70, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2008, - "end": 2188, - "loc": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 73, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2014, - "end": 2032, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 26 - }, - "identifierName": "readCharacteristic" - }, - "name": "readCharacteristic" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 2033, - "end": 2051, - "loc": { - "start": { - "line": 71, - "column": 27 - }, - "end": { - "line": 71, - "column": 45 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 2053, - "end": 2066, - "loc": { - "start": { - "line": 71, - "column": 47 - }, - "end": { - "line": 71, - "column": 60 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 2068, - "end": 2188, - "loc": { - "start": { - "line": 71, - "column": 62 - }, - "end": { - "line": 73, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2074, - "end": 2184, - "loc": { - "start": { - "line": 72, - "column": 4 - }, - "end": { - "line": 72, - "column": 114 - } - }, - "argument": { - "type": "CallExpression", - "start": 2081, - "end": 2183, - "loc": { - "start": { - "line": 72, - "column": 11 - }, - "end": { - "line": 72, - "column": 113 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2081, - "end": 2122, - "loc": { - "start": { - "line": 72, - "column": 11 - }, - "end": { - "line": 72, - "column": 52 - } - }, - "object": { - "type": "MemberExpression", - "start": 2081, - "end": 2094, - "loc": { - "start": { - "line": 72, - "column": 11 - }, - "end": { - "line": 72, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 2081, - "end": 2085, - "loc": { - "start": { - "line": 72, - "column": 11 - }, - "end": { - "line": 72, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 2086, - "end": 2094, - "loc": { - "start": { - "line": 72, - "column": 16 - }, - "end": { - "line": 72, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2095, - "end": 2122, - "loc": { - "start": { - "line": 72, - "column": 25 - }, - "end": { - "line": 72, - "column": 52 - }, - "identifierName": "readCharacteristicForDevice" - }, - "name": "readCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 2123, - "end": 2136, - "loc": { - "start": { - "line": 72, - "column": 53 - }, - "end": { - "line": 72, - "column": 66 - } - }, - "object": { - "type": "ThisExpression", - "start": 2123, - "end": 2127, - "loc": { - "start": { - "line": 72, - "column": 53 - }, - "end": { - "line": 72, - "column": 57 - } - } - }, - "property": { - "type": "Identifier", - "start": 2128, - "end": 2136, - "loc": { - "start": { - "line": 72, - "column": 58 - }, - "end": { - "line": 72, - "column": 66 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 2138, - "end": 2147, - "loc": { - "start": { - "line": 72, - "column": 68 - }, - "end": { - "line": 72, - "column": 77 - } - }, - "object": { - "type": "ThisExpression", - "start": 2138, - "end": 2142, - "loc": { - "start": { - "line": 72, - "column": 68 - }, - "end": { - "line": 72, - "column": 72 - } - } - }, - "property": { - "type": "Identifier", - "start": 2143, - "end": 2147, - "loc": { - "start": { - "line": 72, - "column": 73 - }, - "end": { - "line": 72, - "column": 77 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 2149, - "end": 2167, - "loc": { - "start": { - "line": 72, - "column": 79 - }, - "end": { - "line": 72, - "column": 97 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 2169, - "end": 2182, - "loc": { - "start": { - "line": 72, - "column": 99 - }, - "end": { - "line": 72, - "column": 112 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 1473, - "end": 2005, - "loc": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 70, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 2192, - "end": 2791, - "loc": { - "start": { - "line": 75, - "column": 2 - }, - "end": { - "line": 85, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 2794, - "end": 3026, - "loc": { - "start": { - "line": 86, - "column": 2 - }, - "end": { - "line": 88, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 2800, - "end": 2831, - "loc": { - "start": { - "line": 86, - "column": 8 - }, - "end": { - "line": 86, - "column": 39 - }, - "identifierName": "writeCharacteristicWithResponse" - }, - "name": "writeCharacteristicWithResponse" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 2832, - "end": 2850, - "loc": { - "start": { - "line": 86, - "column": 40 - }, - "end": { - "line": 86, - "column": 58 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 2852, - "end": 2863, - "loc": { - "start": { - "line": 86, - "column": 60 - }, - "end": { - "line": 86, - "column": 71 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 2865, - "end": 2878, - "loc": { - "start": { - "line": 86, - "column": 73 - }, - "end": { - "line": 86, - "column": 86 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 2880, - "end": 3026, - "loc": { - "start": { - "line": 86, - "column": 88 - }, - "end": { - "line": 88, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 2886, - "end": 3022, - "loc": { - "start": { - "line": 87, - "column": 4 - }, - "end": { - "line": 87, - "column": 140 - } - }, - "argument": { - "type": "CallExpression", - "start": 2893, - "end": 3021, - "loc": { - "start": { - "line": 87, - "column": 11 - }, - "end": { - "line": 87, - "column": 139 - } - }, - "callee": { - "type": "MemberExpression", - "start": 2893, - "end": 2947, - "loc": { - "start": { - "line": 87, - "column": 11 - }, - "end": { - "line": 87, - "column": 65 - } - }, - "object": { - "type": "MemberExpression", - "start": 2893, - "end": 2906, - "loc": { - "start": { - "line": 87, - "column": 11 - }, - "end": { - "line": 87, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 2893, - "end": 2897, - "loc": { - "start": { - "line": 87, - "column": 11 - }, - "end": { - "line": 87, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 2898, - "end": 2906, - "loc": { - "start": { - "line": 87, - "column": 16 - }, - "end": { - "line": 87, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 2907, - "end": 2947, - "loc": { - "start": { - "line": 87, - "column": 25 - }, - "end": { - "line": 87, - "column": 65 - }, - "identifierName": "writeCharacteristicWithResponseForDevice" - }, - "name": "writeCharacteristicWithResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 2948, - "end": 2961, - "loc": { - "start": { - "line": 87, - "column": 66 - }, - "end": { - "line": 87, - "column": 79 - } - }, - "object": { - "type": "ThisExpression", - "start": 2948, - "end": 2952, - "loc": { - "start": { - "line": 87, - "column": 66 - }, - "end": { - "line": 87, - "column": 70 - } - } - }, - "property": { - "type": "Identifier", - "start": 2953, - "end": 2961, - "loc": { - "start": { - "line": 87, - "column": 71 - }, - "end": { - "line": 87, - "column": 79 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 2963, - "end": 2972, - "loc": { - "start": { - "line": 87, - "column": 81 - }, - "end": { - "line": 87, - "column": 90 - } - }, - "object": { - "type": "ThisExpression", - "start": 2963, - "end": 2967, - "loc": { - "start": { - "line": 87, - "column": 81 - }, - "end": { - "line": 87, - "column": 85 - } - } - }, - "property": { - "type": "Identifier", - "start": 2968, - "end": 2972, - "loc": { - "start": { - "line": 87, - "column": 86 - }, - "end": { - "line": 87, - "column": 90 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 2974, - "end": 2992, - "loc": { - "start": { - "line": 87, - "column": 92 - }, - "end": { - "line": 87, - "column": 110 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 2994, - "end": 3005, - "loc": { - "start": { - "line": 87, - "column": 112 - }, - "end": { - "line": 87, - "column": 123 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3007, - "end": 3020, - "loc": { - "start": { - "line": 87, - "column": 125 - }, - "end": { - "line": 87, - "column": 138 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 2192, - "end": 2791, - "loc": { - "start": { - "line": 75, - "column": 2 - }, - "end": { - "line": 85, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 3030, - "end": 3632, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 100, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 3635, - "end": 3873, - "loc": { - "start": { - "line": 101, - "column": 2 - }, - "end": { - "line": 103, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 3641, - "end": 3675, - "loc": { - "start": { - "line": 101, - "column": 8 - }, - "end": { - "line": 101, - "column": 42 - }, - "identifierName": "writeCharacteristicWithoutResponse" - }, - "name": "writeCharacteristicWithoutResponse" - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": true, - "params": [ - { - "type": "Identifier", - "start": 3676, - "end": 3694, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 61 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 3696, - "end": 3707, - "loc": { - "start": { - "line": 101, - "column": 63 - }, - "end": { - "line": 101, - "column": 74 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3709, - "end": 3722, - "loc": { - "start": { - "line": 101, - "column": 76 - }, - "end": { - "line": 101, - "column": 89 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 3724, - "end": 3873, - "loc": { - "start": { - "line": 101, - "column": 91 - }, - "end": { - "line": 103, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 3730, - "end": 3869, - "loc": { - "start": { - "line": 102, - "column": 4 - }, - "end": { - "line": 102, - "column": 143 - } - }, - "argument": { - "type": "CallExpression", - "start": 3737, - "end": 3868, - "loc": { - "start": { - "line": 102, - "column": 11 - }, - "end": { - "line": 102, - "column": 142 - } - }, - "callee": { - "type": "MemberExpression", - "start": 3737, - "end": 3794, - "loc": { - "start": { - "line": 102, - "column": 11 - }, - "end": { - "line": 102, - "column": 68 - } - }, - "object": { - "type": "MemberExpression", - "start": 3737, - "end": 3750, - "loc": { - "start": { - "line": 102, - "column": 11 - }, - "end": { - "line": 102, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 3737, - "end": 3741, - "loc": { - "start": { - "line": 102, - "column": 11 - }, - "end": { - "line": 102, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 3742, - "end": 3750, - "loc": { - "start": { - "line": 102, - "column": 16 - }, - "end": { - "line": 102, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 3751, - "end": 3794, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 68 - }, - "identifierName": "writeCharacteristicWithoutResponseForDevice" - }, - "name": "writeCharacteristicWithoutResponseForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 3795, - "end": 3808, - "loc": { - "start": { - "line": 102, - "column": 69 - }, - "end": { - "line": 102, - "column": 82 - } - }, - "object": { - "type": "ThisExpression", - "start": 3795, - "end": 3799, - "loc": { - "start": { - "line": 102, - "column": 69 - }, - "end": { - "line": 102, - "column": 73 - } - } - }, - "property": { - "type": "Identifier", - "start": 3800, - "end": 3808, - "loc": { - "start": { - "line": 102, - "column": 74 - }, - "end": { - "line": 102, - "column": 82 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 3810, - "end": 3819, - "loc": { - "start": { - "line": 102, - "column": 84 - }, - "end": { - "line": 102, - "column": 93 - } - }, - "object": { - "type": "ThisExpression", - "start": 3810, - "end": 3814, - "loc": { - "start": { - "line": 102, - "column": 84 - }, - "end": { - "line": 102, - "column": 88 - } - } - }, - "property": { - "type": "Identifier", - "start": 3815, - "end": 3819, - "loc": { - "start": { - "line": 102, - "column": 89 - }, - "end": { - "line": 102, - "column": 93 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 3821, - "end": 3839, - "loc": { - "start": { - "line": 102, - "column": 95 - }, - "end": { - "line": 102, - "column": 113 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 3841, - "end": 3852, - "loc": { - "start": { - "line": 102, - "column": 115 - }, - "end": { - "line": 102, - "column": 126 - }, - "identifierName": "valueBase64" - }, - "name": "valueBase64" - }, - { - "type": "Identifier", - "start": 3854, - "end": 3867, - "loc": { - "start": { - "line": 102, - "column": 128 - }, - "end": { - "line": 102, - "column": 141 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [], - "trailingComments": null - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 3030, - "end": 3632, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 100, - "column": 5 - } - } - } - ], - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Service\n ", - "start": 3877, - "end": 4484, - "loc": { - "start": { - "line": 105, - "column": 2 - }, - "end": { - "line": 115, - "column": 5 - } - } - } - ] - }, - { - "type": "ClassMethod", - "start": 4487, - "end": 4687, - "loc": { - "start": { - "line": 116, - "column": 2 - }, - "end": { - "line": 118, - "column": 3 - } - }, - "computed": false, - "key": { - "type": "Identifier", - "start": 4487, - "end": 4508, - "loc": { - "start": { - "line": 116, - "column": 2 - }, - "end": { - "line": 116, - "column": 23 - }, - "identifierName": "monitorCharacteristic" - }, - "name": "monitorCharacteristic", - "leadingComments": null - }, - "static": false, - "kind": "method", - "id": null, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 4509, - "end": 4527, - "loc": { - "start": { - "line": 116, - "column": 24 - }, - "end": { - "line": 116, - "column": 42 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 4529, - "end": 4537, - "loc": { - "start": { - "line": 116, - "column": 44 - }, - "end": { - "line": 116, - "column": 52 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 4539, - "end": 4552, - "loc": { - "start": { - "line": 116, - "column": 54 - }, - "end": { - "line": 116, - "column": 67 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ], - "body": { - "type": "BlockStatement", - "start": 4554, - "end": 4687, - "loc": { - "start": { - "line": 116, - "column": 69 - }, - "end": { - "line": 118, - "column": 3 - } - }, - "body": [ - { - "type": "ReturnStatement", - "start": 4560, - "end": 4683, - "loc": { - "start": { - "line": 117, - "column": 4 - }, - "end": { - "line": 117, - "column": 127 - } - }, - "argument": { - "type": "CallExpression", - "start": 4567, - "end": 4682, - "loc": { - "start": { - "line": 117, - "column": 11 - }, - "end": { - "line": 117, - "column": 126 - } - }, - "callee": { - "type": "MemberExpression", - "start": 4567, - "end": 4611, - "loc": { - "start": { - "line": 117, - "column": 11 - }, - "end": { - "line": 117, - "column": 55 - } - }, - "object": { - "type": "MemberExpression", - "start": 4567, - "end": 4580, - "loc": { - "start": { - "line": 117, - "column": 11 - }, - "end": { - "line": 117, - "column": 24 - } - }, - "object": { - "type": "ThisExpression", - "start": 4567, - "end": 4571, - "loc": { - "start": { - "line": 117, - "column": 11 - }, - "end": { - "line": 117, - "column": 15 - } - } - }, - "property": { - "type": "Identifier", - "start": 4572, - "end": 4580, - "loc": { - "start": { - "line": 117, - "column": 16 - }, - "end": { - "line": 117, - "column": 24 - }, - "identifierName": "_manager" - }, - "name": "_manager" - }, - "computed": false - }, - "property": { - "type": "Identifier", - "start": 4581, - "end": 4611, - "loc": { - "start": { - "line": 117, - "column": 25 - }, - "end": { - "line": 117, - "column": 55 - }, - "identifierName": "monitorCharacteristicForDevice" - }, - "name": "monitorCharacteristicForDevice" - }, - "computed": false - }, - "arguments": [ - { - "type": "MemberExpression", - "start": 4612, - "end": 4625, - "loc": { - "start": { - "line": 117, - "column": 56 - }, - "end": { - "line": 117, - "column": 69 - } - }, - "object": { - "type": "ThisExpression", - "start": 4612, - "end": 4616, - "loc": { - "start": { - "line": 117, - "column": 56 - }, - "end": { - "line": 117, - "column": 60 - } - } - }, - "property": { - "type": "Identifier", - "start": 4617, - "end": 4625, - "loc": { - "start": { - "line": 117, - "column": 61 - }, - "end": { - "line": 117, - "column": 69 - }, - "identifierName": "deviceID" - }, - "name": "deviceID" - }, - "computed": false - }, - { - "type": "MemberExpression", - "start": 4627, - "end": 4636, - "loc": { - "start": { - "line": 117, - "column": 71 - }, - "end": { - "line": 117, - "column": 80 - } - }, - "object": { - "type": "ThisExpression", - "start": 4627, - "end": 4631, - "loc": { - "start": { - "line": 117, - "column": 71 - }, - "end": { - "line": 117, - "column": 75 - } - } - }, - "property": { - "type": "Identifier", - "start": 4632, - "end": 4636, - "loc": { - "start": { - "line": 117, - "column": 76 - }, - "end": { - "line": 117, - "column": 80 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "computed": false - }, - { - "type": "Identifier", - "start": 4638, - "end": 4656, - "loc": { - "start": { - "line": 117, - "column": 82 - }, - "end": { - "line": 117, - "column": 100 - }, - "identifierName": "characteristicUUID" - }, - "name": "characteristicUUID" - }, - { - "type": "Identifier", - "start": 4658, - "end": 4666, - "loc": { - "start": { - "line": 117, - "column": 102 - }, - "end": { - "line": 117, - "column": 110 - }, - "identifierName": "listener" - }, - "name": "listener" - }, - { - "type": "Identifier", - "start": 4668, - "end": 4681, - "loc": { - "start": { - "line": 117, - "column": 112 - }, - "end": { - "line": 117, - "column": 125 - }, - "identifierName": "transactionId" - }, - "name": "transactionId" - } - ] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Service\n ", - "start": 3877, - "end": 4484, - "loc": { - "start": { - "line": 105, - "column": 2 - }, - "end": { - "line": 115, - "column": 5 - } - } - } - ] - } - ] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Service object.\n * \n * @export\n * @class Service\n * @extends {NativeService}\n ", - "start": 289, - "end": 376, - "loc": { - "start": { - "line": 16, - "column": 0 - }, - "end": { - "line": 22, - "column": 3 - } - } - } - ], - "trailingComments": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Service object.\n * \n * @export\n * @class Service\n * @extends {NativeService}\n ", - "start": 289, - "end": 376, - "loc": { - "start": { - "line": 16, - "column": 0 - }, - "end": { - "line": 22, - "column": 3 - } - } - } - ] - } - ], - "directives": [ - { - "type": "Directive", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "value": { - "type": "DirectiveLiteral", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "value": "use strict", - "extra": { - "raw": "\"use strict\"", - "rawValue": "use strict" - } - } - } - ] - }, - "comments": [ - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Service format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeService\n ", - "start": 103, - "end": 264, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 13, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Service object.\n * \n * @export\n * @class Service\n * @extends {NativeService}\n ", - "start": 289, - "end": 376, - "loc": { - "start": { - "line": 16, - "column": 0 - }, - "end": { - "line": 22, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Service} constructor.\n * \n * @param {NativeService} props - NativeService properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 433, - "end": 677, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 33, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID. ", - "start": 757, - "end": 815, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 38 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Device} ID who owns this {@link Service}. ", - "start": 848, - "end": 933, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 65 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if service is primary. ", - "start": 974, - "end": 1039, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 44 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for this service.\n * \n * @memberOf Service\n ", - "start": 1085, - "end": 1360, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 1473, - "end": 2005, - "loc": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 70, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 2192, - "end": 2791, - "loc": { - "start": { - "line": 75, - "column": 2 - }, - "end": { - "line": 85, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 3030, - "end": 3632, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 100, - "column": 5 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Service\n ", - "start": 3877, - "end": 4484, - "loc": { - "start": { - "line": 105, - "column": 2 - }, - "end": { - "line": 115, - "column": 5 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "use strict", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 15, - "end": 21, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 3, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "BleManager", - "start": 22, - "end": 32, - "loc": { - "start": { - "line": 3, - "column": 7 - }, - "end": { - "line": 3, - "column": 17 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 33, - "end": 37, - "loc": { - "start": { - "line": 3, - "column": 18 - }, - "end": { - "line": 3, - "column": 22 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./BleManager", - "start": 38, - "end": 52, - "loc": { - "start": { - "line": 3, - "column": 23 - }, - "end": { - "line": 3, - "column": 37 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 52, - "end": 53, - "loc": { - "start": { - "line": 3, - "column": 37 - }, - "end": { - "line": 3, - "column": 38 - } - } - }, - { - "type": { - "label": "import", - "keyword": "import", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "import", - "start": 54, - "end": 60, - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 4, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Characteristic", - "start": 61, - "end": 75, - "loc": { - "start": { - "line": 4, - "column": 7 - }, - "end": { - "line": 4, - "column": 21 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "from", - "start": 76, - "end": 80, - "loc": { - "start": { - "line": 4, - "column": 22 - }, - "end": { - "line": 4, - "column": 26 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "./Characteristic", - "start": 81, - "end": 99, - "loc": { - "start": { - "line": 4, - "column": 27 - }, - "end": { - "line": 4, - "column": 45 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 99, - "end": 100, - "loc": { - "start": { - "line": 4, - "column": 45 - }, - "end": { - "line": 4, - "column": 46 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Internal class describing Service format which\n * is exchanged between native modules and react native.\n * \n * @access private\n * @class NativeService\n ", - "start": 103, - "end": 264, - "loc": { - "start": { - "line": 7, - "column": 0 - }, - "end": { - "line": 13, - "column": 3 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 265, - "end": 270, - "loc": { - "start": { - "line": 14, - "column": 0 - }, - "end": { - "line": 14, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeService", - "start": 271, - "end": 284, - "loc": { - "start": { - "line": 14, - "column": 6 - }, - "end": { - "line": 14, - "column": 19 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 285, - "end": 286, - "loc": { - "start": { - "line": 14, - "column": 20 - }, - "end": { - "line": 14, - "column": 21 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 286, - "end": 287, - "loc": { - "start": { - "line": 14, - "column": 21 - }, - "end": { - "line": 14, - "column": 22 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Service object.\n * \n * @export\n * @class Service\n * @extends {NativeService}\n ", - "start": 289, - "end": 376, - "loc": { - "start": { - "line": 16, - "column": 0 - }, - "end": { - "line": 22, - "column": 3 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 377, - "end": 383, - "loc": { - "start": { - "line": 23, - "column": 0 - }, - "end": { - "line": 23, - "column": 6 - } - } - }, - { - "type": { - "label": "default", - "keyword": "default", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "default", - "start": 384, - "end": 391, - "loc": { - "start": { - "line": 23, - "column": 7 - }, - "end": { - "line": 23, - "column": 14 - } - } - }, - { - "type": { - "label": "class", - "keyword": "class", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "class", - "start": 392, - "end": 397, - "loc": { - "start": { - "line": 23, - "column": 15 - }, - "end": { - "line": 23, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "Service", - "start": 398, - "end": 405, - "loc": { - "start": { - "line": 23, - "column": 21 - }, - "end": { - "line": 23, - "column": 28 - } - } - }, - { - "type": { - "label": "extends", - "keyword": "extends", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "extends", - "start": 406, - "end": 413, - "loc": { - "start": { - "line": 23, - "column": 29 - }, - "end": { - "line": 23, - "column": 36 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "NativeService", - "start": 414, - "end": 427, - "loc": { - "start": { - "line": 23, - "column": 37 - }, - "end": { - "line": 23, - "column": 50 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 428, - "end": 429, - "loc": { - "start": { - "line": 23, - "column": 51 - }, - "end": { - "line": 23, - "column": 52 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Private {@link Service} constructor.\n * \n * @param {NativeService} props - NativeService properties to be copied.\n * @param {BleManager} manager - Current BleManager instance.\n * @access private\n *\n * @memberOf Device\n ", - "start": 433, - "end": 677, - "loc": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 33, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "constructor", - "start": 680, - "end": 691, - "loc": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 13 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 691, - "end": 692, - "loc": { - "start": { - "line": 34, - "column": 13 - }, - "end": { - "line": 34, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 692, - "end": 697, - "loc": { - "start": { - "line": 34, - "column": 14 - }, - "end": { - "line": 34, - "column": 19 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 697, - "end": 698, - "loc": { - "start": { - "line": 34, - "column": 19 - }, - "end": { - "line": 34, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 699, - "end": 706, - "loc": { - "start": { - "line": 34, - "column": 21 - }, - "end": { - "line": 34, - "column": 28 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 706, - "end": 707, - "loc": { - "start": { - "line": 34, - "column": 28 - }, - "end": { - "line": 34, - "column": 29 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 708, - "end": 709, - "loc": { - "start": { - "line": 34, - "column": 30 - }, - "end": { - "line": 34, - "column": 31 - } - } - }, - { - "type": { - "label": "super", - "keyword": "super", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "super", - "start": 714, - "end": 719, - "loc": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 9 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 719, - "end": 720, - "loc": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 720, - "end": 721, - "loc": { - "start": { - "line": 35, - "column": 10 - }, - "end": { - "line": 35, - "column": 11 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 721, - "end": 722, - "loc": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 12 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 727, - "end": 731, - "loc": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 731, - "end": 732, - "loc": { - "start": { - "line": 36, - "column": 8 - }, - "end": { - "line": 36, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 732, - "end": 740, - "loc": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 741, - "end": 742, - "loc": { - "start": { - "line": 36, - "column": 18 - }, - "end": { - "line": 36, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "manager", - "start": 743, - "end": 750, - "loc": { - "start": { - "line": 36, - "column": 20 - }, - "end": { - "line": 36, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 750, - "end": 751, - "loc": { - "start": { - "line": 36, - "column": 27 - }, - "end": { - "line": 36, - "column": 28 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Service} UUID. ", - "start": 757, - "end": 815, - "loc": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 39, - "column": 38 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 820, - "end": 824, - "loc": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 824, - "end": 825, - "loc": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 825, - "end": 829, - "loc": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 13 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 830, - "end": 831, - "loc": { - "start": { - "line": 40, - "column": 14 - }, - "end": { - "line": 40, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 832, - "end": 837, - "loc": { - "start": { - "line": 40, - "column": 16 - }, - "end": { - "line": 40, - "column": 21 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 837, - "end": 838, - "loc": { - "start": { - "line": 40, - "column": 21 - }, - "end": { - "line": 40, - "column": 22 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 838, - "end": 842, - "loc": { - "start": { - "line": 40, - "column": 22 - }, - "end": { - "line": 40, - "column": 26 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 842, - "end": 843, - "loc": { - "start": { - "line": 40, - "column": 26 - }, - "end": { - "line": 40, - "column": 27 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {string} \n * @desc {@link Device} ID who owns this {@link Service}. ", - "start": 848, - "end": 933, - "loc": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 42, - "column": 65 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 938, - "end": 942, - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 942, - "end": 943, - "loc": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 943, - "end": 951, - "loc": { - "start": { - "line": 43, - "column": 9 - }, - "end": { - "line": 43, - "column": 17 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 952, - "end": 953, - "loc": { - "start": { - "line": 43, - "column": 18 - }, - "end": { - "line": 43, - "column": 19 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 954, - "end": 959, - "loc": { - "start": { - "line": 43, - "column": 20 - }, - "end": { - "line": 43, - "column": 25 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 959, - "end": 960, - "loc": { - "start": { - "line": 43, - "column": 25 - }, - "end": { - "line": 43, - "column": 26 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 960, - "end": 968, - "loc": { - "start": { - "line": 43, - "column": 26 - }, - "end": { - "line": 43, - "column": 34 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 968, - "end": 969, - "loc": { - "start": { - "line": 43, - "column": 34 - }, - "end": { - "line": 43, - "column": 35 - } - } - }, - { - "type": "CommentBlock", - "value": "* @type {boolean} \n * @desc True if service is primary. ", - "start": 974, - "end": 1039, - "loc": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 45, - "column": 44 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1044, - "end": 1048, - "loc": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 8 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1048, - "end": 1049, - "loc": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 9 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isPrimary", - "start": 1049, - "end": 1058, - "loc": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 18 - } - } - }, - { - "type": { - "label": "=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": true, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "=", - "start": 1059, - "end": 1060, - "loc": { - "start": { - "line": 46, - "column": 19 - }, - "end": { - "line": 46, - "column": 20 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "props", - "start": 1061, - "end": 1066, - "loc": { - "start": { - "line": 46, - "column": 21 - }, - "end": { - "line": 46, - "column": 26 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1066, - "end": 1067, - "loc": { - "start": { - "line": 46, - "column": 26 - }, - "end": { - "line": 46, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "isPrimary", - "start": 1067, - "end": 1076, - "loc": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 36 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1076, - "end": 1077, - "loc": { - "start": { - "line": 46, - "column": 36 - }, - "end": { - "line": 46, - "column": 37 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1080, - "end": 1081, - "loc": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 47, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.characteristicsForDevice} with partially filled arguments.\n * \n * @returns {Promise} - Promise which emits array of {@link Characteristic} objects which are \n * discovered for this service.\n * \n * @memberOf Service\n ", - "start": 1085, - "end": 1360, - "loc": { - "start": { - "line": 49, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 1363, - "end": 1368, - "loc": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 57, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristics", - "start": 1369, - "end": 1384, - "loc": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1384, - "end": 1385, - "loc": { - "start": { - "line": 57, - "column": 23 - }, - "end": { - "line": 57, - "column": 24 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1385, - "end": 1386, - "loc": { - "start": { - "line": 57, - "column": 24 - }, - "end": { - "line": 57, - "column": 25 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1387, - "end": 1388, - "loc": { - "start": { - "line": 57, - "column": 26 - }, - "end": { - "line": 57, - "column": 27 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 1393, - "end": 1399, - "loc": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1400, - "end": 1404, - "loc": { - "start": { - "line": 58, - "column": 11 - }, - "end": { - "line": 58, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1404, - "end": 1405, - "loc": { - "start": { - "line": 58, - "column": 15 - }, - "end": { - "line": 58, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 1405, - "end": 1413, - "loc": { - "start": { - "line": 58, - "column": 16 - }, - "end": { - "line": 58, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1413, - "end": 1414, - "loc": { - "start": { - "line": 58, - "column": 24 - }, - "end": { - "line": 58, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicsForDevice", - "start": 1414, - "end": 1438, - "loc": { - "start": { - "line": 58, - "column": 25 - }, - "end": { - "line": 58, - "column": 49 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1438, - "end": 1439, - "loc": { - "start": { - "line": 58, - "column": 49 - }, - "end": { - "line": 58, - "column": 50 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1439, - "end": 1443, - "loc": { - "start": { - "line": 58, - "column": 50 - }, - "end": { - "line": 58, - "column": 54 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1443, - "end": 1444, - "loc": { - "start": { - "line": 58, - "column": 54 - }, - "end": { - "line": 58, - "column": 55 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 1444, - "end": 1452, - "loc": { - "start": { - "line": 58, - "column": 55 - }, - "end": { - "line": 58, - "column": 63 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1452, - "end": 1453, - "loc": { - "start": { - "line": 58, - "column": 63 - }, - "end": { - "line": 58, - "column": 64 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 1454, - "end": 1458, - "loc": { - "start": { - "line": 58, - "column": 65 - }, - "end": { - "line": 58, - "column": 69 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1458, - "end": 1459, - "loc": { - "start": { - "line": 58, - "column": 69 - }, - "end": { - "line": 58, - "column": 70 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 1459, - "end": 1463, - "loc": { - "start": { - "line": 58, - "column": 70 - }, - "end": { - "line": 58, - "column": 74 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1463, - "end": 1464, - "loc": { - "start": { - "line": 58, - "column": 74 - }, - "end": { - "line": 58, - "column": 75 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 1464, - "end": 1465, - "loc": { - "start": { - "line": 58, - "column": 75 - }, - "end": { - "line": 58, - "column": 76 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 1468, - "end": 1469, - "loc": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 59, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.readCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of {@link Characteristic} will be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 1473, - "end": 2005, - "loc": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 70, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 2008, - "end": 2013, - "loc": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristic", - "start": 2014, - "end": 2032, - "loc": { - "start": { - "line": 71, - "column": 8 - }, - "end": { - "line": 71, - "column": 26 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2032, - "end": 2033, - "loc": { - "start": { - "line": 71, - "column": 26 - }, - "end": { - "line": 71, - "column": 27 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 2033, - "end": 2051, - "loc": { - "start": { - "line": 71, - "column": 27 - }, - "end": { - "line": 71, - "column": 45 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2051, - "end": 2052, - "loc": { - "start": { - "line": 71, - "column": 45 - }, - "end": { - "line": 71, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 2053, - "end": 2066, - "loc": { - "start": { - "line": 71, - "column": 47 - }, - "end": { - "line": 71, - "column": 60 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2066, - "end": 2067, - "loc": { - "start": { - "line": 71, - "column": 60 - }, - "end": { - "line": 71, - "column": 61 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2068, - "end": 2069, - "loc": { - "start": { - "line": 71, - "column": 62 - }, - "end": { - "line": 71, - "column": 63 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2074, - "end": 2080, - "loc": { - "start": { - "line": 72, - "column": 4 - }, - "end": { - "line": 72, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2081, - "end": 2085, - "loc": { - "start": { - "line": 72, - "column": 11 - }, - "end": { - "line": 72, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2085, - "end": 2086, - "loc": { - "start": { - "line": 72, - "column": 15 - }, - "end": { - "line": 72, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 2086, - "end": 2094, - "loc": { - "start": { - "line": 72, - "column": 16 - }, - "end": { - "line": 72, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2094, - "end": 2095, - "loc": { - "start": { - "line": 72, - "column": 24 - }, - "end": { - "line": 72, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "readCharacteristicForDevice", - "start": 2095, - "end": 2122, - "loc": { - "start": { - "line": 72, - "column": 25 - }, - "end": { - "line": 72, - "column": 52 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2122, - "end": 2123, - "loc": { - "start": { - "line": 72, - "column": 52 - }, - "end": { - "line": 72, - "column": 53 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2123, - "end": 2127, - "loc": { - "start": { - "line": 72, - "column": 53 - }, - "end": { - "line": 72, - "column": 57 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2127, - "end": 2128, - "loc": { - "start": { - "line": 72, - "column": 57 - }, - "end": { - "line": 72, - "column": 58 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 2128, - "end": 2136, - "loc": { - "start": { - "line": 72, - "column": 58 - }, - "end": { - "line": 72, - "column": 66 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2136, - "end": 2137, - "loc": { - "start": { - "line": 72, - "column": 66 - }, - "end": { - "line": 72, - "column": 67 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2138, - "end": 2142, - "loc": { - "start": { - "line": 72, - "column": 68 - }, - "end": { - "line": 72, - "column": 72 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2142, - "end": 2143, - "loc": { - "start": { - "line": 72, - "column": 72 - }, - "end": { - "line": 72, - "column": 73 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 2143, - "end": 2147, - "loc": { - "start": { - "line": 72, - "column": 73 - }, - "end": { - "line": 72, - "column": 77 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2147, - "end": 2148, - "loc": { - "start": { - "line": 72, - "column": 77 - }, - "end": { - "line": 72, - "column": 78 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 2149, - "end": 2167, - "loc": { - "start": { - "line": 72, - "column": 79 - }, - "end": { - "line": 72, - "column": 97 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2167, - "end": 2168, - "loc": { - "start": { - "line": 72, - "column": 97 - }, - "end": { - "line": 72, - "column": 98 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 2169, - "end": 2182, - "loc": { - "start": { - "line": 72, - "column": 99 - }, - "end": { - "line": 72, - "column": 112 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2182, - "end": 2183, - "loc": { - "start": { - "line": 72, - "column": 112 - }, - "end": { - "line": 72, - "column": 113 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2183, - "end": 2184, - "loc": { - "start": { - "line": 72, - "column": 113 - }, - "end": { - "line": 72, - "column": 114 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2187, - "end": 2188, - "loc": { - "start": { - "line": 73, - "column": 2 - }, - "end": { - "line": 73, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 2192, - "end": 2791, - "loc": { - "start": { - "line": 75, - "column": 2 - }, - "end": { - "line": 85, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 2794, - "end": 2799, - "loc": { - "start": { - "line": 86, - "column": 2 - }, - "end": { - "line": 86, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponse", - "start": 2800, - "end": 2831, - "loc": { - "start": { - "line": 86, - "column": 8 - }, - "end": { - "line": 86, - "column": 39 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2831, - "end": 2832, - "loc": { - "start": { - "line": 86, - "column": 39 - }, - "end": { - "line": 86, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 2832, - "end": 2850, - "loc": { - "start": { - "line": 86, - "column": 40 - }, - "end": { - "line": 86, - "column": 58 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2850, - "end": 2851, - "loc": { - "start": { - "line": 86, - "column": 58 - }, - "end": { - "line": 86, - "column": 59 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 2852, - "end": 2863, - "loc": { - "start": { - "line": 86, - "column": 60 - }, - "end": { - "line": 86, - "column": 71 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2863, - "end": 2864, - "loc": { - "start": { - "line": 86, - "column": 71 - }, - "end": { - "line": 86, - "column": 72 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 2865, - "end": 2878, - "loc": { - "start": { - "line": 86, - "column": 73 - }, - "end": { - "line": 86, - "column": 86 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2878, - "end": 2879, - "loc": { - "start": { - "line": 86, - "column": 86 - }, - "end": { - "line": 86, - "column": 87 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2880, - "end": 2881, - "loc": { - "start": { - "line": 86, - "column": 88 - }, - "end": { - "line": 86, - "column": 89 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 2886, - "end": 2892, - "loc": { - "start": { - "line": 87, - "column": 4 - }, - "end": { - "line": 87, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2893, - "end": 2897, - "loc": { - "start": { - "line": 87, - "column": 11 - }, - "end": { - "line": 87, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2897, - "end": 2898, - "loc": { - "start": { - "line": 87, - "column": 15 - }, - "end": { - "line": 87, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 2898, - "end": 2906, - "loc": { - "start": { - "line": 87, - "column": 16 - }, - "end": { - "line": 87, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2906, - "end": 2907, - "loc": { - "start": { - "line": 87, - "column": 24 - }, - "end": { - "line": 87, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithResponseForDevice", - "start": 2907, - "end": 2947, - "loc": { - "start": { - "line": 87, - "column": 25 - }, - "end": { - "line": 87, - "column": 65 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 2947, - "end": 2948, - "loc": { - "start": { - "line": 87, - "column": 65 - }, - "end": { - "line": 87, - "column": 66 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2948, - "end": 2952, - "loc": { - "start": { - "line": 87, - "column": 66 - }, - "end": { - "line": 87, - "column": 70 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2952, - "end": 2953, - "loc": { - "start": { - "line": 87, - "column": 70 - }, - "end": { - "line": 87, - "column": 71 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 2953, - "end": 2961, - "loc": { - "start": { - "line": 87, - "column": 71 - }, - "end": { - "line": 87, - "column": 79 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2961, - "end": 2962, - "loc": { - "start": { - "line": 87, - "column": 79 - }, - "end": { - "line": 87, - "column": 80 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 2963, - "end": 2967, - "loc": { - "start": { - "line": 87, - "column": 81 - }, - "end": { - "line": 87, - "column": 85 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2967, - "end": 2968, - "loc": { - "start": { - "line": 87, - "column": 85 - }, - "end": { - "line": 87, - "column": 86 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 2968, - "end": 2972, - "loc": { - "start": { - "line": 87, - "column": 86 - }, - "end": { - "line": 87, - "column": 90 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2972, - "end": 2973, - "loc": { - "start": { - "line": 87, - "column": 90 - }, - "end": { - "line": 87, - "column": 91 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 2974, - "end": 2992, - "loc": { - "start": { - "line": 87, - "column": 92 - }, - "end": { - "line": 87, - "column": 110 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 2992, - "end": 2993, - "loc": { - "start": { - "line": 87, - "column": 110 - }, - "end": { - "line": 87, - "column": 111 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 2994, - "end": 3005, - "loc": { - "start": { - "line": 87, - "column": 112 - }, - "end": { - "line": 87, - "column": 123 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3005, - "end": 3006, - "loc": { - "start": { - "line": 87, - "column": 123 - }, - "end": { - "line": 87, - "column": 124 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3007, - "end": 3020, - "loc": { - "start": { - "line": 87, - "column": 125 - }, - "end": { - "line": 87, - "column": 138 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3020, - "end": 3021, - "loc": { - "start": { - "line": 87, - "column": 138 - }, - "end": { - "line": 87, - "column": 139 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3021, - "end": 3022, - "loc": { - "start": { - "line": 87, - "column": 139 - }, - "end": { - "line": 87, - "column": 140 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3025, - "end": 3026, - "loc": { - "start": { - "line": 88, - "column": 2 - }, - "end": { - "line": 88, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {string} valueBase64 - Value in Base64 format.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Promise} - Promise which emits first {@link Characteristic} object matching specified \n * UUID path. Latest value of characteristic may not be stored inside returned object.\n * \n * @memberOf Service\n ", - "start": 3030, - "end": 3632, - "loc": { - "start": { - "line": 90, - "column": 2 - }, - "end": { - "line": 100, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "async", - "start": 3635, - "end": 3640, - "loc": { - "start": { - "line": 101, - "column": 2 - }, - "end": { - "line": 101, - "column": 7 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponse", - "start": 3641, - "end": 3675, - "loc": { - "start": { - "line": 101, - "column": 8 - }, - "end": { - "line": 101, - "column": 42 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3675, - "end": 3676, - "loc": { - "start": { - "line": 101, - "column": 42 - }, - "end": { - "line": 101, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 3676, - "end": 3694, - "loc": { - "start": { - "line": 101, - "column": 43 - }, - "end": { - "line": 101, - "column": 61 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3694, - "end": 3695, - "loc": { - "start": { - "line": 101, - "column": 61 - }, - "end": { - "line": 101, - "column": 62 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 3696, - "end": 3707, - "loc": { - "start": { - "line": 101, - "column": 63 - }, - "end": { - "line": 101, - "column": 74 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3707, - "end": 3708, - "loc": { - "start": { - "line": 101, - "column": 74 - }, - "end": { - "line": 101, - "column": 75 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3709, - "end": 3722, - "loc": { - "start": { - "line": 101, - "column": 76 - }, - "end": { - "line": 101, - "column": 89 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3722, - "end": 3723, - "loc": { - "start": { - "line": 101, - "column": 89 - }, - "end": { - "line": 101, - "column": 90 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3724, - "end": 3725, - "loc": { - "start": { - "line": 101, - "column": 91 - }, - "end": { - "line": 101, - "column": 92 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 3730, - "end": 3736, - "loc": { - "start": { - "line": 102, - "column": 4 - }, - "end": { - "line": 102, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3737, - "end": 3741, - "loc": { - "start": { - "line": 102, - "column": 11 - }, - "end": { - "line": 102, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3741, - "end": 3742, - "loc": { - "start": { - "line": 102, - "column": 15 - }, - "end": { - "line": 102, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 3742, - "end": 3750, - "loc": { - "start": { - "line": 102, - "column": 16 - }, - "end": { - "line": 102, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3750, - "end": 3751, - "loc": { - "start": { - "line": 102, - "column": 24 - }, - "end": { - "line": 102, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "writeCharacteristicWithoutResponseForDevice", - "start": 3751, - "end": 3794, - "loc": { - "start": { - "line": 102, - "column": 25 - }, - "end": { - "line": 102, - "column": 68 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3794, - "end": 3795, - "loc": { - "start": { - "line": 102, - "column": 68 - }, - "end": { - "line": 102, - "column": 69 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3795, - "end": 3799, - "loc": { - "start": { - "line": 102, - "column": 69 - }, - "end": { - "line": 102, - "column": 73 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3799, - "end": 3800, - "loc": { - "start": { - "line": 102, - "column": 73 - }, - "end": { - "line": 102, - "column": 74 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 3800, - "end": 3808, - "loc": { - "start": { - "line": 102, - "column": 74 - }, - "end": { - "line": 102, - "column": 82 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3808, - "end": 3809, - "loc": { - "start": { - "line": 102, - "column": 82 - }, - "end": { - "line": 102, - "column": 83 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 3810, - "end": 3814, - "loc": { - "start": { - "line": 102, - "column": 84 - }, - "end": { - "line": 102, - "column": 88 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3814, - "end": 3815, - "loc": { - "start": { - "line": 102, - "column": 88 - }, - "end": { - "line": 102, - "column": 89 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 3815, - "end": 3819, - "loc": { - "start": { - "line": 102, - "column": 89 - }, - "end": { - "line": 102, - "column": 93 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3819, - "end": 3820, - "loc": { - "start": { - "line": 102, - "column": 93 - }, - "end": { - "line": 102, - "column": 94 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 3821, - "end": 3839, - "loc": { - "start": { - "line": 102, - "column": 95 - }, - "end": { - "line": 102, - "column": 113 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3839, - "end": 3840, - "loc": { - "start": { - "line": 102, - "column": 113 - }, - "end": { - "line": 102, - "column": 114 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "valueBase64", - "start": 3841, - "end": 3852, - "loc": { - "start": { - "line": 102, - "column": 115 - }, - "end": { - "line": 102, - "column": 126 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3852, - "end": 3853, - "loc": { - "start": { - "line": 102, - "column": 126 - }, - "end": { - "line": 102, - "column": 127 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 3854, - "end": 3867, - "loc": { - "start": { - "line": 102, - "column": 128 - }, - "end": { - "line": 102, - "column": 141 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3867, - "end": 3868, - "loc": { - "start": { - "line": 102, - "column": 141 - }, - "end": { - "line": 102, - "column": 142 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 3868, - "end": 3869, - "loc": { - "start": { - "line": 102, - "column": 142 - }, - "end": { - "line": 102, - "column": 143 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 3872, - "end": 3873, - "loc": { - "start": { - "line": 103, - "column": 2 - }, - "end": { - "line": 103, - "column": 3 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * {@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.\n * \n * @param {string} characteristicUUID - {@link Characteristic} UUID.\n * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits \n * {@link Characteristic} objects with modified value for each notification.\n * @param {?string} transactionId - optional `transactionId` which can be used in {@link cancelTransaction} function.\n * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe.\n * \n * @memberOf Service\n ", - "start": 3877, - "end": 4484, - "loc": { - "start": { - "line": 105, - "column": 2 - }, - "end": { - "line": 115, - "column": 5 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristic", - "start": 4487, - "end": 4508, - "loc": { - "start": { - "line": 116, - "column": 2 - }, - "end": { - "line": 116, - "column": 23 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4508, - "end": 4509, - "loc": { - "start": { - "line": 116, - "column": 23 - }, - "end": { - "line": 116, - "column": 24 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 4509, - "end": 4527, - "loc": { - "start": { - "line": 116, - "column": 24 - }, - "end": { - "line": 116, - "column": 42 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4527, - "end": 4528, - "loc": { - "start": { - "line": 116, - "column": 42 - }, - "end": { - "line": 116, - "column": 43 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 4529, - "end": 4537, - "loc": { - "start": { - "line": 116, - "column": 44 - }, - "end": { - "line": 116, - "column": 52 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4537, - "end": 4538, - "loc": { - "start": { - "line": 116, - "column": 52 - }, - "end": { - "line": 116, - "column": 53 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 4539, - "end": 4552, - "loc": { - "start": { - "line": 116, - "column": 54 - }, - "end": { - "line": 116, - "column": 67 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4552, - "end": 4553, - "loc": { - "start": { - "line": 116, - "column": 67 - }, - "end": { - "line": 116, - "column": 68 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4554, - "end": 4555, - "loc": { - "start": { - "line": 116, - "column": 69 - }, - "end": { - "line": 116, - "column": 70 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 4560, - "end": 4566, - "loc": { - "start": { - "line": 117, - "column": 4 - }, - "end": { - "line": 117, - "column": 10 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4567, - "end": 4571, - "loc": { - "start": { - "line": 117, - "column": 11 - }, - "end": { - "line": 117, - "column": 15 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4571, - "end": 4572, - "loc": { - "start": { - "line": 117, - "column": 15 - }, - "end": { - "line": 117, - "column": 16 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "_manager", - "start": 4572, - "end": 4580, - "loc": { - "start": { - "line": 117, - "column": 16 - }, - "end": { - "line": 117, - "column": 24 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4580, - "end": 4581, - "loc": { - "start": { - "line": 117, - "column": 24 - }, - "end": { - "line": 117, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "monitorCharacteristicForDevice", - "start": 4581, - "end": 4611, - "loc": { - "start": { - "line": 117, - "column": 25 - }, - "end": { - "line": 117, - "column": 55 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4611, - "end": 4612, - "loc": { - "start": { - "line": 117, - "column": 55 - }, - "end": { - "line": 117, - "column": 56 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4612, - "end": 4616, - "loc": { - "start": { - "line": 117, - "column": 56 - }, - "end": { - "line": 117, - "column": 60 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4616, - "end": 4617, - "loc": { - "start": { - "line": 117, - "column": 60 - }, - "end": { - "line": 117, - "column": 61 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "deviceID", - "start": 4617, - "end": 4625, - "loc": { - "start": { - "line": 117, - "column": 61 - }, - "end": { - "line": 117, - "column": 69 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4625, - "end": 4626, - "loc": { - "start": { - "line": 117, - "column": 69 - }, - "end": { - "line": 117, - "column": 70 - } - } - }, - { - "type": { - "label": "this", - "keyword": "this", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "this", - "start": 4627, - "end": 4631, - "loc": { - "start": { - "line": 117, - "column": 71 - }, - "end": { - "line": 117, - "column": 75 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4631, - "end": 4632, - "loc": { - "start": { - "line": 117, - "column": 75 - }, - "end": { - "line": 117, - "column": 76 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 4632, - "end": 4636, - "loc": { - "start": { - "line": 117, - "column": 76 - }, - "end": { - "line": 117, - "column": 80 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4636, - "end": 4637, - "loc": { - "start": { - "line": 117, - "column": 80 - }, - "end": { - "line": 117, - "column": 81 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "characteristicUUID", - "start": 4638, - "end": 4656, - "loc": { - "start": { - "line": 117, - "column": 82 - }, - "end": { - "line": 117, - "column": 100 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4656, - "end": 4657, - "loc": { - "start": { - "line": 117, - "column": 100 - }, - "end": { - "line": 117, - "column": 101 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "listener", - "start": 4658, - "end": 4666, - "loc": { - "start": { - "line": 117, - "column": 102 - }, - "end": { - "line": 117, - "column": 110 - } - } - }, - { - "type": { - "label": ",", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4666, - "end": 4667, - "loc": { - "start": { - "line": 117, - "column": 110 - }, - "end": { - "line": 117, - "column": 111 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "transactionId", - "start": 4668, - "end": 4681, - "loc": { - "start": { - "line": 117, - "column": 112 - }, - "end": { - "line": 117, - "column": 125 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4681, - "end": 4682, - "loc": { - "start": { - "line": 117, - "column": 125 - }, - "end": { - "line": 117, - "column": 126 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4682, - "end": 4683, - "loc": { - "start": { - "line": 117, - "column": 126 - }, - "end": { - "line": 117, - "column": 127 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4686, - "end": 4687, - "loc": { - "start": { - "line": 118, - "column": 2 - }, - "end": { - "line": 118, - "column": 3 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 4688, - "end": 4689, - "loc": { - "start": { - "line": 119, - "column": 0 - }, - "end": { - "line": 119, - "column": 1 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 4689, - "end": 4689, - "loc": { - "start": { - "line": 119, - "column": 1 - }, - "end": { - "line": 119, - "column": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/ast/source/src/Utils.js.json b/docs/ast/source/src/Utils.js.json deleted file mode 100644 index fad0c989..00000000 --- a/docs/ast/source/src/Utils.js.json +++ /dev/null @@ -1,2221 +0,0 @@ -{ - "type": "File", - "start": 0, - "end": 473, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "program": { - "type": "Program", - "start": 0, - "end": 473, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "sourceType": "module", - "body": [ - { - "type": "ExportNamedDeclaration", - "start": 231, - "end": 473, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "specifiers": [], - "source": null, - "declaration": { - "type": "FunctionDeclaration", - "start": 238, - "end": 473, - "loc": { - "start": { - "line": 11, - "column": 7 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "id": { - "type": "Identifier", - "start": 247, - "end": 255, - "loc": { - "start": { - "line": 11, - "column": 16 - }, - "end": { - "line": 11, - "column": 24 - }, - "identifierName": "fullUUID" - }, - "name": "fullUUID", - "leadingComments": null - }, - "generator": false, - "expression": false, - "async": false, - "params": [ - { - "type": "Identifier", - "start": 256, - "end": 260, - "loc": { - "start": { - "line": 11, - "column": 25 - }, - "end": { - "line": 11, - "column": 29 - }, - "identifierName": "uuid" - }, - "name": "uuid" - } - ], - "body": { - "type": "BlockStatement", - "start": 262, - "end": 473, - "loc": { - "start": { - "line": 11, - "column": 31 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "body": [ - { - "type": "IfStatement", - "start": 266, - "end": 357, - "loc": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 93 - } - }, - "test": { - "type": "BinaryExpression", - "start": 270, - "end": 287, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 23 - } - }, - "left": { - "type": "MemberExpression", - "start": 270, - "end": 281, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 17 - } - }, - "object": { - "type": "Identifier", - "start": 270, - "end": 274, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 10 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "property": { - "type": "Identifier", - "start": 275, - "end": 281, - "loc": { - "start": { - "line": 12, - "column": 11 - }, - "end": { - "line": 12, - "column": 17 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 286, - "end": 287, - "loc": { - "start": { - "line": 12, - "column": 22 - }, - "end": { - "line": 12, - "column": 23 - } - }, - "extra": { - "rawValue": 4, - "raw": "4" - }, - "value": 4 - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 289, - "end": 357, - "loc": { - "start": { - "line": 12, - "column": 25 - }, - "end": { - "line": 12, - "column": 93 - } - }, - "argument": { - "type": "BinaryExpression", - "start": 296, - "end": 356, - "loc": { - "start": { - "line": 12, - "column": 32 - }, - "end": { - "line": 12, - "column": 92 - } - }, - "left": { - "type": "BinaryExpression", - "start": 296, - "end": 323, - "loc": { - "start": { - "line": 12, - "column": 32 - }, - "end": { - "line": 12, - "column": 59 - } - }, - "left": { - "type": "StringLiteral", - "start": 296, - "end": 302, - "loc": { - "start": { - "line": 12, - "column": 32 - }, - "end": { - "line": 12, - "column": 38 - } - }, - "extra": { - "rawValue": "0000", - "raw": "\"0000\"" - }, - "value": "0000" - }, - "operator": "+", - "right": { - "type": "CallExpression", - "start": 305, - "end": 323, - "loc": { - "start": { - "line": 12, - "column": 41 - }, - "end": { - "line": 12, - "column": 59 - } - }, - "callee": { - "type": "MemberExpression", - "start": 305, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 41 - }, - "end": { - "line": 12, - "column": 57 - } - }, - "object": { - "type": "Identifier", - "start": 305, - "end": 309, - "loc": { - "start": { - "line": 12, - "column": 41 - }, - "end": { - "line": 12, - "column": 45 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "property": { - "type": "Identifier", - "start": 310, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 46 - }, - "end": { - "line": 12, - "column": 57 - }, - "identifierName": "toLowerCase" - }, - "name": "toLowerCase" - }, - "computed": false - }, - "arguments": [] - } - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 326, - "end": 356, - "loc": { - "start": { - "line": 12, - "column": 62 - }, - "end": { - "line": 12, - "column": 92 - } - }, - "extra": { - "rawValue": "-0000-1000-8000-00805f9b34fb", - "raw": "\"-0000-1000-8000-00805f9b34fb\"" - }, - "value": "-0000-1000-8000-00805f9b34fb" - } - } - }, - "alternate": null - }, - { - "type": "IfStatement", - "start": 360, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 84 - } - }, - "test": { - "type": "BinaryExpression", - "start": 364, - "end": 381, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 23 - } - }, - "left": { - "type": "MemberExpression", - "start": 364, - "end": 375, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 17 - } - }, - "object": { - "type": "Identifier", - "start": 364, - "end": 368, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 10 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "property": { - "type": "Identifier", - "start": 369, - "end": 375, - "loc": { - "start": { - "line": 13, - "column": 11 - }, - "end": { - "line": 13, - "column": 17 - }, - "identifierName": "length" - }, - "name": "length" - }, - "computed": false - }, - "operator": "===", - "right": { - "type": "NumericLiteral", - "start": 380, - "end": 381, - "loc": { - "start": { - "line": 13, - "column": 22 - }, - "end": { - "line": 13, - "column": 23 - } - }, - "extra": { - "rawValue": 8, - "raw": "8" - }, - "value": 8 - } - }, - "consequent": { - "type": "ReturnStatement", - "start": 383, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 84 - } - }, - "argument": { - "type": "BinaryExpression", - "start": 390, - "end": 441, - "loc": { - "start": { - "line": 13, - "column": 32 - }, - "end": { - "line": 13, - "column": 83 - } - }, - "left": { - "type": "CallExpression", - "start": 390, - "end": 408, - "loc": { - "start": { - "line": 13, - "column": 32 - }, - "end": { - "line": 13, - "column": 50 - } - }, - "callee": { - "type": "MemberExpression", - "start": 390, - "end": 406, - "loc": { - "start": { - "line": 13, - "column": 32 - }, - "end": { - "line": 13, - "column": 48 - } - }, - "object": { - "type": "Identifier", - "start": 390, - "end": 394, - "loc": { - "start": { - "line": 13, - "column": 32 - }, - "end": { - "line": 13, - "column": 36 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "property": { - "type": "Identifier", - "start": 395, - "end": 406, - "loc": { - "start": { - "line": 13, - "column": 37 - }, - "end": { - "line": 13, - "column": 48 - }, - "identifierName": "toLowerCase" - }, - "name": "toLowerCase" - }, - "computed": false - }, - "arguments": [] - }, - "operator": "+", - "right": { - "type": "StringLiteral", - "start": 411, - "end": 441, - "loc": { - "start": { - "line": 13, - "column": 53 - }, - "end": { - "line": 13, - "column": 83 - } - }, - "extra": { - "rawValue": "-0000-1000-8000-00805f9b34fb", - "raw": "\"-0000-1000-8000-00805f9b34fb\"" - }, - "value": "-0000-1000-8000-00805f9b34fb" - } - } - }, - "alternate": null - }, - { - "type": "ReturnStatement", - "start": 445, - "end": 471, - "loc": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 28 - } - }, - "argument": { - "type": "CallExpression", - "start": 452, - "end": 470, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 27 - } - }, - "callee": { - "type": "MemberExpression", - "start": 452, - "end": 468, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 25 - } - }, - "object": { - "type": "Identifier", - "start": 452, - "end": 456, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 13 - }, - "identifierName": "uuid" - }, - "name": "uuid" - }, - "property": { - "type": "Identifier", - "start": 457, - "end": 468, - "loc": { - "start": { - "line": 14, - "column": 14 - }, - "end": { - "line": 14, - "column": 25 - }, - "identifierName": "toLowerCase" - }, - "name": "toLowerCase" - }, - "computed": false - }, - "arguments": [] - } - } - ], - "directives": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.\n * \n * @export\n * @param {string} uuid 16bit, 32bit or 128bit UUID.\n * @returns {string} 128bit lowercase UUID.\n ", - "start": 15, - "end": 229, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 9, - "column": 3 - } - } - } - ], - "trailingComments": [] - }, - "leadingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.\n * \n * @export\n * @param {string} uuid 16bit, 32bit or 128bit UUID.\n * @returns {string} 128bit lowercase UUID.\n ", - "start": 15, - "end": 229, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 9, - "column": 3 - } - } - } - ] - } - ], - "directives": [ - { - "type": "Directive", - "start": 0, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 13 - } - }, - "value": { - "type": "DirectiveLiteral", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - }, - "value": "use strict", - "extra": { - "raw": "\"use strict\"", - "rawValue": "use strict" - }, - "trailingComments": null - }, - "trailingComments": [ - { - "type": "CommentBlock", - "value": "*\n * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.\n * \n * @export\n * @param {string} uuid 16bit, 32bit or 128bit UUID.\n * @returns {string} 128bit lowercase UUID.\n ", - "start": 15, - "end": 229, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 9, - "column": 3 - } - } - } - ] - } - ] - }, - "comments": [ - { - "type": "CommentBlock", - "value": "*\n * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.\n * \n * @export\n * @param {string} uuid 16bit, 32bit or 128bit UUID.\n * @returns {string} 128bit lowercase UUID.\n ", - "start": 15, - "end": 229, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 9, - "column": 3 - } - } - } - ], - "tokens": [ - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "use strict", - "start": 0, - "end": 12, - "loc": { - "start": { - "line": 1, - "column": 0 - }, - "end": { - "line": 1, - "column": 12 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 12, - "end": 13, - "loc": { - "start": { - "line": 1, - "column": 12 - }, - "end": { - "line": 1, - "column": 13 - } - } - }, - { - "type": "CommentBlock", - "value": "*\n * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.\n * \n * @export\n * @param {string} uuid 16bit, 32bit or 128bit UUID.\n * @returns {string} 128bit lowercase UUID.\n ", - "start": 15, - "end": 229, - "loc": { - "start": { - "line": 3, - "column": 0 - }, - "end": { - "line": 9, - "column": 3 - } - } - }, - { - "type": { - "label": "export", - "keyword": "export", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "export", - "start": 231, - "end": 237, - "loc": { - "start": { - "line": 11, - "column": 0 - }, - "end": { - "line": 11, - "column": 6 - } - } - }, - { - "type": { - "label": "function", - "keyword": "function", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "function", - "start": 238, - "end": 246, - "loc": { - "start": { - "line": 11, - "column": 7 - }, - "end": { - "line": 11, - "column": 15 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "fullUUID", - "start": 247, - "end": 255, - "loc": { - "start": { - "line": 11, - "column": 16 - }, - "end": { - "line": 11, - "column": 24 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 255, - "end": 256, - "loc": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 256, - "end": 260, - "loc": { - "start": { - "line": 11, - "column": 25 - }, - "end": { - "line": 11, - "column": 29 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 260, - "end": 261, - "loc": { - "start": { - "line": 11, - "column": 29 - }, - "end": { - "line": 11, - "column": 30 - } - } - }, - { - "type": { - "label": "{", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 262, - "end": 263, - "loc": { - "start": { - "line": 11, - "column": 31 - }, - "end": { - "line": 11, - "column": 32 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 266, - "end": 268, - "loc": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 269, - "end": 270, - "loc": { - "start": { - "line": 12, - "column": 5 - }, - "end": { - "line": 12, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 270, - "end": 274, - "loc": { - "start": { - "line": 12, - "column": 6 - }, - "end": { - "line": 12, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 274, - "end": 275, - "loc": { - "start": { - "line": 12, - "column": 10 - }, - "end": { - "line": 12, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 275, - "end": 281, - "loc": { - "start": { - "line": 12, - "column": 11 - }, - "end": { - "line": 12, - "column": 17 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 282, - "end": 285, - "loc": { - "start": { - "line": 12, - "column": 18 - }, - "end": { - "line": 12, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 4, - "start": 286, - "end": 287, - "loc": { - "start": { - "line": 12, - "column": 22 - }, - "end": { - "line": 12, - "column": 23 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 287, - "end": 288, - "loc": { - "start": { - "line": 12, - "column": 23 - }, - "end": { - "line": 12, - "column": 24 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 289, - "end": 295, - "loc": { - "start": { - "line": 12, - "column": 25 - }, - "end": { - "line": 12, - "column": 31 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "0000", - "start": 296, - "end": 302, - "loc": { - "start": { - "line": 12, - "column": 32 - }, - "end": { - "line": 12, - "column": 38 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 303, - "end": 304, - "loc": { - "start": { - "line": 12, - "column": 39 - }, - "end": { - "line": 12, - "column": 40 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 305, - "end": 309, - "loc": { - "start": { - "line": 12, - "column": 41 - }, - "end": { - "line": 12, - "column": 45 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 309, - "end": 310, - "loc": { - "start": { - "line": 12, - "column": 45 - }, - "end": { - "line": 12, - "column": 46 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toLowerCase", - "start": 310, - "end": 321, - "loc": { - "start": { - "line": 12, - "column": 46 - }, - "end": { - "line": 12, - "column": 57 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 321, - "end": 322, - "loc": { - "start": { - "line": 12, - "column": 57 - }, - "end": { - "line": 12, - "column": 58 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 322, - "end": 323, - "loc": { - "start": { - "line": 12, - "column": 58 - }, - "end": { - "line": 12, - "column": 59 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 324, - "end": 325, - "loc": { - "start": { - "line": 12, - "column": 60 - }, - "end": { - "line": 12, - "column": 61 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "-0000-1000-8000-00805f9b34fb", - "start": 326, - "end": 356, - "loc": { - "start": { - "line": 12, - "column": 62 - }, - "end": { - "line": 12, - "column": 92 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 356, - "end": 357, - "loc": { - "start": { - "line": 12, - "column": 92 - }, - "end": { - "line": 12, - "column": 93 - } - } - }, - { - "type": { - "label": "if", - "keyword": "if", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "if", - "start": 360, - "end": 362, - "loc": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 363, - "end": 364, - "loc": { - "start": { - "line": 13, - "column": 5 - }, - "end": { - "line": 13, - "column": 6 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 364, - "end": 368, - "loc": { - "start": { - "line": 13, - "column": 6 - }, - "end": { - "line": 13, - "column": 10 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 368, - "end": 369, - "loc": { - "start": { - "line": 13, - "column": 10 - }, - "end": { - "line": 13, - "column": 11 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "length", - "start": 369, - "end": 375, - "loc": { - "start": { - "line": 13, - "column": 11 - }, - "end": { - "line": 13, - "column": 17 - } - } - }, - { - "type": { - "label": "==/!=", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": 6, - "updateContext": null - }, - "value": "===", - "start": 376, - "end": 379, - "loc": { - "start": { - "line": 13, - "column": 18 - }, - "end": { - "line": 13, - "column": 21 - } - } - }, - { - "type": { - "label": "num", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": 8, - "start": 380, - "end": 381, - "loc": { - "start": { - "line": 13, - "column": 22 - }, - "end": { - "line": 13, - "column": 23 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 381, - "end": 382, - "loc": { - "start": { - "line": 13, - "column": 23 - }, - "end": { - "line": 13, - "column": 24 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 383, - "end": 389, - "loc": { - "start": { - "line": 13, - "column": 25 - }, - "end": { - "line": 13, - "column": 31 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 390, - "end": 394, - "loc": { - "start": { - "line": 13, - "column": 32 - }, - "end": { - "line": 13, - "column": 36 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 394, - "end": 395, - "loc": { - "start": { - "line": 13, - "column": 36 - }, - "end": { - "line": 13, - "column": 37 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toLowerCase", - "start": 395, - "end": 406, - "loc": { - "start": { - "line": 13, - "column": 37 - }, - "end": { - "line": 13, - "column": 48 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 406, - "end": 407, - "loc": { - "start": { - "line": 13, - "column": 48 - }, - "end": { - "line": 13, - "column": 49 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 407, - "end": 408, - "loc": { - "start": { - "line": 13, - "column": 49 - }, - "end": { - "line": 13, - "column": 50 - } - } - }, - { - "type": { - "label": "+/-", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": true, - "postfix": false, - "binop": 9, - "updateContext": null - }, - "value": "+", - "start": 409, - "end": 410, - "loc": { - "start": { - "line": 13, - "column": 51 - }, - "end": { - "line": 13, - "column": 52 - } - } - }, - { - "type": { - "label": "string", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "-0000-1000-8000-00805f9b34fb", - "start": 411, - "end": 441, - "loc": { - "start": { - "line": 13, - "column": 53 - }, - "end": { - "line": 13, - "column": 83 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 441, - "end": 442, - "loc": { - "start": { - "line": 13, - "column": 83 - }, - "end": { - "line": 13, - "column": 84 - } - } - }, - { - "type": { - "label": "return", - "keyword": "return", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "value": "return", - "start": 445, - "end": 451, - "loc": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 8 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "uuid", - "start": 452, - "end": 456, - "loc": { - "start": { - "line": 14, - "column": 9 - }, - "end": { - "line": 14, - "column": 13 - } - } - }, - { - "type": { - "label": ".", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 456, - "end": 457, - "loc": { - "start": { - "line": 14, - "column": 13 - }, - "end": { - "line": 14, - "column": 14 - } - } - }, - { - "type": { - "label": "name", - "beforeExpr": false, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "value": "toLowerCase", - "start": 457, - "end": 468, - "loc": { - "start": { - "line": 14, - "column": 14 - }, - "end": { - "line": 14, - "column": 25 - } - } - }, - { - "type": { - "label": "(", - "beforeExpr": true, - "startsExpr": true, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 468, - "end": 469, - "loc": { - "start": { - "line": 14, - "column": 25 - }, - "end": { - "line": 14, - "column": 26 - } - } - }, - { - "type": { - "label": ")", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 469, - "end": 470, - "loc": { - "start": { - "line": 14, - "column": 26 - }, - "end": { - "line": 14, - "column": 27 - } - } - }, - { - "type": { - "label": ";", - "beforeExpr": true, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 470, - "end": 471, - "loc": { - "start": { - "line": 14, - "column": 27 - }, - "end": { - "line": 14, - "column": 28 - } - } - }, - { - "type": { - "label": "}", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null - }, - "start": 472, - "end": 473, - "loc": { - "start": { - "line": 15, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - } - }, - { - "type": { - "label": "eof", - "beforeExpr": false, - "startsExpr": false, - "rightAssociative": false, - "isLoop": false, - "isAssign": false, - "prefix": false, - "postfix": false, - "binop": null, - "updateContext": null - }, - "start": 473, - "end": 473, - "loc": { - "start": { - "line": 15, - "column": 1 - }, - "end": { - "line": 15, - "column": 1 - } - } - } - ] -} \ No newline at end of file diff --git a/docs/class/react-native-ble-plx/src/BleManager.js~BleManager.html b/docs/class/react-native-ble-plx/src/BleManager.js~BleManager.html deleted file mode 100644 index fffe70b7..00000000 --- a/docs/class/react-native-ble-plx/src/BleManager.js~BleManager.html +++ /dev/null @@ -1,2017 +0,0 @@ - - - - - - BleManager | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    - - public - class - - - - | source -
    - -
    -

    BleManager

    - - - - - - - - - - - - - - - -

    BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with -Device instances. It should be initialized only once with new keyword and method destroy should be called -on its instance when user wants to deallocate all resources.

    -
    - - - - -
    -

    Example:

    - -
    - -
    const manager = new BleManager();
    -// ... work with BLE manager ...
    -manager.destroy(); 
    -
    -
    - - - - -
    - - - -

    Constructor Summary

    - - - - - - - - - -
    Public Constructor
    - public - - - - - -
    -

    - - - constructor() -

    -
    -
    - - - -
    -
    - - -
    -
    - -

    Method Summary

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Methods
    - public - - - - - -
    -

    - async - - cancelDeviceConnection(deviceIdentifier: string): Promise<Device> -

    -
    -
    - - -

    Disconnects from device if it's connected or cancels pending connection.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - cancelTransaction(transactionId: string) -

    -
    -
    - - -

    Cancels pending transaction.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - characteristicsForDevice(deviceIdentifier: string, serviceUUID: string): Promise<Characteristic[]> -

    -
    -
    - - -

    List of discovered characteristics for given Device and Service.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - connectToDevice(deviceIdentifier: string, options: ConnectionOptions): Promise<Device> -

    -
    -
    - - -

    Connects to Device with provided ID.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - destroy() -

    -
    -
    - - -

    Destroys BleManager instance.

    -
    -
    -
    - - -
    - public - - - - - - -
    - - -

    Discovers all services and characteristics for Device.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - isDeviceConnected(deviceIdentifier: string): Promise<boolean> -

    -
    -
    - - -

    Check connection state of a device.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - monitorCharacteristicForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription -

    -
    -
    - - -

    Monitor value changes of a characteristic.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - onDeviceDisconnected(deviceIdentifier: string, listener: function(error: ?Error, device: Device)): Subscription -

    -
    -
    - - -

    Monitors if device was disconnected due to any errors or connection problems.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - onStateChange(listener: function(newState: State), emitCurrentState: boolean): Subscription -

    -
    -
    - - -

    Notifies about state changes of a manager.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - readCharacteristicForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    Read characteristic value.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - servicesForDevice(deviceIdentifier: string): Promise<Service[]> -

    -
    -
    - - -

    List of discovered services for device.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - startDeviceScan(UUIDs: string[], options: ScanOptions, listener: function(error: ?Error, scannedDevice: ?Device)) -

    -
    -
    - - -

    Starts device scanning.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - state(): Promise<State> -

    -
    -
    - - -

    Current state of a manager.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - stopDeviceScan() -

    -
    -
    - - -

    Stops device scan if in progress.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithResponseForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, base64Value: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    Write characteristic value with response.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithoutResponseForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, base64Value: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    Write characteristic value without response.

    -
    -
    -
    - - -
    -
    - - - - - -

    Public Constructors

    - -
    -

    - public - - - - - - constructor() - - - - source - -

    - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    - -

    Public Methods

    - -
    -

    - public - - - - async - - cancelDeviceConnection(deviceIdentifier: string): Promise<Device> - - - - source - -

    - - - - -

    Disconnects from device if it's connected or cancels pending connection.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier to be closed.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Returns closed Device when operation is successful.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - cancelTransaction(transactionId: string) - - - - source - -

    - - - - -

    Cancels pending transaction.

    -

    Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API -entry which accepts transactionId allows to call cancelTransaction function. When cancelled operation is a -promise or a callback which registers errors, "Cancelled" error will be emitted in that case.

    -

    Cancelling transaction which doesn't exist is ignored.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    transactionIdstring

    Id of pending transactions.

    -
    -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - characteristicsForDevice(deviceIdentifier: string, serviceUUID: string): Promise<Characteristic[]> - - - - source - -

    - - - - -

    List of discovered characteristics for given Device and Service.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    serviceUUIDstring

    Service UUID.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic[]>

    Promise which emits array of Characteristic objects which are -discovered for a Device in specified Service.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - connectToDevice(deviceIdentifier: string, options: ConnectionOptions): Promise<Device> - - - - source - -

    - - - - -

    Connects to Device with provided ID.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    optionsConnectionOptions
    • nullable: true

    Platform specific options for connection establishment. Not used currently.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Connected Device object if successful.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - destroy() - - - - source - -

    - - - - -

    Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - discoverAllServicesAndCharacteristicsForDevice(identifier: string): Promise<Device> - - - - source - -

    - - - - -

    Discovers all services and characteristics for Device.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    identifierstring

    Device identifier.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Promise which emits Device object if all available services and -characteristics have been discovered.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - isDeviceConnected(deviceIdentifier: string): Promise<boolean> - - - - source - -

    - - - - -

    Check connection state of a device.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<boolean>

    Promise which emits true if device is connected, and false otherwise.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - monitorCharacteristicForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription - - - - source - -

    - - - - -

    Monitor value changes of a characteristic. If notifications are enabled they will be used -in favour of indications.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    listenerfunction(error: ?Error, characteristic: ?Characteristic)

    callback which emits -Characteristic objects with modified value for each notification.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - onDeviceDisconnected(deviceIdentifier: string, listener: function(error: ?Error, device: Device)): Subscription - - - - source - -

    - - - - -

    Monitors if device was disconnected due to any errors or connection problems.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier to be monitored.

    -
    listenerfunction(error: ?Error, device: Device)

    callback returning error as a reason of disconnection -if available and Device object.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - onStateChange(listener: function(newState: State), emitCurrentState: boolean): Subscription - - - - source - -

    - - - - -

    Notifies about state changes of a manager.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    listenerfunction(newState: State)

    Callback which emits state changes of BLE Manager. -Look at state for possible values.

    -
    emitCurrentStateboolean
    • optional
    • -
    • default: false

    If true, current state will be emitted as well. Defaults to false.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - readCharacteristicForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    Read characteristic value.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of Characteristic will be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - servicesForDevice(deviceIdentifier: string): Promise<Service[]> - - - - source - -

    - - - - -

    List of discovered services for device.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Service[]>

    Promise which emits array of Service objects which are discovered for a -Device.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - startDeviceScan(UUIDs: string[], options: ScanOptions, listener: function(error: ?Error, scannedDevice: ?Device)) - - - - source - -

    - - - - -

    Starts device scanning.

    -

    When previous scan is in progress it will be stopped before executing this command.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    UUIDsstring[]
    • nullable: true

    Array of strings containing UUIDs of services which are registered in scanned devices. -If null is passed all available devices will be scanned.

    -
    optionsScanOptions
    • nullable: true

    Optional configuration for scanning operation. Scan option object contains two -optional fields: allowDuplicates for iOS when set to true scanned Devices will be emitted more -frequently, autoConnect for Android - allows to connect to devices which are not in range.

    -
    listenerfunction(error: ?Error, scannedDevice: ?Device)

    Function which will be called for every scanned -Device (devices may be scanned multiple times). It's first argument is potential Error which is set -to non null value when scanning failed. You have to start scanning process again if that happens. Second argument -is a scanned Device.

    -
    -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - state(): Promise<State> - - - - source - -

    - - - - -

    Current state of a manager.

    -

    Available states:

    -
      -
    • Unknown - the current state of the manager is unknown; an update is imminent.
    • -
    • Resetting - the connection with the system service was momentarily lost; an update is imminent.
    • -
    • Unsupported - the platform does not support Bluetooth low energy.
    • -
    • Unauthorized - the app is not authorized to use Bluetooth low energy.
    • -
    • PoweredOff - Bluetooth is currently powered off.
    • -
    • PoweredOn - Bluetooth is currently powered on and available to use.
    • -
    -
    - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<State>

    Promise which emits current state of BleManager.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - stopDeviceScan() - - - - source - -

    - - - - -

    Stops device scan if in progress.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithResponseForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, base64Value: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    Write characteristic value with response.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    base64Valuestring

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithoutResponseForDevice(deviceIdentifier: string, serviceUUID: string, characteristicUUID: string, base64Value: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    Write characteristic value without response.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    deviceIdentifierstring

    Device identifier.

    -
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    base64Valuestring

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Characteristic.js~Characteristic.html b/docs/class/react-native-ble-plx/src/Characteristic.js~Characteristic.html deleted file mode 100644 index 56034ec7..00000000 --- a/docs/class/react-native-ble-plx/src/Characteristic.js~Characteristic.html +++ /dev/null @@ -1,1280 +0,0 @@ - - - - - - Characteristic | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    - - public - class - - - - | source -
    - -
    -

    Characteristic

    - - - - - -

    Extends:

    react-native-ble-plx/src/Characteristic.js~NativeCharacteristic → Characteristic
    - - - - - - - - - -

    Characteristic object.

    -
    - - - - - - - - - -
    - - - - -

    Member Summary

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Members
    - public - - - - - -
    -

    - - - deviceID: string -

    -
    -
    - - -

    Device identifier which owns this characteristic.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isIndictable: boolean -

    -
    -
    - - -

    True if characteristic is indictable

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isNotifiable: boolean -

    -
    -
    - - -

    True if characteristic is notifiable

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isNotifying: boolean -

    -
    -
    - - -

    Current status of notification for this characteristic.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isReadable: boolean -

    -
    -
    - - -

    True if characteristic is readable.

    -
    -
    -
    - - -
    - public - - - - - - -
    - - -

    True if characteristic is writable when writing with response.

    -
    -
    -
    - - -
    - public - - - - - - -
    - - -

    True if characteristic is writable when writing without response.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - serviceUUID: string -

    -
    -
    - - -

    Service UUID which owns this characteristic.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - uuid: string -

    -
    -
    - - - -
    -
    - - -
    - public - - - - - -
    -

    - - - value: string -

    -
    -
    - - -

    Current characteristic value in Base64 encoding, may be null when not read.

    -
    -
    -
    - - -
    -
    -

    Method Summary

    - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Methods
    - public - - - - - -
    -

    - - - monitor(listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription -

    -
    -
    - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - read(transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeWithResponse(valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeWithoutResponse(valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - - -
    -
    - - -
    -
    - - - - - - -

    Public Members

    - -
    -

    - public - - - - - - deviceID: string - - - - source - -

    - - - - -

    Device identifier which owns this characteristic.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isIndictable: boolean - - - - source - -

    - - - - -

    True if characteristic is indictable

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isNotifiable: boolean - - - - source - -

    - - - - -

    True if characteristic is notifiable

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isNotifying: boolean - - - - source - -

    - - - - -

    Current status of notification for this characteristic.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isReadable: boolean - - - - source - -

    - - - - -

    True if characteristic is readable.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isWritableWithResponse: boolean - - - - source - -

    - - - - -

    True if characteristic is writable when writing with response.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isWritableWithoutResponse: boolean - - - - source - -

    - - - - -

    True if characteristic is writable when writing without response.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - serviceUUID: string - - - - source - -

    - - - - -

    Service UUID which owns this characteristic.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - uuid: string - - - - source - -

    - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - value: string - - - - source - -

    - - - - -

    Current characteristic value in Base64 encoding, may be null when not read.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    Public Methods

    - -
    -

    - public - - - - - - monitor(listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription - - - - source - -

    - - - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    listenerfunction(error: ?Error, characteristic: ?Characteristic)

    callback which emits -this characteristic with modified value for each notification.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - read(transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    transactionIdstring

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits this characteristic. Latest value will be stored inside -returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeWithResponse(valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits this characteristic. Latest value of characteristic may -not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeWithoutResponse(valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - - - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits this characteristic. Latest value of characteristic may -not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Characteristic.js~NativeCharacteristic.html b/docs/class/react-native-ble-plx/src/Characteristic.js~NativeCharacteristic.html deleted file mode 100644 index 4a039753..00000000 --- a/docs/class/react-native-ble-plx/src/Characteristic.js~NativeCharacteristic.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - NativeCharacteristic | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    -
    - public - interface - - - - | source -
    - -
    -

    NativeCharacteristic

    - - - - - - -

    Direct Subclass:

    - - - -

    Direct Implemented:

    - - - - -

    Internal class describing Characteristic format which -is exchanged between native modules and react native.

    -
    - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Device.js~Device.html b/docs/class/react-native-ble-plx/src/Device.js~Device.html deleted file mode 100644 index 31b6b6d8..00000000 --- a/docs/class/react-native-ble-plx/src/Device.js~Device.html +++ /dev/null @@ -1,1986 +0,0 @@ - - - - - - Device | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    - - public - class - - - - | source -
    - -
    -

    Device

    - - - - - -

    Extends:

    react-native-ble-plx/src/Device.js~NativeDevice → Device
    - - - - - - - - - -

    Device object.

    -
    - - - - - - - - - -
    - - - - -

    Member Summary

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Members
    - public - - - - - -
    -

    - - - id: string -

    -
    -
    - - -

    Device identifier.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isConnectable: boolean -

    -
    -
    - - -

    Is Device connectable (iOS only), may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - manufacturerData: string -

    -
    -
    - - -

    Device Manufacturer Data in Base64 format, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - name: string -

    -
    -
    - - -

    Device name, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - overflowServiceUUIDs: string[] -

    -
    -
    - - -

    Overflow Service UUIDs (iOS only), may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - rssi: number -

    -
    -
    - - -

    Device Received Signal Strength Indication value, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - serviceData: {[service: string]} -

    -
    -
    - - -

    Data related to specific Service, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - serviceUUIDs: string[] -

    -
    -
    - - -

    UUIDs of advertised Services, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - solicitedServiceUUIDs: string[] -

    -
    -
    - - -

    Solicited Service UUIDs, may be null.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - txPowerLevel: number -

    -
    -
    - - -

    Transmitted power level, may be null.

    -
    -
    -
    - - -
    -
    -

    Method Summary

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Methods
    - public - - - - - -
    -

    - async - - cancelConnection(): Promise<Device> -

    -
    -
    - - -

    BleManager.cancelDeviceConnection with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - characteristicsForService(serviceUUID: string): Promise<Characteristic[]> -

    -
    -
    - - -

    BleManager.characteristicsForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - connect(options: ConnectionOptions): Promise<Device> -

    -
    -
    - - -

    BleManager.connectToDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - - -
    - - - -
    -
    - - -
    - public - - - - - -
    -

    - async - - isConnected(): Promise<boolean> -

    -
    -
    - - -

    BleManager.isDeviceConnected with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - monitorCharacteristicForService(serviceUUID: string, characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription -

    -
    -
    - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - onDisconnected(listener: function(error: ?Error, device: Device)): Subscription -

    -
    -
    - - -

    BleManager.onDeviceDisconnected with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - readCharacteristicForService(serviceUUID: string, characteristicUUID: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - services(): Promise<Service[]> -

    -
    -
    - - -

    BleManager.servicesForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithResponseForService(serviceUUID: string, characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithoutResponseForService(serviceUUID: string, characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - - -
    -
    - - -
    -
    - - - - - - -

    Public Members

    - -
    -

    - public - - - - - - id: string - - - - source - -

    - - - - -

    Device identifier.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isConnectable: boolean - - - - source - -

    - - - - -

    Is Device connectable (iOS only), may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - manufacturerData: string - - - - source - -

    - - - - -

    Device Manufacturer Data in Base64 format, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - name: string - - - - source - -

    - - - - -

    Device name, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - overflowServiceUUIDs: string[] - - - - source - -

    - - - - -

    Overflow Service UUIDs (iOS only), may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - rssi: number - - - - source - -

    - - - - -

    Device Received Signal Strength Indication value, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - serviceData: {[service: string]} - - - - source - -

    - - - - -

    Data related to specific Service, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - serviceUUIDs: string[] - - - - source - -

    - - - - -

    UUIDs of advertised Services, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - solicitedServiceUUIDs: string[] - - - - source - -

    - - - - -

    Solicited Service UUIDs, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - txPowerLevel: number - - - - source - -

    - - - - -

    Transmitted power level, may be null.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    Public Methods

    - -
    -

    - public - - - - async - - cancelConnection(): Promise<Device> - - - - source - -

    - - - - -

    BleManager.cancelDeviceConnection with partially filled arguments.

    -
    - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Returns closed Device when operation is successful.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - characteristicsForService(serviceUUID: string): Promise<Characteristic[]> - - - - source - -

    - - - - -

    BleManager.characteristicsForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    serviceUUIDstring

    Service UUID.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic[]>

    Promise which emits array of Characteristic objects which are -discovered for a Device in specified Service.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - connect(options: ConnectionOptions): Promise<Device> - - - - source - -

    - - - - -

    BleManager.connectToDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    optionsConnectionOptions
    • nullable: true

    Platform specific options for connection establishment. Not used currently.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Connected Device object if successful.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - discoverAllServicesAndCharacteristics(): Promise<Device> - - - - source - -

    - - - - - - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Device>

    Promise which emits Device object if all available services and -characteristics have been discovered.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - isConnected(): Promise<boolean> - - - - source - -

    - - - - -

    BleManager.isDeviceConnected with partially filled arguments.

    -
    - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<boolean>

    Promise which emits true if device is connected, and false otherwise.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - monitorCharacteristicForService(serviceUUID: string, characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription - - - - source - -

    - - - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    listenerfunction(error: ?Error, characteristic: ?Characteristic)

    callback which emits -Characteristic objects with modified value for each notification.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - onDisconnected(listener: function(error: ?Error, device: Device)): Subscription - - - - source - -

    - - - - -

    BleManager.onDeviceDisconnected with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    listenerfunction(error: ?Error, device: Device)

    callback returning error as a reason of disconnection -if available and Device object.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - readCharacteristicForService(serviceUUID: string, characteristicUUID: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of Characteristic will be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - services(): Promise<Service[]> - - - - source - -

    - - - - -

    BleManager.servicesForDevice with partially filled arguments.

    -
    - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Service[]>

    Promise which emits array of Service objects which are discovered by this -device.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithResponseForService(serviceUUID: string, characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithoutResponseForService(serviceUUID: string, characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - - - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    serviceUUIDstring

    Service UUID.

    -
    characteristicUUIDstring

    Characteristic UUID.

    -
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID paths. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Device.js~NativeDevice.html b/docs/class/react-native-ble-plx/src/Device.js~NativeDevice.html deleted file mode 100644 index 9cd41ddb..00000000 --- a/docs/class/react-native-ble-plx/src/Device.js~NativeDevice.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - NativeDevice | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    -
    - public - class - - - - | source -
    - -
    -

    NativeDevice

    - - - - - - -

    Direct Subclass:

    - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Service.js~NativeService.html b/docs/class/react-native-ble-plx/src/Service.js~NativeService.html deleted file mode 100644 index 5f4697e8..00000000 --- a/docs/class/react-native-ble-plx/src/Service.js~NativeService.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - NativeService | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    -
    - public - class - - - - | source -
    - -
    -

    NativeService

    - - - - - - -

    Direct Subclass:

    - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - diff --git a/docs/class/react-native-ble-plx/src/Service.js~Service.html b/docs/class/react-native-ble-plx/src/Service.js~Service.html deleted file mode 100644 index 305e4dfe..00000000 --- a/docs/class/react-native-ble-plx/src/Service.js~Service.html +++ /dev/null @@ -1,890 +0,0 @@ - - - - - - Service | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -
    - - public - class - - - - | source -
    - -
    -

    Service

    - - - - - -

    Extends:

    react-native-ble-plx/src/Service.js~NativeService → Service
    - - - - - - - - - -

    Service object.

    -
    - - - - - - - - - -
    - - - - -

    Member Summary

    - - - - - - - - - - - - - - - - - - - -
    Public Members
    - public - - - - - -
    -

    - - - deviceID: string -

    -
    -
    - - -

    Device ID who owns this Service.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - isPrimary: boolean -

    -
    -
    - - -

    True if service is primary.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - uuid: string -

    -
    -
    - - -

    Service UUID.

    -
    -
    -
    - - -
    -
    -

    Method Summary

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Public Methods
    - public - - - - - -
    -

    - async - - characteristics(): Promise<Characteristic[]> -

    -
    -
    - - -

    BleManager.characteristicsForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - monitorCharacteristic(characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription -

    -
    -
    - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - readCharacteristic(characteristicUUID: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithResponse(characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - async - - writeCharacteristicWithoutResponse(characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> -

    -
    -
    - - - -
    -
    - - -
    -
    - - - - - - -

    Public Members

    - -
    -

    - public - - - - - - deviceID: string - - - - source - -

    - - - - -

    Device ID who owns this Service.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - isPrimary: boolean - - - - source - -

    - - - - -

    True if service is primary.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - uuid: string - - - - source - -

    - - - - -

    Service UUID.

    -
    - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    -

    Public Methods

    - -
    -

    - public - - - - async - - characteristics(): Promise<Characteristic[]> - - - - source - -

    - - - - -

    BleManager.characteristicsForDevice with partially filled arguments.

    -
    - - - -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic[]>

    Promise which emits array of Characteristic objects which are -discovered for this service.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - - - monitorCharacteristic(characteristicUUID: string, listener: function(error: ?Error, characteristic: ?Characteristic), transactionId: string): Subscription - - - - source - -

    - - - - -

    BleManager.monitorCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    characteristicUUIDstring

    Characteristic UUID.

    -
    listenerfunction(error: ?Error, characteristic: ?Characteristic)

    callback which emits -Characteristic objects with modified value for each notification.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Subscription

    Subscription on which remove() function can be called to unsubscribe.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - readCharacteristic(characteristicUUID: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.readCharacteristicForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    characteristicUUIDstring

    Characteristic UUID.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID path. Latest value of Characteristic will be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithResponse(characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - -

    BleManager.writeCharacteristicWithResponseForDevice with partially filled arguments.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    characteristicUUIDstring

    Characteristic UUID.

    -
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID path. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -

    - public - - - - async - - writeCharacteristicWithoutResponse(characteristicUUID: string, valueBase64: string, transactionId: string): Promise<Characteristic> - - - - source - -

    - - - - - - - - -
    -

    Params:

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    characteristicUUIDstring

    Characteristic UUID.

    -
    valueBase64string

    Value in Base64 format.

    -
    transactionIdstring
    • nullable: true

    optional transactionId which can be used in cancelTransaction function.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    Promise<Characteristic>

    Promise which emits first Characteristic object matching specified -UUID path. Latest value of characteristic may not be stored inside returned object.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - diff --git a/docs/css/prettify-tomorrow.css b/docs/css/prettify-tomorrow.css deleted file mode 100644 index b6f92a78..00000000 --- a/docs/css/prettify-tomorrow.css +++ /dev/null @@ -1,132 +0,0 @@ -/* Tomorrow Theme */ -/* Original theme - https://github.com/chriskempson/tomorrow-theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #4d4d4c; } - -@media screen { - /* string content */ - .str { - color: #718c00; } - - /* a keyword */ - .kwd { - color: #8959a8; } - - /* a comment */ - .com { - color: #8e908c; } - - /* a type name */ - .typ { - color: #4271ae; } - - /* a literal value */ - .lit { - color: #f5871f; } - - /* punctuation */ - .pun { - color: #4d4d4c; } - - /* lisp open bracket */ - .opn { - color: #4d4d4c; } - - /* lisp close bracket */ - .clo { - color: #4d4d4c; } - - /* a markup tag name */ - .tag { - color: #c82829; } - - /* a markup attribute name */ - .atn { - color: #f5871f; } - - /* a markup attribute value */ - .atv { - color: #3e999f; } - - /* a declaration */ - .dec { - color: #f5871f; } - - /* a variable name */ - .var { - color: #c82829; } - - /* a function name */ - .fun { - color: #4271ae; } } -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #060; } - - .kwd { - color: #006; - font-weight: bold; } - - .com { - color: #600; - font-style: italic; } - - .typ { - color: #404; - font-weight: bold; } - - .lit { - color: #044; } - - .pun, .opn, .clo { - color: #440; } - - .tag { - color: #006; - font-weight: bold; } - - .atn { - color: #404; } - - .atv { - color: #060; } } -/* Style */ -/* -pre.prettyprint { - background: white; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 12px; - line-height: 1.5; - border: 1px solid #ccc; - padding: 10px; } -*/ - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; } - -/* IE indents via margin-left */ -li.L0, -li.L1, -li.L2, -li.L3, -li.L4, -li.L5, -li.L6, -li.L7, -li.L8, -li.L9 { - /* */ } - -/* Alternate shading for lines */ -li.L1, -li.L3, -li.L5, -li.L7, -li.L9 { - /* */ } diff --git a/docs/css/style.css b/docs/css/style.css deleted file mode 100644 index 5ad3785e..00000000 --- a/docs/css/style.css +++ /dev/null @@ -1,1024 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,700); -@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600,700); - -* { - margin: 0; - padding: 0; - text-decoration: none; -} - -html -{ - font-family: 'Source Sans Pro', 'Roboto', sans-serif; - overflow: auto; - /*font-size: 14px;*/ - /*color: #4d4e53;*/ - /*color: rgba(0, 0, 0, .68);*/ - color: #555; - background-color: #fff; -} - -a { - /*color: #0095dd;*/ - /*color:rgb(37, 138, 175);*/ - color: #039BE5; -} - -code a:hover { - text-decoration: underline; -} - -ul, ol { - padding-left: 20px; -} - -ul li { - list-style: disc; - margin: 4px 0; -} - -ol li { - margin: 4px 0; -} - -h1 { - margin-bottom: 10px; - font-size: 34px; - font-weight: 300; - border-bottom: solid 1px #ddd; -} - -h2 { - margin-top: 24px; - margin-bottom: 10px; - font-size: 20px; - border-bottom: solid 1px #ddd; - font-weight: 300; -} - -h3 { - position: relative; - font-size: 16px; - margin-bottom: 12px; - background-color: #E2E2E2; - padding: 4px; - font-weight: 300; -} - -del { - text-decoration: line-through; -} - -p { - margin-bottom: 15px; - line-height: 1.5; -} - -pre > code { - display: block; -} - -pre.prettyprint, pre > code { - padding: 4px; - margin: 1em 0; - background-color: #f5f5f5; - border-radius: 3px; -} - -pre.prettyprint > code { - margin: 0; -} - -p > code, -li > code { - padding: 0.2em 0.5em; - margin: 0; - font-size: 85%; - background-color: rgba(0,0,0,0.04); - border-radius: 3px; -} - -.import-path pre.prettyprint, -.import-path pre.prettyprint code { - margin: 0; - padding: 0; - border: none; - background: white; -} - -.layout-container { - /*display: flex;*/ - /*flex-direction: row;*/ - /*justify-content: flex-start;*/ - /*align-items: stretch;*/ -} - -.layout-container > header { - height: 40px; - line-height: 40px; - font-size: 16px; - padding: 0 10px; - margin: 0; - position: fixed; - width: 100%; - z-index: 1; - background-color: #fafafa; - top: 0; - border-bottom: solid 1px #ddd; -} -.layout-container > header > a{ - margin: 0 5px; - color: #444; -} - -.layout-container > header > a.repo-url-github { - font-size: 0; - display: inline-block; - width: 20px; - height: 38px; - background: url("../image/github.png") no-repeat center; - background-size: 20px; - vertical-align: top; -} - -.navigation { - position: fixed; - top: 0; - left: 0; - box-sizing: border-box; - width: 250px; - height: 100%; - padding-top: 40px; - padding-left: 15px; - padding-bottom: 2em; - margin-top:1em; - overflow-x: scroll; - box-shadow: rgba(255, 255, 255, 1) -1px 0 0 inset; - border-right: 1px solid #ddd; -} - -.navigation ul { - padding: 0; -} - -.navigation li { - list-style: none; - margin: 4px 0; - white-space: nowrap; -} - -.navigation li a { - color: #666; -} - -.navigation .nav-dir-path { - margin-top: 0.7em; - margin-bottom: 0.25em; - font-size: 0.8em; - color: #aaa; -} - -.kind-class, -.kind-interface, -.kind-function, -.kind-typedef, -.kind-variable, -.kind-external { - margin-left: 0.75em; - width: 1.2em; - height: 1.2em; - display: inline-block; - text-align: center; - border-radius: 0.2em; - margin-right: 0.2em; - font-weight: bold; -} - -.kind-class { - color: #009800; - background-color: #bfe5bf; -} - -.kind-interface { - color: #fbca04; - background-color: #fef2c0; -} - -.kind-function { - color: #6b0090; - background-color: #d6bdde; -} - -.kind-variable { - color: #eb6420; - background-color: #fad8c7; -} - -.kind-typedef { - color: #db001e; - background-color: #edbec3; -} - -.kind-external { - color: #0738c3; - background-color: #bbcbea; -} - -h1 .version, -h1 .url a { - font-size: 14px; - color: #aaa; -} - -.content { - margin-top: 40px; - margin-left: 250px; - padding: 10px 50px 10px 20px; -} - -.header-notice { - font-size: 14px; - color: #aaa; - margin: 0; -} - -.expression-extends .prettyprint { - margin-left: 10px; - background: white; -} - -.extends-chain { - border-bottom: 1px solid#ddd; - padding-bottom: 10px; - margin-bottom: 10px; -} - -.extends-chain span:nth-of-type(1) { - padding-left: 10px; -} - -.extends-chain > div { - margin: 5px 0; -} - -.description table { - font-size: 14px; - border-spacing: 0; - border: 0; - border-collapse: collapse; -} - -.description thead { - background: #999; - color: white; -} - -.description table td, -.description table th { - border: solid 1px #ddd; - padding: 4px; - font-weight: normal; -} - -.flat-list ul { - padding-left: 0; -} - -.flat-list li { - display: inline; - list-style: none; -} - -table.summary { - width: 100%; - margin: 10px 0; - border-spacing: 0; - border: 0; - border-collapse: collapse; -} - -table.summary thead { - background: #999; - color: white; -} - -table.summary td { - border: solid 1px #ddd; - padding: 4px 10px; -} - -table.summary tbody td:nth-child(1) { - text-align: right; - white-space: nowrap; - min-width: 64px; - vertical-align: top; -} - -table.summary tbody td:nth-child(2) { - width: 100%; - border-right: none; -} - -table.summary tbody td:nth-child(3) { - white-space: nowrap; - border-left: none; - vertical-align: top; -} - -table.summary td > div:nth-of-type(2) { - padding-top: 4px; - padding-left: 15px; -} - -table.summary td p { - margin-bottom: 0; -} - -.inherited-summary thead td { - padding-left: 2px; -} - -.inherited-summary thead a { - color: white; -} - -.inherited-summary .summary tbody { - display: none; -} - -.inherited-summary .summary .toggle { - padding: 0 4px; - font-size: 12px; - cursor: pointer; -} -.inherited-summary .summary .toggle.closed:before { - content: "▶"; -} -.inherited-summary .summary .toggle.opened:before { - content: "▼"; -} - -.member, .method { - margin-bottom: 24px; -} - -table.params { - width: 100%; - margin: 10px 0; - border-spacing: 0; - border: 0; - border-collapse: collapse; -} - -table.params thead { - background: #eee; - color: #aaa; -} - -table.params td { - padding: 4px; - border: solid 1px #ddd; -} - -table.params td p { - margin: 0; -} - -.content .detail > * { - margin: 15px 0; -} - -.content .detail > h3 { - color: black; -} - -.content .detail > div { - margin-left: 10px; -} - -.content .detail > .import-path { - margin-top: -8px; -} - -.content .detail + .detail { - margin-top: 30px; -} - -.content .detail .throw td:first-child { - padding-right: 10px; -} - -.content .detail h4 + :not(pre) { - padding-left: 0; - margin-left: 10px; -} - -.content .detail h4 + ul li { - list-style: none; -} - -.return-param * { - display: inline; -} - -.argument-params { - margin-bottom: 20px; -} - -.return-type { - padding-right: 10px; - font-weight: normal; -} - -.return-desc { - margin-left: 10px; - margin-top: 4px; -} - -.return-desc p { - margin: 0; -} - -.deprecated, .experimental, .instance-docs { - border-left: solid 5px orange; - padding-left: 4px; - margin: 4px 0; -} - -tr.listen p, -tr.throw p, -tr.emit p{ - margin-bottom: 10px; -} - -.version, .since { - color: #aaa; -} - -h3 .right-info { - position: absolute; - right: 4px; - font-size: 14px; -} - -.version + .since:before { - content: '| '; -} - -.see { - margin-top: 10px; -} - -.see h4 { - margin: 4px 0; -} - -.content .detail h4 + .example-doc { - margin: 6px 0; -} - -.example-caption { - position: relative; - bottom: -1px; - display: inline-block; - padding: 4px; - font-style: italic; - background-color: #f5f5f5; - font-weight: bold; - border-radius: 3px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} - -.example-caption + pre.source-code { - margin-top: 0; - border-top-left-radius: 0; -} - -footer, .file-footer { - text-align: right; - font-style: italic; - font-weight: 100; - font-size: 13px; - margin-right: 50px; - margin-left: 270px; - border-top: 1px solid #ddd; - padding-top: 30px; - margin-top: 20px; - padding-bottom: 10px; -} - -footer img { - width: 24px; - vertical-align: middle; - padding-left: 4px; - position: relative; - top: -3px; - opacity: 0.6; -} - -pre.source-code { - background: #f5f5f5; - padding: 4px; -} - -pre.raw-source-code > code { - padding: 0; - margin: 0; -} - -pre.source-code.line-number { - padding: 0; -} - -pre.source-code ol { - background: #eee; - padding-left: 40px; -} - -pre.source-code li { - background: white; - padding-left: 4px; - list-style: decimal; - margin: 0; -} - -pre.source-code.line-number li.active { - background: rgb(255, 255, 150); -} - -pre.source-code.line-number li.error-line { - background: #ffb8bf; -} - -table.files-summary { - width: 100%; - margin: 10px 0; - border-spacing: 0; - border: 0; - border-collapse: collapse; - text-align: right; -} - -table.files-summary tbody tr:hover { - background: #eee; -} - -table.files-summary td:first-child, -table.files-summary td:nth-of-type(2) { - text-align: left; -} - -table.files-summary[data-use-coverage="false"] td.coverage { - display: none; -} - -table.files-summary thead { - background: #999; - color: white; -} - -table.files-summary td { - border: solid 1px #ddd; - padding: 4px 10px; - vertical-align: top; -} - -table.files-summary td.identifiers > span { - display: block; - margin-top: 4px; -} -table.files-summary td.identifiers > span:first-child { - margin-top: 0; -} - -table.files-summary .coverage-count { - font-size: 12px; - color: #aaa; - display: inline-block; - min-width: 40px; -} - -.total-coverage-count { - position: relative; - bottom: 2px; - font-size: 12px; - color: #666; - font-weight: 500; - padding-left: 5px; -} - -table.test-summary thead { - background: #999; - color: white; -} - -table.test-summary thead .test-description { - width: 50%; -} - -table.test-summary { - width: 100%; - margin: 10px 0; - border-spacing: 0; - border: 0; - border-collapse: collapse; -} - -table.test-summary thead .test-count { - width: 3em; -} - -table.test-summary tbody tr:hover { - background-color: #eee; -} - -table.test-summary td { - border: solid 1px #ddd; - padding: 4px 10px; - vertical-align: top; -} - -table.test-summary td p { - margin: 0; -} - -table.test-summary tr.test-describe .toggle { - display: inline-block; - float: left; - margin-right: 4px; - cursor: pointer; - font-size: 0.8em; - padding-top: 0.25em; -} - -table.test-summary tr.test-describe .toggle.opened:before { - content: '▼'; -} - -table.test-summary tr.test-describe .toggle.closed:before { - content: '▶'; -} - -table.test-summary .test-target > span { - display: block; - margin-top: 4px; -} -table.test-summary .test-target > span:first-child { - margin-top: 0; -} - -.inner-link-active { - background: rgb(255, 255, 150); -} - -/* search box */ -.search-box { - position: absolute; - top: 10px; - right: 50px; - padding-right: 8px; - padding-bottom: 10px; - line-height: normal; - font-size: 12px; -} - -.search-box img { - width: 20px; - vertical-align: top; -} - -.search-input { - display: inline; - visibility: hidden; - width: 0; - padding: 2px; - height: 1.5em; - outline: none; - background: transparent; - border: 1px #0af; - border-style: none none solid none; - vertical-align: bottom; -} - -.search-input-edge { - display: none; - width: 1px; - height: 5px; - background-color: #0af; - vertical-align: bottom; -} - -.search-result { - position: absolute; - display: none; - height: 600px; - width: 100%; - padding: 0; - margin-top: 5px; - margin-left: 24px; - background: white; - box-shadow: 1px 1px 4px rgb(0,0,0); - white-space: nowrap; - overflow-y: scroll; -} - -.search-result-import-path { - color: #aaa; - font-size: 12px; -} - -.search-result li { - list-style: none; - padding: 2px 4px; -} - -.search-result li a { - display: block; -} - -.search-result li.selected { - background: #ddd; -} - -.search-result li.search-separator { - background: rgb(37, 138, 175); - color: white; -} - -.search-box.active .search-input { - visibility: visible; - transition: width 0.2s ease-out; - width: 300px; -} - -.search-box.active .search-input-edge { - display: inline-block; -} - -.github-markdown .manual-toc { - padding-left: 0; -} - -/** manual */ - -.manual-index .manual-cards { - display: flex; - flex-wrap: wrap; -} - -.manual-index .manual-card-wrap { - width: 280px; - padding: 10px 20px 10px 0; - box-sizing: border-box; -} - -.manual-index .manual-card-wrap > h1 { - margin: 0; - font-size: 1em; - font-weight: 600; - padding: 0.2em 0 0.2em 0.5em; - border-radius: 0.1em 0.1em 0 0; - border: none; -} - -.manual-index .manual-card-wrap > h1 span { - color: #555; -} - -.manual-index .manual-card { - height: 200px; - overflow: hidden; - border: solid 1px rgba(230, 230, 230, 0.84); - border-radius: 0 0 0.1em 0.1em; - padding: 8px; - position: relative; - border-top: none; -} - -.manual-index .manual-card > div { - transform: scale(0.4); - transform-origin: 0 0; - width: 250%; -} - -.manual-index .manual-card > a { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: rgba(210, 210, 210, 0.1); -} - -.manual-index .manual-card > a:hover { - background: none; -} - -.manual-index .manual-badge { - margin: 0; -} - -.manual-index .manual-user-index { - margin-bottom: 1em; - border-bottom: solid 1px #ddd; -} - -.manual-root .navigation { - padding-left: 4px; - margin-top: 4px; -} - -.navigation .manual-toc { - margin-top: -0.25em; -} - -.navigation .manual-toc-root > div { - padding-top: 1px; - padding-left: 0.25em; - padding-right: 0.75em; -} - -.github-markdown .manual-toc-title a { - color: inherit; -} - -.manual-breadcrumb-list { - font-size: 0.8em; - margin-bottom: 1em; -} - -.manual-toc-title a:hover { - color: #039BE5; -} - -.manual-toc li { - margin: 0.75em 0; - list-style-type: none; -} - -.navigation .manual-toc [class^="indent-h"] a { - color: #666; -} - -.navigation .manual-toc .indent-h1 a { - color: #555; - font-weight: 600; - display: block; -} - -.manual-toc .indent-h1 { - display: block; - margin: 1em 0 0 0.25em; - padding: 0.2em 0 0.2em 0.5em; - border-radius: 0.1em; -} -.manual-toc .indent-h2 { - display: none; - margin-left: 1.5em; -} -.manual-toc .indent-h3 { - display: none; - margin-left: 2.5em; -} -.manual-toc .indent-h4 { - display: none; - margin-left: 3.5em; -} -.manual-toc .indent-h5 { - display: none; - margin-left: 4.5em; -} - -.manual-color { - position: relative; -} - -.manual-color:after { - content: attr(data-section-count); - font-size: 0.5em; - opacity: 0.5; - position: absolute; - right: 0.5em; - top: 0.5em; -} - -.manual-color-overview, -.manual-color-design { - color: #db001e; - background-color: #edbec3; -} - -.manual-color-installation, -.manual-color-tutorial, -.manual-color-usage, -.manual-color-configuration, -.manual-color-advanced { - color: #009800; - background-color: #bfe5bf; -} - -.manual-color-example { - color: #eb6420; - background-color: #fad8c7; -} - -.manual-color-reference { - color: #6b0090; - background-color: #d6bdde; -} - -.manual-color-faq, -.manual-color-changelog { - color: #0738c3; - background-color: #bbcbea; -} - -.manual-nav li { - margin: 0.75em 0; -} - -/* github markdown */ -.github-markdown { - font-size: 16px; -} - -.github-markdown h1, -.github-markdown h2, -.github-markdown h3, -.github-markdown h4, -.github-markdown h5 { - margin-top: 1em; - margin-bottom: 16px; - font-weight: bold; - padding: 0; -} - -.github-markdown h1:nth-of-type(1) { - margin-top: 0; -} - -.github-markdown h1 { - font-size: 2em; - padding-bottom: 0.3em; -} - -.github-markdown h2 { - font-size: 1.75em; - padding-bottom: 0.3em; -} - -.github-markdown h3 { - font-size: 1.5em; - background-color: transparent; -} - -.github-markdown h4 { - font-size: 1.25em; -} - -.github-markdown h5 { - font-size: 1em; -} - -.github-markdown ul, .github-markdown ol { - padding-left: 2em; -} - -.github-markdown pre > code { - font-size: 0.85em; -} - -.github-markdown table { - margin-bottom: 1em; - border-collapse: collapse; - border-spacing: 0; -} - -.github-markdown table tr { - background-color: #fff; - border-top: 1px solid #ccc; -} - -.github-markdown table th, -.github-markdown table td { - padding: 6px 13px; - border: 1px solid #ddd; -} - -.github-markdown table tr:nth-child(2n) { - background-color: #f8f8f8; -} - -.github-markdown hr { - border-right: 0; - border-bottom: 1px solid #e5e5e5; - border-left: 0; - border-top: 0; -} - -/** badge(.svg) does not have border */ -.github-markdown img:not([src*=".svg"]) { - max-width: 100%; - box-shadow: 1px 1px 1px rgba(0,0,0,0.5); -} diff --git a/docs/dump.json b/docs/dump.json deleted file mode 100644 index 3eb86faa..00000000 --- a/docs/dump.json +++ /dev/null @@ -1,3602 +0,0 @@ -[ - { - "__docId__": 0, - "kind": "file", - "name": "react-native-ble-plx/index.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/index.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 1, - "kind": "file", - "name": "react-native-ble-plx/src/BleManager.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/src/BleManager.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 2, - "kind": "variable", - "name": "BleModule", - "memberof": "react-native-ble-plx/src/BleManager.js", - "static": true, - "longname": "react-native-ble-plx/src/BleManager.js~BleModule", - "access": null, - "export": false, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/BleManager.js", - "importStyle": null, - "description": null, - "lineNumber": 9, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 3, - "kind": "class", - "name": "BleManager", - "memberof": "react-native-ble-plx/src/BleManager.js", - "static": true, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager", - "access": null, - "export": true, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/BleManager.js", - "importStyle": "BleManager", - "description": "\nBleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with\n{@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be called \non its instance when user wants to deallocate all resources.", - "examples": [ - "const manager = new BleManager();\n// ... work with BLE manager ...\nmanager.destroy(); " - ], - "lineNumber": 25, - "unknown": [ - { - "tagName": "@class", - "tagValue": "BleManager" - } - ], - "interface": false - }, - { - "__docId__": 4, - "kind": "constructor", - "name": "constructor", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#constructor", - "access": null, - "description": null, - "lineNumber": 27, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "params": [] - }, - { - "__docId__": 5, - "kind": "member", - "name": "_eventEmitter", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#_eventEmitter", - "access": null, - "description": null, - "lineNumber": 29, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 6, - "kind": "member", - "name": "_uniqueId", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#_uniqueId", - "access": null, - "description": null, - "lineNumber": 30, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "number" - ] - } - }, - { - "__docId__": 7, - "kind": "method", - "name": "destroy", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#destroy", - "access": null, - "description": "Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx.", - "lineNumber": 38, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [] - }, - { - "__docId__": 8, - "kind": "method", - "name": "_nextUniqueID", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#_nextUniqueID", - "access": null, - "description": null, - "lineNumber": 42, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "params": [], - "return": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 9, - "kind": "member", - "name": "_uniqueId", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#_uniqueId", - "access": null, - "description": null, - "lineNumber": 43, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "number" - ] - } - }, - { - "__docId__": 10, - "kind": "method", - "name": "cancelTransaction", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction", - "access": null, - "description": "Cancels pending transaction.\n\nFew operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API \nentry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a \npromise or a callback which registers errors, `\"Cancelled\"` error will be emitted in that case.\n\nCancelling transaction which doesn't exist is ignored.", - "lineNumber": 63, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "Id of pending transactions." - } - ] - }, - { - "__docId__": 11, - "kind": "method", - "name": "state", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#state", - "access": null, - "description": "Current state of a manager.\n\nAvailable states:\n- `Unknown` - the current state of the manager is unknown; an update is imminent.\n- `Resetting` - the connection with the system service was momentarily lost; an update is imminent.\n- `Unsupported` - the platform does not support Bluetooth low energy.\n- `Unauthorized` - the app is not authorized to use Bluetooth low energy.\n- `PoweredOff` - Bluetooth is currently powered off.\n- `PoweredOn` - Bluetooth is currently powered on and available to use.", - "lineNumber": 85, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Promise which emits current state of BleManager." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits current state of BleManager." - } - }, - { - "__docId__": 12, - "kind": "method", - "name": "onStateChange", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange", - "access": null, - "description": "\nNotifies about state changes of a manager.", - "lineNumber": 101, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which remove() function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "function(newState: State)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "Callback which emits state changes of BLE Manager. \nLook at {@link state} for possible values." - }, - { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "optional": true, - "defaultValue": "false", - "defaultRaw": false, - "name": "emitCurrentState", - "description": "If true, current state will be emitted as well. Defaults to false." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which remove() function can be called to unsubscribe." - } - }, - { - "__docId__": 13, - "kind": "method", - "name": "startDeviceScan", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan", - "access": null, - "description": "Starts device scanning. \n\nWhen previous scan is in progress it will be stopped before executing this command.", - "lineNumber": 143, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": true, - "types": [ - "string[]" - ], - "spread": false, - "optional": false, - "name": "UUIDs", - "description": "Array of strings containing UUIDs of services which are registered in scanned devices. \nIf null is passed all available devices will be scanned." - }, - { - "nullable": true, - "types": [ - "ScanOptions" - ], - "spread": false, - "optional": false, - "name": "options", - "description": "Optional configuration for scanning operation. Scan option object contains two\noptional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more\nfrequently, `autoConnect` for Android - allows to connect to devices which are not in range." - }, - { - "nullable": null, - "types": [ - "function(error: ?Error, scannedDevice: ?Device)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "Function which will be called for every scanned \n{@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set \nto non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument \nis a scanned {@link Device}." - } - ] - }, - { - "__docId__": 14, - "kind": "member", - "name": "_scanEventSubscription", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#_scanEventSubscription", - "access": null, - "description": null, - "lineNumber": 148, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 15, - "kind": "method", - "name": "stopDeviceScan", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan", - "access": null, - "description": "\nStops device scan if in progress.", - "lineNumber": 158, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [] - }, - { - "__docId__": 16, - "kind": "method", - "name": "connectToDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice", - "access": null, - "description": "Connects to {@link Device} with provided ID.", - "lineNumber": 177, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Connected {@link Device} object if successful." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": true, - "types": [ - "ConnectionOptions" - ], - "spread": false, - "optional": false, - "name": "options", - "description": "Platform specific options for connection establishment. Not used currently." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Connected {@link Device} object if successful." - } - }, - { - "__docId__": 17, - "kind": "method", - "name": "cancelDeviceConnection", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection", - "access": null, - "description": "Disconnects from device if it's connected or cancels pending connection.", - "lineNumber": 190, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Returns closed {@link Device} when operation is successful." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier to be closed." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Returns closed {@link Device} when operation is successful." - } - }, - { - "__docId__": 18, - "kind": "method", - "name": "onDeviceDisconnected", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected", - "access": null, - "description": "Monitors if device was disconnected due to any errors or connection problems.", - "lineNumber": 205, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier to be monitored." - }, - { - "nullable": null, - "types": [ - "function(error: ?Error, device: Device)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback returning error as a reason of disconnection \nif available and {@link Device} object." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 19, - "kind": "method", - "name": "isDeviceConnected", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected", - "access": null, - "description": "Check connection state of a device.", - "lineNumber": 223, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits `true` if device is connected, and `false` otherwise." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits `true` if device is connected, and `false` otherwise." - } - }, - { - "__docId__": 20, - "kind": "method", - "name": "discoverAllServicesAndCharacteristicsForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice", - "access": null, - "description": "Discovers all services and characteristics for {@link Device}.", - "lineNumber": 238, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits {@link Device} object if all available services and \ncharacteristics have been discovered." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "identifier", - "description": "{@link Device} identifier." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits {@link Device} object if all available services and \ncharacteristics have been discovered." - } - }, - { - "__docId__": 21, - "kind": "method", - "name": "servicesForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice", - "access": null, - "description": "List of discovered services for device.", - "lineNumber": 254, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits array of {@link Service} objects which are discovered for a \n{@link Device}." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits array of {@link Service} objects which are discovered for a \n{@link Device}." - } - }, - { - "__docId__": 22, - "kind": "method", - "name": "characteristicsForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice", - "access": null, - "description": "List of discovered characteristics for given {@link Device} and {@link Service}.", - "lineNumber": 271, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits array of {@link Characteristic} objects which are \ndiscovered for a {@link Device} in specified {@link Service}." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits array of {@link Characteristic} objects which are \ndiscovered for a {@link Device} in specified {@link Service}." - } - }, - { - "__docId__": 23, - "kind": "method", - "name": "readCharacteristicForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice", - "access": null, - "description": "Read characteristic value.", - "lineNumber": 292, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of {@link Characteristic} will be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of {@link Characteristic} will be stored inside returned object." - } - }, - { - "__docId__": 24, - "kind": "method", - "name": "writeCharacteristicWithResponseForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice", - "access": null, - "description": "Write characteristic value with response.", - "lineNumber": 314, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "base64Value", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 25, - "kind": "method", - "name": "writeCharacteristicWithoutResponseForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice", - "access": null, - "description": "Write characteristic value without response.", - "lineNumber": 336, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "base64Value", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 26, - "kind": "method", - "name": "monitorCharacteristicForDevice", - "memberof": "react-native-ble-plx/src/BleManager.js~BleManager", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice", - "access": null, - "description": "Monitor value changes of a characteristic. If notifications are enabled they will be used\nin favour of indications.", - "lineNumber": 359, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "BleManager" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "deviceIdentifier", - "description": "{@link Device} identifier." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "function(error: ?Error, characteristic: ?Characteristic)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback which emits \n{@link Characteristic} objects with modified value for each notification." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 27, - "kind": "file", - "name": "react-native-ble-plx/src/Characteristic.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/src/Characteristic.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 28, - "kind": "class", - "name": "NativeCharacteristic", - "memberof": "react-native-ble-plx/src/Characteristic.js", - "static": true, - "longname": "react-native-ble-plx/src/Characteristic.js~NativeCharacteristic", - "access": "private", - "export": false, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Characteristic.js", - "importStyle": null, - "description": "Internal class describing Characteristic format which\nis exchanged between native modules and react native.", - "lineNumber": 13, - "unknown": [ - { - "tagName": "@class", - "tagValue": "NativeCharacteristic" - } - ], - "interface": false - }, - { - "__docId__": 29, - "kind": "class", - "name": "Characteristic", - "memberof": "react-native-ble-plx/src/Characteristic.js", - "static": true, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "access": null, - "export": true, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Characteristic.js", - "importStyle": "Characteristic", - "description": "Characteristic object.", - "lineNumber": 21, - "unknown": [ - { - "tagName": "@class", - "tagValue": "Characteristic" - } - ], - "interface": false, - "extends": [ - "NativeCharacteristic" - ] - }, - { - "__docId__": 30, - "kind": "constructor", - "name": "constructor", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#constructor", - "access": "private", - "description": "Private {@link Characteristic} constructor.", - "lineNumber": 32, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "Characteristic" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "NativeCharacteristic" - ], - "spread": false, - "optional": false, - "name": "props", - "description": "NativeCharacteristic properties to be copied." - }, - { - "nullable": null, - "types": [ - "BleManager" - ], - "spread": false, - "optional": false, - "name": "manager", - "description": "Current BleManager instance." - } - ] - }, - { - "__docId__": 31, - "kind": "member", - "name": "_manager", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#_manager", - "access": null, - "description": null, - "lineNumber": 34, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 32, - "kind": "member", - "name": "uuid", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#uuid", - "access": null, - "description": "{@link Characteristic} UUID.", - "lineNumber": 37, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 33, - "kind": "member", - "name": "serviceUUID", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#serviceUUID", - "access": null, - "description": "{@link Service} UUID which owns this characteristic.", - "lineNumber": 40, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 34, - "kind": "member", - "name": "deviceID", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#deviceID", - "access": null, - "description": "{@link Device} identifier which owns this characteristic.", - "lineNumber": 43, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 35, - "kind": "member", - "name": "isReadable", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isReadable", - "access": null, - "description": "True if characteristic is readable.", - "lineNumber": 46, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 36, - "kind": "member", - "name": "isWritableWithResponse", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isWritableWithResponse", - "access": null, - "description": "True if characteristic is writable when writing with response.", - "lineNumber": 49, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 37, - "kind": "member", - "name": "isWritableWithoutResponse", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isWritableWithoutResponse", - "access": null, - "description": "True if characteristic is writable when writing without response.", - "lineNumber": 52, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 38, - "kind": "member", - "name": "isNotifiable", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isNotifiable", - "access": null, - "description": "True if characteristic is notifiable", - "lineNumber": 55, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 39, - "kind": "member", - "name": "isNotifying", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isNotifying", - "access": null, - "description": "Current status of notification for this characteristic.", - "lineNumber": 58, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 40, - "kind": "member", - "name": "isIndictable", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#isIndictable", - "access": null, - "description": "True if characteristic is indictable", - "lineNumber": 61, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 41, - "kind": "member", - "name": "value", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#value", - "access": null, - "description": "Current characteristic value in Base64 encoding, may be `null` when not read.", - "lineNumber": 64, - "type": { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 42, - "kind": "method", - "name": "read", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#read", - "access": null, - "description": "{@link BleManager.readCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 76, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Promise which emits this characteristic. Latest value will be stored inside \nreturned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Characteristic" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits this characteristic. Latest value will be stored inside \nreturned object." - } - }, - { - "__docId__": 43, - "kind": "method", - "name": "writeWithResponse", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.", - "lineNumber": 90, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Promise which emits this characteristic. Latest value of characteristic may \nnot be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Characteristic" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits this characteristic. Latest value of characteristic may \nnot be stored inside returned object." - } - }, - { - "__docId__": 44, - "kind": "method", - "name": "writeWithoutResponse", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.", - "lineNumber": 104, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Promise which emits this characteristic. Latest value of characteristic may \nnot be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Characteristic" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits this characteristic. Latest value of characteristic may \nnot be stored inside returned object." - } - }, - { - "__docId__": 45, - "kind": "method", - "name": "monitor", - "memberof": "react-native-ble-plx/src/Characteristic.js~Characteristic", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor", - "access": null, - "description": "{@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 118, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "Characteristic" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "function(error: ?Error, characteristic: ?Characteristic)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback which emits \nthis characteristic with modified value for each notification." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 46, - "kind": "file", - "name": "react-native-ble-plx/src/Device.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/src/Device.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 47, - "kind": "class", - "name": "NativeDevice", - "memberof": "react-native-ble-plx/src/Device.js", - "static": true, - "longname": "react-native-ble-plx/src/Device.js~NativeDevice", - "access": "private", - "export": false, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Device.js", - "importStyle": null, - "description": "Internal class describing Device format which\nis exchanged between native modules and react native.", - "lineNumber": 15, - "unknown": [ - { - "tagName": "@class", - "tagValue": "NativeDevice" - } - ], - "interface": false - }, - { - "__docId__": 48, - "kind": "class", - "name": "Device", - "memberof": "react-native-ble-plx/src/Device.js", - "static": true, - "longname": "react-native-ble-plx/src/Device.js~Device", - "access": null, - "export": true, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Device.js", - "importStyle": "Device", - "description": "Device object.", - "lineNumber": 24, - "unknown": [ - { - "tagName": "@class", - "tagValue": "Device" - } - ], - "interface": false, - "extends": [ - "NativeDevice" - ] - }, - { - "__docId__": 49, - "kind": "constructor", - "name": "constructor", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#constructor", - "access": "private", - "description": "Private {@link Device} constructor.", - "lineNumber": 35, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "NativeDevice" - ], - "spread": false, - "optional": false, - "name": "props", - "description": "NativeDevice properties to be copied." - }, - { - "nullable": null, - "types": [ - "BleManager" - ], - "spread": false, - "optional": false, - "name": "manager", - "description": "Current BleManager instance." - } - ] - }, - { - "__docId__": 50, - "kind": "member", - "name": "_manager", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#_manager", - "access": null, - "description": null, - "lineNumber": 37, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 51, - "kind": "member", - "name": "id", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#id", - "access": null, - "description": "Device identifier.", - "lineNumber": 40, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 52, - "kind": "member", - "name": "name", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#name", - "access": null, - "description": "Device name, may be `null`.", - "lineNumber": 43, - "type": { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 53, - "kind": "member", - "name": "rssi", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#rssi", - "access": null, - "description": "Device Received Signal Strength Indication value, may be `null`.", - "lineNumber": 46, - "type": { - "nullable": true, - "types": [ - "number" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 54, - "kind": "member", - "name": "manufacturerData", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#manufacturerData", - "access": null, - "description": "Device Manufacturer Data in Base64 format, may be `null`.", - "lineNumber": 49, - "type": { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 55, - "kind": "member", - "name": "serviceUUIDs", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#serviceUUIDs", - "access": null, - "description": "UUIDs of advertised {@link Service}s, may be `null`.", - "lineNumber": 52, - "type": { - "nullable": true, - "types": [ - "string[]" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 56, - "kind": "member", - "name": "txPowerLevel", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#txPowerLevel", - "access": null, - "description": "Transmitted power level, may be `null`.", - "lineNumber": 55, - "type": { - "nullable": true, - "types": [ - "number" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 57, - "kind": "member", - "name": "solicitedServiceUUIDs", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#solicitedServiceUUIDs", - "access": null, - "description": "Solicited {@link Service} UUIDs, may be `null`.", - "lineNumber": 58, - "type": { - "nullable": true, - "types": [ - "string[]" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 58, - "kind": "member", - "name": "isConnectable", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#isConnectable", - "access": null, - "description": "Is Device connectable (iOS only), may be `null`.", - "lineNumber": 61, - "type": { - "nullable": true, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 59, - "kind": "member", - "name": "overflowServiceUUIDs", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#overflowServiceUUIDs", - "access": null, - "description": "Overflow {@link Service} UUIDs (iOS only), may be `null`.", - "lineNumber": 64, - "type": { - "nullable": true, - "types": [ - "string[]" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 60, - "kind": "member", - "name": "serviceData", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#serviceData", - "access": null, - "description": "Data related to specific {@link Service}, may be `null`.", - "lineNumber": 67, - "type": { - "nullable": true, - "types": [ - "{[service:string]:string}" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 61, - "kind": "method", - "name": "connect", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#connect", - "access": null, - "description": "{@link BleManager.connectToDevice} with partially filled arguments.", - "lineNumber": 78, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Connected {@link Device} object if successful.\n " - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": true, - "types": [ - "ConnectionOptions" - ], - "spread": false, - "optional": false, - "name": "options", - "description": "Platform specific options for connection establishment. Not used currently." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Connected {@link Device} object if successful." - } - }, - { - "__docId__": 62, - "kind": "method", - "name": "cancelConnection", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#cancelConnection", - "access": null, - "description": "{@link BleManager.cancelDeviceConnection} with partially filled arguments.", - "lineNumber": 89, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} Returns closed {@link Device} when operation is successful." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Returns closed {@link Device} when operation is successful." - } - }, - { - "__docId__": 63, - "kind": "method", - "name": "isConnected", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#isConnected", - "access": null, - "description": "{@link BleManager.isDeviceConnected} with partially filled arguments.", - "lineNumber": 100, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits `true` if device is connected, and `false` otherwise." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits `true` if device is connected, and `false` otherwise." - } - }, - { - "__docId__": 64, - "kind": "method", - "name": "onDisconnected", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#onDisconnected", - "access": null, - "description": "{@link BleManager.onDeviceDisconnected} with partially filled arguments.", - "lineNumber": 113, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "function(error: ?Error, device: Device)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback returning error as a reason of disconnection \nif available and {@link Device} object." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 65, - "kind": "method", - "name": "discoverAllServicesAndCharacteristics", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics", - "access": null, - "description": "{@link BleManager.discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments.", - "lineNumber": 125, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits {@link Device} object if all available services and \ncharacteristics have been discovered." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits {@link Device} object if all available services and \ncharacteristics have been discovered." - } - }, - { - "__docId__": 66, - "kind": "method", - "name": "services", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#services", - "access": null, - "description": "{@link BleManager.servicesForDevice} with partially filled arguments.", - "lineNumber": 137, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits array of {@link Service} objects which are discovered by this\ndevice." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits array of {@link Service} objects which are discovered by this\ndevice." - } - }, - { - "__docId__": 67, - "kind": "method", - "name": "characteristicsForService", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#characteristicsForService", - "access": null, - "description": "{@link BleManager.characteristicsForDevice} with partially filled arguments.", - "lineNumber": 150, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits array of {@link Characteristic} objects which are \ndiscovered for a {@link Device} in specified {@link Service}." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits array of {@link Characteristic} objects which are \ndiscovered for a {@link Device} in specified {@link Service}." - } - }, - { - "__docId__": 68, - "kind": "method", - "name": "readCharacteristicForService", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService", - "access": null, - "description": "{@link BleManager.readCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 165, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of {@link Characteristic} will be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of {@link Characteristic} will be stored inside returned object." - } - }, - { - "__docId__": 69, - "kind": "method", - "name": "writeCharacteristicWithResponseForService", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.", - "lineNumber": 181, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 70, - "kind": "method", - "name": "writeCharacteristicWithoutResponseForService", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.", - "lineNumber": 197, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID paths. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 71, - "kind": "method", - "name": "monitorCharacteristicForService", - "memberof": "react-native-ble-plx/src/Device.js~Device", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService", - "access": null, - "description": "{@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 213, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "serviceUUID", - "description": "{@link Service} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "function(error: ?Error, characteristic: ?Characteristic)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback which emits \n{@link Characteristic} objects with modified value for each notification." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 72, - "kind": "file", - "name": "react-native-ble-plx/src/Service.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/src/Service.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 73, - "kind": "class", - "name": "NativeService", - "memberof": "react-native-ble-plx/src/Service.js", - "static": true, - "longname": "react-native-ble-plx/src/Service.js~NativeService", - "access": "private", - "export": false, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Service.js", - "importStyle": null, - "description": "Internal class describing Service format which\nis exchanged between native modules and react native.", - "lineNumber": 14, - "unknown": [ - { - "tagName": "@class", - "tagValue": "NativeService" - } - ], - "interface": false - }, - { - "__docId__": 74, - "kind": "class", - "name": "Service", - "memberof": "react-native-ble-plx/src/Service.js", - "static": true, - "longname": "react-native-ble-plx/src/Service.js~Service", - "access": null, - "export": true, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Service.js", - "importStyle": "Service", - "description": "Service object.", - "lineNumber": 23, - "unknown": [ - { - "tagName": "@class", - "tagValue": "Service" - } - ], - "interface": false, - "extends": [ - "NativeService" - ] - }, - { - "__docId__": 75, - "kind": "constructor", - "name": "constructor", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#constructor", - "access": "private", - "description": "Private {@link Service} constructor.", - "lineNumber": 34, - "unknown": [ - { - "tagName": "@memberOf", - "tagValue": "Device" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "NativeService" - ], - "spread": false, - "optional": false, - "name": "props", - "description": "NativeService properties to be copied." - }, - { - "nullable": null, - "types": [ - "BleManager" - ], - "spread": false, - "optional": false, - "name": "manager", - "description": "Current BleManager instance." - } - ] - }, - { - "__docId__": 76, - "kind": "member", - "name": "_manager", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#_manager", - "access": null, - "description": null, - "lineNumber": 36, - "undocument": true, - "unknown": [ - { - "tagName": "@_undocument", - "tagValue": "" - } - ], - "type": { - "types": [ - "*" - ] - } - }, - { - "__docId__": 77, - "kind": "member", - "name": "uuid", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#uuid", - "access": null, - "description": "{@link Service} UUID.", - "lineNumber": 40, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 78, - "kind": "member", - "name": "deviceID", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#deviceID", - "access": null, - "description": "{@link Device} ID who owns this {@link Service}.", - "lineNumber": 43, - "type": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 79, - "kind": "member", - "name": "isPrimary", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#isPrimary", - "access": null, - "description": "True if service is primary.", - "lineNumber": 46, - "type": { - "nullable": null, - "types": [ - "boolean" - ], - "spread": false, - "description": null - } - }, - { - "__docId__": 80, - "kind": "method", - "name": "characteristics", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#characteristics", - "access": null, - "description": "{@link BleManager.characteristicsForDevice} with partially filled arguments.", - "lineNumber": 57, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits array of {@link Characteristic} objects which are \ndiscovered for this service." - }, - { - "tagName": "@memberOf", - "tagValue": "Service" - } - ], - "params": [], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits array of {@link Characteristic} objects which are \ndiscovered for this service." - } - }, - { - "__docId__": 81, - "kind": "method", - "name": "readCharacteristic", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#readCharacteristic", - "access": null, - "description": "{@link BleManager.readCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 71, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of {@link Characteristic} will be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Service" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of {@link Characteristic} will be stored inside returned object." - } - }, - { - "__docId__": 82, - "kind": "method", - "name": "writeCharacteristicWithResponse", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithResponseForDevice} with partially filled arguments.", - "lineNumber": 86, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Service" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 83, - "kind": "method", - "name": "writeCharacteristicWithoutResponse", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": true, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse", - "access": null, - "description": "{@link BleManager.writeCharacteristicWithoutResponseForDevice} with partially filled arguments.", - "lineNumber": 101, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Promise} - Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of characteristic may not be stored inside returned object." - }, - { - "tagName": "@memberOf", - "tagValue": "Service" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "valueBase64", - "description": "Value in Base64 format." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Promise" - ], - "spread": false, - "description": "Promise which emits first {@link Characteristic} object matching specified \nUUID path. Latest value of characteristic may not be stored inside returned object." - } - }, - { - "__docId__": 84, - "kind": "method", - "name": "monitorCharacteristic", - "memberof": "react-native-ble-plx/src/Service.js~Service", - "generator": false, - "async": false, - "static": false, - "longname": "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic", - "access": null, - "description": "{@link BleManager.monitorCharacteristicForDevice} with partially filled arguments.", - "lineNumber": 116, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{Subscription} Subscription on which `remove()` function can be called to unsubscribe." - }, - { - "tagName": "@memberOf", - "tagValue": "Service" - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "characteristicUUID", - "description": "{@link Characteristic} UUID." - }, - { - "nullable": null, - "types": [ - "function(error: ?Error, characteristic: ?Characteristic)" - ], - "spread": false, - "optional": false, - "name": "listener", - "description": "callback which emits \n{@link Characteristic} objects with modified value for each notification." - }, - { - "nullable": true, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "transactionId", - "description": "optional `transactionId` which can be used in {@link cancelTransaction} function." - } - ], - "return": { - "nullable": null, - "types": [ - "Subscription" - ], - "spread": false, - "description": "Subscription on which `remove()` function can be called to unsubscribe." - } - }, - { - "__docId__": 85, - "kind": "file", - "name": "react-native-ble-plx/src/Utils.js", - "content": "", - "static": true, - "longname": "react-native-ble-plx/src/Utils.js", - "access": null, - "description": null, - "lineNumber": 1 - }, - { - "__docId__": 86, - "kind": "function", - "name": "fullUUID", - "memberof": "react-native-ble-plx/src/Utils.js", - "generator": false, - "async": false, - "static": true, - "longname": "react-native-ble-plx/src/Utils.js~fullUUID", - "access": null, - "export": true, - "importPath": "react-native-ble-plx/react-native-ble-plx/src/Utils.js", - "importStyle": "{fullUUID}", - "description": "Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.", - "lineNumber": 11, - "unknown": [ - { - "tagName": "@returns", - "tagValue": "{string} 128bit lowercase UUID." - } - ], - "params": [ - { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "optional": false, - "name": "uuid", - "description": "16bit, 32bit or 128bit UUID." - } - ], - "return": { - "nullable": null, - "types": [ - "string" - ], - "spread": false, - "description": "128bit lowercase UUID." - } - }, - { - "__docId__": 88, - "kind": "external", - "name": "Infinity", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Infinity", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 89, - "kind": "external", - "name": "NaN", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~NaN", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 90, - "kind": "external", - "name": "undefined", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~undefined", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 91, - "kind": "external", - "name": "null", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~null", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 92, - "kind": "external", - "name": "Object", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Object", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 93, - "kind": "external", - "name": "object", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~object", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 94, - "kind": "external", - "name": "Function", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Function", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 95, - "kind": "external", - "name": "function", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~function", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 96, - "kind": "external", - "name": "Boolean", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Boolean", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 97, - "kind": "external", - "name": "boolean", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~boolean", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 98, - "kind": "external", - "name": "Symbol", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Symbol", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 99, - "kind": "external", - "name": "Error", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Error", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 100, - "kind": "external", - "name": "EvalError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~EvalError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 101, - "kind": "external", - "name": "InternalError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~InternalError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 102, - "kind": "external", - "name": "RangeError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~RangeError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 103, - "kind": "external", - "name": "ReferenceError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~ReferenceError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 104, - "kind": "external", - "name": "SyntaxError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~SyntaxError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 105, - "kind": "external", - "name": "TypeError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~TypeError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 106, - "kind": "external", - "name": "URIError", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~URIError", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 107, - "kind": "external", - "name": "Number", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Number", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 108, - "kind": "external", - "name": "number", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~number", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 109, - "kind": "external", - "name": "Date", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Date", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 110, - "kind": "external", - "name": "String", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~String", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 111, - "kind": "external", - "name": "string", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~string", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 112, - "kind": "external", - "name": "RegExp", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~RegExp", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 113, - "kind": "external", - "name": "Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 114, - "kind": "external", - "name": "Int8Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Int8Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 115, - "kind": "external", - "name": "Uint8Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 116, - "kind": "external", - "name": "Uint8ClampedArray", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 117, - "kind": "external", - "name": "Int16Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Int16Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 118, - "kind": "external", - "name": "Uint16Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint16Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 119, - "kind": "external", - "name": "Int32Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Int32Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 120, - "kind": "external", - "name": "Uint32Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Uint32Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 121, - "kind": "external", - "name": "Float32Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Float32Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 122, - "kind": "external", - "name": "Float64Array", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Float64Array", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 123, - "kind": "external", - "name": "Map", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Map", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 124, - "kind": "external", - "name": "Set", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Set", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 125, - "kind": "external", - "name": "WeakMap", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~WeakMap", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 126, - "kind": "external", - "name": "WeakSet", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~WeakSet", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 127, - "kind": "external", - "name": "ArrayBuffer", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 128, - "kind": "external", - "name": "DataView", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~DataView", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 129, - "kind": "external", - "name": "JSON", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~JSON", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 130, - "kind": "external", - "name": "Promise", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Promise", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 131, - "kind": "external", - "name": "Generator", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Generator", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 132, - "kind": "external", - "name": "GeneratorFunction", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 133, - "kind": "external", - "name": "Reflect", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Reflect", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 134, - "kind": "external", - "name": "Proxy", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy", - "memberof": "BuiltinExternal/ECMAScriptExternal.js", - "static": true, - "longname": "BuiltinExternal/ECMAScriptExternal.js~Proxy", - "access": null, - "description": "", - "lineNumber": 193, - "builtinExternal": true - }, - { - "__docId__": 136, - "kind": "external", - "name": "CanvasRenderingContext2D", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 137, - "kind": "external", - "name": "DocumentFragment", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~DocumentFragment", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 138, - "kind": "external", - "name": "Element", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Element", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~Element", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 139, - "kind": "external", - "name": "Event", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Event", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~Event", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 140, - "kind": "external", - "name": "Node", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/Node", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~Node", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 141, - "kind": "external", - "name": "NodeList", - "externalLink": "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~NodeList", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 142, - "kind": "external", - "name": "XMLHttpRequest", - "externalLink": "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest", - "access": null, - "description": "", - "builtinExternal": true - }, - { - "__docId__": 143, - "kind": "external", - "name": "AudioContext", - "externalLink": "https://developer.mozilla.org/en/docs/Web/API/AudioContext", - "memberof": "BuiltinExternal/WebAPIExternal.js", - "static": true, - "longname": "BuiltinExternal/WebAPIExternal.js~AudioContext", - "access": null, - "description": "", - "lineNumber": 34, - "builtinExternal": true - } -] \ No newline at end of file diff --git a/docs/file/react-native-ble-plx/doc/script/inherited-summary.js.html b/docs/file/react-native-ble-plx/doc/script/inherited-summary.js.html deleted file mode 100644 index 9c97e46b..00000000 --- a/docs/file/react-native-ble-plx/doc/script/inherited-summary.js.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/inherited-summary.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/inherited-summary.js

    -
    (function(){
    -  function toggle(ev) {
    -    var button = ev.target;
    -    var parent = ev.target.parentElement;
    -    while(parent) {
    -      if (parent.tagName === 'TABLE' && parent.classList.contains('summary')) break;
    -      parent = parent.parentElement;
    -    }
    -
    -    if (!parent) return;
    -
    -    var tbody = parent.querySelector('tbody');
    -    if (button.classList.contains('opened')) {
    -      button.classList.remove('opened');
    -      button.classList.add('closed');
    -      tbody.style.display = 'none';
    -    } else {
    -      button.classList.remove('closed');
    -      button.classList.add('opened');
    -      tbody.style.display = 'block';
    -    }
    -  }
    -
    -  var buttons = document.querySelectorAll('.inherited-summary thead .toggle');
    -  for (var i = 0; i < buttons.length; i++) {
    -    buttons[i].addEventListener('click', toggle);
    -  }
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/inner-link.js.html b/docs/file/react-native-ble-plx/doc/script/inner-link.js.html deleted file mode 100644 index 9bda86fa..00000000 --- a/docs/file/react-native-ble-plx/doc/script/inner-link.js.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/inner-link.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/inner-link.js

    -
    // inner link(#foo) can not correctly scroll, because page has fixed header,
    -// so, I manually scroll.
    -(function(){
    -  var matched = location.hash.match(/errorLines=([\d,]+)/);
    -  if (matched) return;
    -
    -  function adjust() {
    -    window.scrollBy(0, -55);
    -    var el = document.querySelector('.inner-link-active');
    -    if (el) el.classList.remove('inner-link-active');
    -
    -    // ``[ ] . ' " @`` are not valid in DOM id. so must escape these.
    -    var id = location.hash.replace(/([\[\].'"@$])/g, '\\$1');
    -    var el = document.querySelector(id);
    -    if (el) el.classList.add('inner-link-active');
    -  }
    -
    -  window.addEventListener('hashchange', adjust);
    -
    -  if (location.hash) {
    -    setTimeout(adjust, 0);
    -  }
    -})();
    -
    -(function(){
    -  var els = document.querySelectorAll('[href^="#"]');
    -  for (var i = 0; i < els.length; i++) {
    -    var el = els[i];
    -    el.href = location.href + el.getAttribute('href'); // because el.href is absolute path
    -  }
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/manual.js.html b/docs/file/react-native-ble-plx/doc/script/manual.js.html deleted file mode 100644 index 2ec2aa55..00000000 --- a/docs/file/react-native-ble-plx/doc/script/manual.js.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/manual.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/manual.js

    -
    (function(){
    -  var matched = location.pathname.match(/\/(manual\/.*?\/.*\.html)$/);
    -  if (!matched) return;
    -
    -  var currentName = matched[1];
    -  var cssClass = '.navigation .manual-toc li[data-link="' + currentName + '"]';
    -  var styleText = cssClass + '{ display: block; }\n';
    -  var style = document.createElement('style');
    -  style.textContent = styleText;
    -  document.querySelector('head').appendChild(style);
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/patch-for-local.js.html b/docs/file/react-native-ble-plx/doc/script/patch-for-local.js.html deleted file mode 100644 index 41849f3d..00000000 --- a/docs/file/react-native-ble-plx/doc/script/patch-for-local.js.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/patch-for-local.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/patch-for-local.js

    -
    (function(){
    -  if (location.protocol === 'file:') {
    -    var elms = document.querySelectorAll('a[href="./"]');
    -    for (var i = 0; i < elms.length; i++) {
    -      elms[i].href = './index.html';
    -    }
    -  }
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/prettify/prettify.js.html b/docs/file/react-native-ble-plx/doc/script/prettify/prettify.js.html deleted file mode 100644 index f64228dc..00000000 --- a/docs/file/react-native-ble-plx/doc/script/prettify/prettify.js.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/prettify/prettify.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/prettify/prettify.js

    -
    var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
    -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
    -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c<
    -f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&&
    -(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r=
    -{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length,
    -t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b===
    -"string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
    -l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
    -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
    -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
    -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
    -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
    -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value",
    -m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m=
    -a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue=
    -j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
    -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
    -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
    -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
    -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
    -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
    -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
    -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
    -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b=
    -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,
    -250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",
    -PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/pretty-print.js.html b/docs/file/react-native-ble-plx/doc/script/pretty-print.js.html deleted file mode 100644 index 37fa0d79..00000000 --- a/docs/file/react-native-ble-plx/doc/script/pretty-print.js.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/pretty-print.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/pretty-print.js

    -
    (function(){
    -  prettyPrint();
    -  var lines = document.querySelectorAll('.prettyprint.linenums li[class^="L"]');
    -  for (var i = 0; i < lines.length; i++) {
    -    lines[i].id = 'lineNumber' + (i + 1);
    -  }
    -
    -  var matched = location.hash.match(/errorLines=([\d,]+)/);
    -  if (matched) {
    -    var lines = matched[1].split(',');
    -    for (var i = 0; i < lines.length; i++) {
    -      var id = '#lineNumber' + lines[i];
    -      var el = document.querySelector(id);
    -      el.classList.add('error-line');
    -    }
    -    return;
    -  }
    -
    -  if (location.hash) {
    -    // ``[ ] . ' " @`` are not valid in DOM id. so must escape these.
    -    var id = location.hash.replace(/([\[\].'"@$])/g, '\\$1');
    -    var line = document.querySelector(id);
    -    if (line) line.classList.add('active');
    -  }
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/search.js.html b/docs/file/react-native-ble-plx/doc/script/search.js.html deleted file mode 100644 index 5af456d3..00000000 --- a/docs/file/react-native-ble-plx/doc/script/search.js.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/search.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/search.js

    -
    (function(){
    -  var searchIndex = window.esdocSearchIndex;
    -  var searchBox = document.querySelector('.search-box');
    -  var input = document.querySelector('.search-input');
    -  var result = document.querySelector('.search-result');
    -  var selectedIndex = -1;
    -  var prevText;
    -
    -  // active search box and focus when mouse enter on search box.
    -  searchBox.addEventListener('mouseenter', function(){
    -    searchBox.classList.add('active');
    -    input.focus();
    -  });
    -
    -  // search with text when key is upped.
    -  input.addEventListener('keyup', function(ev){
    -    var text = ev.target.value.toLowerCase();
    -    if (!text) {
    -      result.style.display = 'none';
    -      result.innerHTML = '';
    -      return;
    -    }
    -
    -    if (text === prevText) return;
    -    prevText = text;
    -
    -    var html = {class: [], method: [], member: [], function: [], variable: [], typedef: [], external: [], file: [], test: [], testFile: []};
    -    var len = searchIndex.length;
    -    var kind;
    -    for (var i = 0; i < len; i++) {
    -      var pair = searchIndex[i];
    -      if (pair[0].indexOf(text) !== -1) {
    -        kind = pair[3];
    -        html[kind].push('<li><a href="' + pair[1] + '">' + pair[2] + '</a></li>');
    -      }
    -    }
    -
    -    var innerHTML = '';
    -    for (kind in html) {
    -      var list = html[kind];
    -      if (!list.length) continue;
    -      innerHTML += '<li class="search-separator">' + kind + '</li>\n' + list.join('\n');
    -    }
    -    result.innerHTML = innerHTML;
    -    if (innerHTML) result.style.display = 'block';
    -    selectedIndex = -1;
    -  });
    -
    -  // down, up and enter key are pressed, select search result.
    -  input.addEventListener('keydown', function(ev){
    -    if (ev.keyCode === 40) {
    -      // arrow down
    -      var current = result.children[selectedIndex];
    -      var selected = result.children[selectedIndex + 1];
    -      if (selected && selected.classList.contains('search-separator')) {
    -        var selected = result.children[selectedIndex + 2];
    -        selectedIndex++;
    -      }
    -
    -      if (selected) {
    -        if (current) current.classList.remove('selected');
    -        selectedIndex++;
    -        selected.classList.add('selected');
    -      }
    -    } else if (ev.keyCode === 38) {
    -      // arrow up
    -      var current = result.children[selectedIndex];
    -      var selected = result.children[selectedIndex - 1];
    -      if (selected && selected.classList.contains('search-separator')) {
    -        var selected = result.children[selectedIndex - 2];
    -        selectedIndex--;
    -      }
    -
    -      if (selected) {
    -        if (current) current.classList.remove('selected');
    -        selectedIndex--;
    -        selected.classList.add('selected');
    -      }
    -    } else if (ev.keyCode === 13) {
    -      // enter
    -      var current = result.children[selectedIndex];
    -      if (current) {
    -        var link = current.querySelector('a');
    -        if (link) location.href = link.href;
    -      }
    -    } else {
    -      return;
    -    }
    -
    -    ev.preventDefault();
    -  });
    -
    -  // select search result when search result is mouse over.
    -  result.addEventListener('mousemove', function(ev){
    -    var current = result.children[selectedIndex];
    -    if (current) current.classList.remove('selected');
    -
    -    var li = ev.target;
    -    while (li) {
    -      if (li.nodeName === 'LI') break;
    -      li = li.parentElement;
    -    }
    -
    -    if (li) {
    -      selectedIndex = Array.prototype.indexOf.call(result.children, li);
    -      li.classList.add('selected');
    -    }
    -  });
    -
    -  // clear search result when body is clicked.
    -  document.body.addEventListener('click', function(ev){
    -    selectedIndex = -1;
    -    result.style.display = 'none';
    -    result.innerHTML = '';
    -  });
    -
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/search_index.js.html b/docs/file/react-native-ble-plx/doc/script/search_index.js.html deleted file mode 100644 index c37a570b..00000000 --- a/docs/file/react-native-ble-plx/doc/script/search_index.js.html +++ /dev/null @@ -1,758 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/search_index.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/search_index.js

    -
    window.esdocSearchIndex = [
    -  [
    -    "react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html",
    -    "<span>BleManager</span> <span class=\"search-result-import-path\">react-native-ble-plx/react-native-ble-plx/src/BleManager.js</span>",
    -    "class"
    -  ],
    -  [
    -    "react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html",
    -    "<span>Characteristic</span> <span class=\"search-result-import-path\">react-native-ble-plx/react-native-ble-plx/src/Characteristic.js</span>",
    -    "class"
    -  ],
    -  [
    -    "react-native-ble-plx/react-native-ble-plx/src/device.js~device",
    -    "class/react-native-ble-plx/src/Device.js~Device.html",
    -    "<span>Device</span> <span class=\"search-result-import-path\">react-native-ble-plx/react-native-ble-plx/src/Device.js</span>",
    -    "class"
    -  ],
    -  [
    -    "react-native-ble-plx/react-native-ble-plx/src/service.js~service",
    -    "class/react-native-ble-plx/src/Service.js~Service.html",
    -    "<span>Service</span> <span class=\"search-result-import-path\">react-native-ble-plx/react-native-ble-plx/src/Service.js</span>",
    -    "class"
    -  ],
    -  [
    -    "react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid",
    -    "function/index.html#static-function-fullUUID",
    -    "<span>fullUUID</span> <span class=\"search-result-import-path\">react-native-ble-plx/react-native-ble-plx/src/Utils.js</span>",
    -    "function"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~arraybuffer",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
    -    "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~boolean",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
    -    "BuiltinExternal/ECMAScriptExternal.js~Boolean",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~dataview",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView",
    -    "BuiltinExternal/ECMAScriptExternal.js~DataView",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~date",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date",
    -    "BuiltinExternal/ECMAScriptExternal.js~Date",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~error",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
    -    "BuiltinExternal/ECMAScriptExternal.js~Error",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~evalerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError",
    -    "BuiltinExternal/ECMAScriptExternal.js~EvalError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~float32array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Float32Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~float64array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Float64Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~function",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
    -    "BuiltinExternal/ECMAScriptExternal.js~Function",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~generator",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator",
    -    "BuiltinExternal/ECMAScriptExternal.js~Generator",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~generatorfunction",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction",
    -    "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~infinity",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity",
    -    "BuiltinExternal/ECMAScriptExternal.js~Infinity",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~int16array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Int16Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~int32array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Int32Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~int8array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Int8Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~internalerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError",
    -    "BuiltinExternal/ECMAScriptExternal.js~InternalError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~json",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON",
    -    "BuiltinExternal/ECMAScriptExternal.js~JSON",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~map",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
    -    "BuiltinExternal/ECMAScriptExternal.js~Map",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~nan",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN",
    -    "BuiltinExternal/ECMAScriptExternal.js~NaN",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~number",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
    -    "BuiltinExternal/ECMAScriptExternal.js~Number",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~object",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
    -    "BuiltinExternal/ECMAScriptExternal.js~Object",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~promise",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
    -    "BuiltinExternal/ECMAScriptExternal.js~Promise",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~proxy",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy",
    -    "BuiltinExternal/ECMAScriptExternal.js~Proxy",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~rangeerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError",
    -    "BuiltinExternal/ECMAScriptExternal.js~RangeError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~referenceerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError",
    -    "BuiltinExternal/ECMAScriptExternal.js~ReferenceError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~reflect",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
    -    "BuiltinExternal/ECMAScriptExternal.js~Reflect",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~regexp",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp",
    -    "BuiltinExternal/ECMAScriptExternal.js~RegExp",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~set",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
    -    "BuiltinExternal/ECMAScriptExternal.js~Set",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~string",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
    -    "BuiltinExternal/ECMAScriptExternal.js~String",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~symbol",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
    -    "BuiltinExternal/ECMAScriptExternal.js~Symbol",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~syntaxerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError",
    -    "BuiltinExternal/ECMAScriptExternal.js~SyntaxError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~typeerror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError",
    -    "BuiltinExternal/ECMAScriptExternal.js~TypeError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~urierror",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError",
    -    "BuiltinExternal/ECMAScriptExternal.js~URIError",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~uint16array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Uint16Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~uint32array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Uint32Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~uint8array",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array",
    -    "BuiltinExternal/ECMAScriptExternal.js~Uint8Array",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~uint8clampedarray",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray",
    -    "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~weakmap",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
    -    "BuiltinExternal/ECMAScriptExternal.js~WeakMap",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~weakset",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
    -    "BuiltinExternal/ECMAScriptExternal.js~WeakSet",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~boolean",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
    -    "BuiltinExternal/ECMAScriptExternal.js~boolean",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~function",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function",
    -    "BuiltinExternal/ECMAScriptExternal.js~function",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~null",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null",
    -    "BuiltinExternal/ECMAScriptExternal.js~null",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~number",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
    -    "BuiltinExternal/ECMAScriptExternal.js~number",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~object",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
    -    "BuiltinExternal/ECMAScriptExternal.js~object",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~string",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
    -    "BuiltinExternal/ECMAScriptExternal.js~string",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/ecmascriptexternal.js~undefined",
    -    "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined",
    -    "BuiltinExternal/ECMAScriptExternal.js~undefined",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~audiocontext",
    -    "https://developer.mozilla.org/en/docs/Web/API/AudioContext",
    -    "BuiltinExternal/WebAPIExternal.js~AudioContext",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~canvasrenderingcontext2d",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D",
    -    "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~documentfragment",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment",
    -    "BuiltinExternal/WebAPIExternal.js~DocumentFragment",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~element",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/Element",
    -    "BuiltinExternal/WebAPIExternal.js~Element",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~event",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/Event",
    -    "BuiltinExternal/WebAPIExternal.js~Event",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~node",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/Node",
    -    "BuiltinExternal/WebAPIExternal.js~Node",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~nodelist",
    -    "https://developer.mozilla.org/en-US/docs/Web/API/NodeList",
    -    "BuiltinExternal/WebAPIExternal.js~NodeList",
    -    "external"
    -  ],
    -  [
    -    "builtinexternal/webapiexternal.js~xmlhttprequest",
    -    "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest",
    -    "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest",
    -    "external"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/inherited-summary.js",
    -    "file/react-native-ble-plx/doc/script/inherited-summary.js.html",
    -    "react-native-ble-plx/doc/script/inherited-summary.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/inner-link.js",
    -    "file/react-native-ble-plx/doc/script/inner-link.js.html",
    -    "react-native-ble-plx/doc/script/inner-link.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/manual.js",
    -    "file/react-native-ble-plx/doc/script/manual.js.html",
    -    "react-native-ble-plx/doc/script/manual.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/patch-for-local.js",
    -    "file/react-native-ble-plx/doc/script/patch-for-local.js.html",
    -    "react-native-ble-plx/doc/script/patch-for-local.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/prettify/prettify.js",
    -    "file/react-native-ble-plx/doc/script/prettify/prettify.js.html",
    -    "react-native-ble-plx/doc/script/prettify/prettify.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/pretty-print.js",
    -    "file/react-native-ble-plx/doc/script/pretty-print.js.html",
    -    "react-native-ble-plx/doc/script/pretty-print.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/search.js",
    -    "file/react-native-ble-plx/doc/script/search.js.html",
    -    "react-native-ble-plx/doc/script/search.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/search_index.js",
    -    "file/react-native-ble-plx/doc/script/search_index.js.html",
    -    "react-native-ble-plx/doc/script/search_index.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/doc/script/test-summary.js",
    -    "file/react-native-ble-plx/doc/script/test-summary.js.html",
    -    "react-native-ble-plx/doc/script/test-summary.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/index.js",
    -    "file/react-native-ble-plx/index.js.html",
    -    "react-native-ble-plx/index.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js",
    -    "file/react-native-ble-plx/src/BleManager.js.html",
    -    "react-native-ble-plx/src/BleManager.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#constructor",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#constructor",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#destroy",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#destroy",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#onstatechange",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#state",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#state",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice",
    -    "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice",
    -    "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js",
    -    "file/react-native-ble-plx/src/Characteristic.js.html",
    -    "react-native-ble-plx/src/Characteristic.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js~characteristic#constructor",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-constructor-constructor",
    -    "react-native-ble-plx/src/Characteristic.js~Characteristic#constructor",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js~characteristic#monitor",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor",
    -    "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js~characteristic#read",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read",
    -    "react-native-ble-plx/src/Characteristic.js~Characteristic#read",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse",
    -    "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse",
    -    "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse",
    -    "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js",
    -    "file/react-native-ble-plx/src/Device.js.html",
    -    "react-native-ble-plx/src/Device.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#cancelconnection",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection",
    -    "react-native-ble-plx/src/Device.js~Device#cancelConnection",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#characteristicsforservice",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService",
    -    "react-native-ble-plx/src/Device.js~Device#characteristicsForService",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#connect",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect",
    -    "react-native-ble-plx/src/Device.js~Device#connect",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#constructor",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-constructor-constructor",
    -    "react-native-ble-plx/src/Device.js~Device#constructor",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics",
    -    "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#isconnected",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected",
    -    "react-native-ble-plx/src/Device.js~Device#isConnected",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService",
    -    "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#ondisconnected",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected",
    -    "react-native-ble-plx/src/Device.js~Device#onDisconnected",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#readcharacteristicforservice",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService",
    -    "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#services",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services",
    -    "react-native-ble-plx/src/Device.js~Device#services",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService",
    -    "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice",
    -    "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService",
    -    "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js",
    -    "file/react-native-ble-plx/src/Service.js.html",
    -    "react-native-ble-plx/src/Service.js",
    -    "file"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#characteristics",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics",
    -    "react-native-ble-plx/src/Service.js~Service#characteristics",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#constructor",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-constructor-constructor",
    -    "react-native-ble-plx/src/Service.js~Service#constructor",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#monitorcharacteristic",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic",
    -    "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#readcharacteristic",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic",
    -    "react-native-ble-plx/src/Service.js~Service#readCharacteristic",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse",
    -    "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse",
    -    "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse",
    -    "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse",
    -    "method"
    -  ],
    -  [
    -    "react-native-ble-plx/src/utils.js",
    -    "file/react-native-ble-plx/src/Utils.js.html",
    -    "react-native-ble-plx/src/Utils.js",
    -    "file"
    -  ]
    -]
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/doc/script/test-summary.js.html b/docs/file/react-native-ble-plx/doc/script/test-summary.js.html deleted file mode 100644 index af9ae384..00000000 --- a/docs/file/react-native-ble-plx/doc/script/test-summary.js.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - react-native-ble-plx/doc/script/test-summary.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/doc/script/test-summary.js

    -
    (function(){
    -  function toggle(ev) {
    -    var button = ev.target;
    -    var parent = ev.target.parentElement;
    -    while(parent) {
    -      if (parent.tagName === 'TR' && parent.classList.contains('test-describe')) break;
    -      parent = parent.parentElement;
    -    }
    -
    -    if (!parent) return;
    -
    -    var direction;
    -    if (button.classList.contains('opened')) {
    -      button.classList.remove('opened');
    -      button.classList.add('closed');
    -      direction = 'closed';
    -    } else {
    -      button.classList.remove('closed');
    -      button.classList.add('opened');
    -      direction = 'opened';
    -    }
    -
    -    var targetDepth = parseInt(parent.dataset.testDepth, 10) + 1;
    -    var nextElement = parent.nextElementSibling;
    -    while (nextElement) {
    -      var depth = parseInt(nextElement.dataset.testDepth, 10);
    -      if (depth >= targetDepth) {
    -        if (direction === 'opened') {
    -          if (depth === targetDepth)  nextElement.style.display = '';
    -        } else if (direction === 'closed') {
    -          nextElement.style.display = 'none';
    -          var innerButton = nextElement.querySelector('.toggle');
    -          if (innerButton && innerButton.classList.contains('opened')) {
    -            innerButton.classList.remove('opened');
    -            innerButton.classList.add('closed');
    -          }
    -        }
    -      } else {
    -        break;
    -      }
    -      nextElement = nextElement.nextElementSibling;
    -    }
    -  }
    -
    -  var buttons = document.querySelectorAll('.test-summary tr.test-describe .toggle');
    -  for (var i = 0; i < buttons.length; i++) {
    -    buttons[i].addEventListener('click', toggle);
    -  }
    -
    -  var topDescribes = document.querySelectorAll('.test-summary tr[data-test-depth="0"]');
    -  for (var i = 0; i < topDescribes.length; i++) {
    -    topDescribes[i].style.display = '';
    -  }
    -})();
    -
    - -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/index.js.html b/docs/file/react-native-ble-plx/index.js.html deleted file mode 100644 index c2b68940..00000000 --- a/docs/file/react-native-ble-plx/index.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/index.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/index.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/src/BleManager.js.html b/docs/file/react-native-ble-plx/src/BleManager.js.html deleted file mode 100644 index dfa3025f..00000000 --- a/docs/file/react-native-ble-plx/src/BleManager.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/src/BleManager.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/src/BleManager.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/src/Characteristic.js.html b/docs/file/react-native-ble-plx/src/Characteristic.js.html deleted file mode 100644 index 81ad9fd4..00000000 --- a/docs/file/react-native-ble-plx/src/Characteristic.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/src/Characteristic.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/src/Characteristic.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/src/Device.js.html b/docs/file/react-native-ble-plx/src/Device.js.html deleted file mode 100644 index 0f76e64c..00000000 --- a/docs/file/react-native-ble-plx/src/Device.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/src/Device.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/src/Device.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/src/Service.js.html b/docs/file/react-native-ble-plx/src/Service.js.html deleted file mode 100644 index f63eb358..00000000 --- a/docs/file/react-native-ble-plx/src/Service.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/src/Service.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/src/Service.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/file/react-native-ble-plx/src/Utils.js.html b/docs/file/react-native-ble-plx/src/Utils.js.html deleted file mode 100644 index a47abf1b..00000000 --- a/docs/file/react-native-ble-plx/src/Utils.js.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - react-native-ble-plx/src/Utils.js | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    react-native-ble-plx/src/Utils.js

    -
    
    -

    Sorry, this documentation does not provide source code.

    -
    - - - - - - - - - - - - diff --git a/docs/function/index.html b/docs/function/index.html deleted file mode 100644 index 1acea44a..00000000 --- a/docs/function/index.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - Function | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    Function

    -
    - - - - - - - - - -
    Static Public Summary
    - public - - - - - -
    -

    - - - fullUUID(uuid: string): string -

    -
    -
    - - -

    Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.

    -
    -
    -
    - - -
    -
    -

    Static Public

    - -
    -

    - public - - - - - - fullUUID(uuid: string): string - - - - source - -

    - - - - -

    Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.

    -
    - - - -
    -

    Params:

    - - - - - - - - - - - - - -
    NameTypeAttributeDescription
    uuidstring

    16bit, 32bit or 128bit UUID.

    -
    -
    -
    - -
    -

    Return:

    - - - - - - - -
    string

    128bit lowercase UUID.

    -
    -
    -
    -
    - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - diff --git a/docs/identifiers.html b/docs/identifiers.html deleted file mode 100644 index 7ef7d90b..00000000 --- a/docs/identifiers.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - Index | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    References

    -

    Class Summary

    - - - - - - - - - - - - - - - - - - - - - - - - -
    Static Public Class Summary
    - public - - - - - -
    -

    - - - BleManager -

    -
    -
    - - -

    BleManager is an entry point for react-native-ble-plx library.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - Characteristic -

    -
    -
    - - -

    Characteristic object.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - Device -

    -
    -
    - - -

    Device object.

    -
    -
    -
    - - -
    - public - - - - - -
    -

    - - - Service -

    -
    -
    - - -

    Service object.

    -
    -
    -
    - - -
    -
    - -

    Function Summary

    - - - - - - - - - -
    Static Public Function Summary
    - public - - - - - -
    -

    - - - fullUUID(uuid: string): string -

    -
    -
    - - -

    Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.

    -
    -
    -
    - - -
    -
    - - - -
    - - - - - - - - - - - - diff --git a/docs/image/badge.svg b/docs/image/badge.svg deleted file mode 100644 index b18426b8..00000000 --- a/docs/image/badge.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - document - document - @ratio@ - @ratio@ - - diff --git a/docs/image/esdoc-logo-mini-black.png b/docs/image/esdoc-logo-mini-black.png deleted file mode 100644 index 5d5f9a25..00000000 Binary files a/docs/image/esdoc-logo-mini-black.png and /dev/null differ diff --git a/docs/image/esdoc-logo-mini.png b/docs/image/esdoc-logo-mini.png deleted file mode 100644 index 76ba5b7d..00000000 Binary files a/docs/image/esdoc-logo-mini.png and /dev/null differ diff --git a/docs/image/github.png b/docs/image/github.png deleted file mode 100644 index ea6ff545..00000000 Binary files a/docs/image/github.png and /dev/null differ diff --git a/docs/image/manual-badge.svg b/docs/image/manual-badge.svg deleted file mode 100644 index 54224bc9..00000000 --- a/docs/image/manual-badge.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - manual - manual - @value@ - @value@ - - diff --git a/docs/image/search.png b/docs/image/search.png deleted file mode 100644 index f5d84b69..00000000 Binary files a/docs/image/search.png and /dev/null differ diff --git a/docs/index.html b/docs/index.html index d1d444ea..79544615 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,136 +1,6260 @@ - + - - - API Document - - - - - - + + react-native-ble-plx 0.4.0 | Documentation + + + + - - -
    - Home - - Reference - Source - - Repository - -
    + +
    +
    +
    +
    +

    react-native-ble-plx

    +
    0.4.0
    + +
    + +
    + +
    +
    +
    + + +
    - +

    + Introduction +

    -

    Getting started

    + +

    + react-native-ble-plx +

    This guide is an introduction to BLE stack and APIs exported by this library. All examples will be based on CC2541 SensorTag.

    -

    Creating BLE Manager

    +

    Creating BLE Manager

    First step is to create BleManager instance which is an entry point to all available APIs. Make sure to create it after application started its execution. For example we can do it in -Component's constructor:

    -
    constructor() {
    -    super();
    -    this.manager = new BleManager();
    +Component's constructor:

    +
    constructor() {
    +    super();
    +    this.manager = new BleManager();
         ...
    -}
    -
    -

    Only one instance of BleManager is allowed. When you don't need any BLE functionality you +}

    +

    Only one instance of BleManager is allowed. When you don't need any BLE functionality you can destroy created instance by calling this.manager.destroy() function. You can then recreate BleManager later on as we did above.

    -

    Waiting for Powered On state

    +

    Waiting for Powered On state

    When iOS application launches BLE stack is not immediately available and we need to check its status. To detect current state and following state changes we can use onStateChange() function:

    -
    componentWillMount() {
    -    const subscription = this.manager.onStateChange((state) => {
    -        if (state === 'PoweredOn') {
    -            this.scanAndConnect();
    +
    componentWillMount() {
    +    const subscription = this.manager.onStateChange((state) => {
    +        if (state === 'PoweredOn') {
    +            this.scanAndConnect();
                 subscription.remove();
             }
    -    }, true);
    -}
    -
    -

    Scanning devices

    + }, true); +}
    +

    Scanning devices

    Devices needs to be scanned first to be able to connect to them. There is a simple function which allows only one callback to be registered to handle detected devices:

    -
    scanAndConnect() {
    -    this.manager.startDeviceScan(null, null, (error, device) => {
    -        if (error) {
    -            // Handle error (scanning will be stopped automatically)
    -            return
    +
    scanAndConnect() {
    +    this.manager.startDeviceScan(null, null, (error, device) => {
    +        if (error) {
    +            // Handle error (scanning will be stopped automatically)
    +            return
             }
     
    -        // Check if it is a device you are looking for based on advertisement data
    -        // or other criteria.
    -        if (device.name === 'TI BLE Sensor Tag' || 
    -            device.name === 'SensorTag') {
    +        // Check if it is a device you are looking for based on advertisement data
    +        // or other criteria.
    +        if (device.name === 'TI BLE Sensor Tag' || 
    +            device.name === 'SensorTag') {
    +            
    +            // Stop scanning as it's not necessary if you are scanning for one device.
    +            this.manager.stopDeviceScan();
     
    -            // Stop scanning as it's not necessary if you are scanning for one device.
    -            this.manager.stopDeviceScan();
    -
    -            // Proceed with connection.
    +            // Proceed with connection.
             }
         });
    -}
    -
    -

    It is worth to note that scanning function may emit one device multiple times. However -when device is connected it won't broadcast and needs to be disconnected from central +}

    +

    It is worth to note that scanning function may emit one device multiple times. However +when device is connected it won't broadcast and needs to be disconnected from central to be scanned again. Only one scanning listener can be registered.

    -

    Connecting and discovering services and characteristics

    -

    Once device is scanned it is in disconnected state. We need to connect to it and discover +

    Connecting and discovering services and characteristics

    +

    Once device is scanned it is in disconnected state. We need to connect to it and discover all services and characteristics it contains. Services may be understood as containers grouping characteristics based on their meaning. Characteristic is a container for a value which can be read, written and monitored based on available capabilities. For example connection may look like this:

    -
    device.connect()
    -    .then((device) => {
    -        return device.discoverAllServicesAndCharacteristics()
    +
    device.connect()
    +    .then((device) => {
    +        return device.discoverAllServicesAndCharacteristics()
         })
    -    .then((device) => {
    -       // Do work on device with services and characteristics
    +    .then((device) => {
    +       // Do work on device with services and characteristics
         })
    -    .catch((error) => {
    -        // Handle errors
    -    });
    -
    + .catch((error) => { + // Handle errors + });

    Discovery of services and characteristics is required to be executed only once. Additionally it can be a long process depending on number of characteristics and services available.

    -

    Read, write and monitor values

    -

    After successful discovery of services you can call readCharacteristicForDevice(), -writeCharacteristicWithResponseForDevice(), monitorCharacteristicForDevice() and -other functions which are described in detail in documentation.

    +

    Read, write and monitor values

    +

    After successful discovery of services you can call

    + +

    and other functions which are described in detail in documentation.

    + + +
    + + + +
    + +

    + Main Classes +

    + + +

    Classes described below are main building blocks for your BLE support. They +are presented in order which aligns them with usage.

    + + +
    + + + +
    + + +
    + +

    + BleManager +

    + + +
    + + +

    BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with +Device instances. It should be initialized only once with new keyword and method +destroy() should be called on its instance when user wants to deallocate all resources.

    + + +
    new BleManager()
    + + + + + + + + + + + + + + + + + + + +
    Example
    + + +
    const manager = new BleManager();
    +// ... work with BLE manager ...
    +manager.destroy();
    + + + + + + +
    Instance Members
    +
    + +
    +
    +
    + + constructor() +
    +
    + +
    + +
    +
    +
    + + destroy() +
    +
    + +
    + +
    +
    +
    + + cancelTransaction(transactionId) +
    +
    + +
    + +
    +
    +
    + + state() +
    +
    + +
    + +
    +
    +
    + + onStateChange(listener, emitCurrentState) +
    +
    + +
    + +
    +
    +
    + + startDeviceScan(UUIDs, options, listener) +
    +
    + +
    + +
    +
    +
    + + stopDeviceScan() +
    +
    + +
    + +
    +
    +
    + + connectToDevice(deviceIdentifier, options) +
    +
    + +
    + +
    +
    +
    + + cancelDeviceConnection(deviceIdentifier) +
    +
    + +
    + +
    +
    +
    + + onDeviceDisconnected(deviceIdentifier, listener) +
    +
    + +
    + +
    +
    +
    + + isDeviceConnected(deviceIdentifier) +
    +
    + +
    + +
    +
    +
    + + discoverAllServicesAndCharacteristicsForDevice(deviceIdentifier) +
    +
    + +
    + +
    +
    +
    + + servicesForDevice(deviceIdentifier) +
    +
    + +
    + +
    +
    +
    + + characteristicsForDevice(deviceIdentifier, serviceUUID) +
    +
    + +
    + +
    +
    +
    + + readCharacteristicForDevice(deviceIdentifier, serviceUUID, characteristicUUID, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithResponseForDevice(deviceIdentifier, serviceUUID, characteristicUUID, base64Value, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithoutResponseForDevice(deviceIdentifier, serviceUUID, characteristicUUID, base64Value, transactionId) +
    +
    + +
    + +
    +
    +
    + + monitorCharacteristicForDevice(deviceIdentifier, serviceUUID, characteristicUUID, listener, transactionId) +
    +
    + +
    + +
    + + + + +
    + + + + +
    + + +
    + +

    + Device +

    + + +
    + + +

    Device instance which can be retrieved only by calling +bleManager.startDeviceScan().

    + + +
    new Device(nativeDevice: NativeDevice, manager: BleManager)
    + + + + + + + + + + + +
    Parameters
    +
    + +
    +
    + nativeDevice (NativeDevice) + +
    + +
    + +
    +
    + manager (BleManager) + +
    + +
    + +
    + + + + + + + + + + + + + +
    Instance Members
    +
    + +
    +
    +
    + + id +
    +
    + +
    + +
    +
    +
    + + name +
    +
    + +
    + +
    +
    +
    + + rssi +
    +
    + +
    + +
    +
    +
    + + manufacturerData +
    +
    + +
    + +
    +
    +
    + + serviceData +
    +
    + +
    + +
    +
    +
    + + serviceUUIDs +
    +
    + +
    + +
    +
    +
    + + txPowerLevel +
    +
    + +
    + +
    +
    +
    + + solicitedServiceUUIDs +
    +
    + +
    + +
    +
    +
    + + isConnectable +
    +
    + +
    + +
    +
    +
    + + overflowServiceUUIDs +
    +
    + +
    + +
    +
    +
    + + connect(options) +
    +
    + +
    + +
    +
    +
    + + cancelConnection() +
    +
    + +
    + +
    +
    +
    + + isConnected() +
    +
    + +
    + +
    +
    +
    + + onDisconnected(listener) +
    +
    + +
    + +
    +
    +
    + + discoverAllServicesAndCharacteristics() +
    +
    + +
    + +
    +
    +
    + + services() +
    +
    + +
    + +
    +
    +
    + + characteristicsForService(serviceUUID) +
    +
    + +
    + +
    +
    +
    + + readCharacteristicForService(serviceUUID, characteristicUUID, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithResponseForService(serviceUUID, characteristicUUID, valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithoutResponseForService(serviceUUID, characteristicUUID, valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + monitorCharacteristicForService(serviceUUID, characteristicUUID, listener, transactionId) +
    +
    + +
    + +
    + + + + +
    + + + + +
    + + +
    + +

    + Service +

    + + +
    + + +

    Service object.

    + + +
    new Service(nativeService: NativeService, manager: BleManager)
    + + + + + + + + + + + +
    Parameters
    +
    + +
    +
    + nativeService (NativeService) + +
    + +
    + +
    +
    + manager (BleManager) + +
    + +
    + +
    + + + + + + + + + + + + + +
    Instance Members
    +
    + +
    +
    +
    + + uuid +
    +
    + +
    + +
    +
    +
    + + deviceID +
    +
    + +
    + +
    +
    +
    + + isPrimary +
    +
    + +
    + +
    +
    +
    + + characteristics() +
    +
    + +
    + +
    +
    +
    + + readCharacteristic(characteristicUUID, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithResponse(characteristicUUID, valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeCharacteristicWithoutResponse(characteristicUUID, valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + monitorCharacteristic(characteristicUUID, listener, transactionId) +
    +
    + +
    + +
    + + + + +
    + + + + +
    + + +
    + +

    + Characteristic +

    + + +
    + + +

    Characteristic object.

    + + +
    new Characteristic(nativeCharacteristic: NativeCharacteristic, manager: BleManager)
    + + + + + + + + + + + +
    Parameters
    +
    + +
    +
    + nativeCharacteristic (NativeCharacteristic) + +
    + +
    + +
    +
    + manager (BleManager) + +
    + +
    + +
    + + + + + + + + + + + + + +
    Instance Members
    +
    + +
    +
    +
    + + uuid +
    +
    + +
    + +
    +
    +
    + + serviceUUID +
    +
    + +
    + +
    +
    +
    + + deviceID +
    +
    + +
    + +
    +
    +
    + + isReadable +
    +
    + +
    + +
    +
    +
    + + isWritableWithResponse +
    +
    + +
    + +
    +
    +
    + + isWritableWithoutResponse +
    +
    + +
    + +
    +
    +
    + + isNotifiable +
    +
    + +
    + +
    +
    +
    + + isNotifying +
    +
    + +
    + +
    +
    +
    + + isIndictable +
    +
    + +
    + +
    +
    +
    + + value +
    +
    + +
    + +
    +
    +
    + + read(transactionId) +
    +
    + +
    + +
    +
    +
    + + writeWithResponse(valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + writeWithoutResponse(valueBase64, transactionId) +
    +
    + +
    + +
    +
    +
    + + monitor(listener, transactionId) +
    +
    + +
    + +
    + + + + +
    + + + + +
    + +

    + Utils +

    + + +

    Utility functions and classes.

    + + +
    +
    + + + +
    + + +
    + +

    + fullUUID +

    + + +
    + + +

    Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.

    + + +
    fullUUID(uuid: UUID): UUID
    + + + + + + + + + + + +
    Parameters
    +
    + +
    +
    + uuid (UUID) + 16bit, 32bit or 128bit UUID. + +
    + +
    + +
    + + + + + + +
    Returns
    + UUID: + 128bit lowercase UUID. + + + + + + + + + + + + + + +
    + + + + +
    + +

    + Flow Types +

    + + +

    All Flow aliases and Flow types used in this library.

    + + +
    +
    + + + +
    + + +
    + +

    + State +

    + + +
    + + +

    Device Bluetooth Low Energy state. It's keys are used to check #BleManager#state values +received by BleManager

    + + +
    State
    + + + + + + + + + + + + + + + + + + + + + +
    Static Members
    +
    + +
    +
    +
    + + Unknown +
    +
    + +
    + +
    +
    +
    + + Resetting +
    +
    + +
    + +
    +
    +
    + + Unsupported +
    +
    + +
    + +
    +
    +
    + + Unauthorized +
    +
    + +
    + +
    +
    +
    + + PoweredOff +
    +
    + +
    + +
    +
    +
    + + PoweredOn +
    +
    + +
    + +
    + + + + + + +
    + + + + +
    + + +
    + +

    + ScanOptions +

    + + +
    + + +

    Options which can be passed to scanning function

    + + +
    ScanOptions
    + + + + + + + + + + + + + +
    Properties
    +
    + +
    + allowDuplicates (boolean?) + + +
    + +
    + autoConnect (boolean?) + + +
    + +
    + + + + + + + + + + + +
    Instance Members
    +
    + +
    +
    +
    + + allowDuplicates +
    +
    + +
    + +
    +
    +
    + + autoConnect +
    +
    + +
    + +
    + + + + +
    + + + + +
    + + +
    + +

    + ConnectionOptions +

    + + +
    + + +

    Connection specific options to be passed before connection happen. [Not used]

    + + +
    ConnectionOptions
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + +
    + +

    + DeviceId +

    + + +
    + + +

    Bluetooth device id.

    + + +
    DeviceId
    + +

    + Type: + string +

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + +
    + +

    + UUID +

    + + +
    + + +

    Bluetooth UUID

    + + +
    UUID
    + +

    + Type: + string +

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + +
    + +

    + TransactionId +

    + + +
    + + +

    Transaction identifier

    + + +
    TransactionId
    + +

    + Type: + string +

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + +
    + +

    + Subscription +

    + + +
    + + +

    Subscription

    + + +
    Subscription
    + + + + + + + + + + + + + +
    Properties
    +
    + +
    + remove (function (): void) + + +
    + +
    + + + + + + + + + + + + + +
    + + + + +
    + + +
    + +

    + Base64 +

    + + +
    + + +

    Base64 value

    + + +
    Base64
    + +

    + Type: + string +

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    + + diff --git a/docs/package.json b/docs/package.json deleted file mode 100644 index 835e63fe..00000000 --- a/docs/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "react-native-ble-plx", - "version": "0.4.0", - "description": "React Native Bluetooth Low Energy library", - "main": "index.js", - "directories": { - "example": "examples" - }, - "scripts": { - "postinstall": "bash build_ios_frameworks.sh", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Polidea/react-native-ble-plx.git" - }, - "devDependencies": { - "react": "15.4.2", - "react-native": "0.40.0" - }, - "keywords": [ - "React", - "Native", - "Bluetooth", - "Low", - "Energy", - "BLE", - "Polidea" - ], - "author": "Polidea", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/Polidea/react-native-ble-plx/issues" - }, - "homepage": "https://github.com/Polidea/react-native-ble-plx#readme" -} diff --git a/docs/script/inherited-summary.js b/docs/script/inherited-summary.js deleted file mode 100644 index 0a35b6df..00000000 --- a/docs/script/inherited-summary.js +++ /dev/null @@ -1,28 +0,0 @@ -(function(){ - function toggle(ev) { - var button = ev.target; - var parent = ev.target.parentElement; - while(parent) { - if (parent.tagName === 'TABLE' && parent.classList.contains('summary')) break; - parent = parent.parentElement; - } - - if (!parent) return; - - var tbody = parent.querySelector('tbody'); - if (button.classList.contains('opened')) { - button.classList.remove('opened'); - button.classList.add('closed'); - tbody.style.display = 'none'; - } else { - button.classList.remove('closed'); - button.classList.add('opened'); - tbody.style.display = 'block'; - } - } - - var buttons = document.querySelectorAll('.inherited-summary thead .toggle'); - for (var i = 0; i < buttons.length; i++) { - buttons[i].addEventListener('click', toggle); - } -})(); diff --git a/docs/script/inner-link.js b/docs/script/inner-link.js deleted file mode 100644 index 69a74770..00000000 --- a/docs/script/inner-link.js +++ /dev/null @@ -1,31 +0,0 @@ -// inner link(#foo) can not correctly scroll, because page has fixed header, -// so, I manually scroll. -(function(){ - var matched = location.hash.match(/errorLines=([\d,]+)/); - if (matched) return; - - function adjust() { - window.scrollBy(0, -55); - var el = document.querySelector('.inner-link-active'); - if (el) el.classList.remove('inner-link-active'); - - // ``[ ] . ' " @`` are not valid in DOM id. so must escape these. - var id = location.hash.replace(/([\[\].'"@$])/g, '\\$1'); - var el = document.querySelector(id); - if (el) el.classList.add('inner-link-active'); - } - - window.addEventListener('hashchange', adjust); - - if (location.hash) { - setTimeout(adjust, 0); - } -})(); - -(function(){ - var els = document.querySelectorAll('[href^="#"]'); - for (var i = 0; i < els.length; i++) { - var el = els[i]; - el.href = location.href + el.getAttribute('href'); // because el.href is absolute path - } -})(); diff --git a/docs/script/manual.js b/docs/script/manual.js deleted file mode 100644 index 4c2b1695..00000000 --- a/docs/script/manual.js +++ /dev/null @@ -1,11 +0,0 @@ -(function(){ - var matched = location.pathname.match(/\/(manual\/.*?\/.*\.html)$/); - if (!matched) return; - - var currentName = matched[1]; - var cssClass = '.navigation .manual-toc li[data-link="' + currentName + '"]'; - var styleText = cssClass + '{ display: block; }\n'; - var style = document.createElement('style'); - style.textContent = styleText; - document.querySelector('head').appendChild(style); -})(); diff --git a/docs/script/patch-for-local.js b/docs/script/patch-for-local.js deleted file mode 100644 index 5756d135..00000000 --- a/docs/script/patch-for-local.js +++ /dev/null @@ -1,8 +0,0 @@ -(function(){ - if (location.protocol === 'file:') { - var elms = document.querySelectorAll('a[href="./"]'); - for (var i = 0; i < elms.length; i++) { - elms[i].href = './index.html'; - } - } -})(); diff --git a/docs/script/prettify/Apache-License-2.0.txt b/docs/script/prettify/Apache-License-2.0.txt deleted file mode 100644 index d6456956..00000000 --- a/docs/script/prettify/Apache-License-2.0.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/docs/script/prettify/prettify.js b/docs/script/prettify/prettify.js deleted file mode 100644 index eef5ad7e..00000000 --- a/docs/script/prettify/prettify.js +++ /dev/null @@ -1,28 +0,0 @@ -var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), -l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p' + pair[2] + ''); - } - } - - var innerHTML = ''; - for (kind in html) { - var list = html[kind]; - if (!list.length) continue; - innerHTML += '
  • ' + kind + '
  • \n' + list.join('\n'); - } - result.innerHTML = innerHTML; - if (innerHTML) result.style.display = 'block'; - selectedIndex = -1; - }); - - // down, up and enter key are pressed, select search result. - input.addEventListener('keydown', function(ev){ - if (ev.keyCode === 40) { - // arrow down - var current = result.children[selectedIndex]; - var selected = result.children[selectedIndex + 1]; - if (selected && selected.classList.contains('search-separator')) { - var selected = result.children[selectedIndex + 2]; - selectedIndex++; - } - - if (selected) { - if (current) current.classList.remove('selected'); - selectedIndex++; - selected.classList.add('selected'); - } - } else if (ev.keyCode === 38) { - // arrow up - var current = result.children[selectedIndex]; - var selected = result.children[selectedIndex - 1]; - if (selected && selected.classList.contains('search-separator')) { - var selected = result.children[selectedIndex - 2]; - selectedIndex--; - } - - if (selected) { - if (current) current.classList.remove('selected'); - selectedIndex--; - selected.classList.add('selected'); - } - } else if (ev.keyCode === 13) { - // enter - var current = result.children[selectedIndex]; - if (current) { - var link = current.querySelector('a'); - if (link) location.href = link.href; - } - } else { - return; - } - - ev.preventDefault(); - }); - - // select search result when search result is mouse over. - result.addEventListener('mousemove', function(ev){ - var current = result.children[selectedIndex]; - if (current) current.classList.remove('selected'); - - var li = ev.target; - while (li) { - if (li.nodeName === 'LI') break; - li = li.parentElement; - } - - if (li) { - selectedIndex = Array.prototype.indexOf.call(result.children, li); - li.classList.add('selected'); - } - }); - - // clear search result when body is clicked. - document.body.addEventListener('click', function(ev){ - selectedIndex = -1; - result.style.display = 'none'; - result.innerHTML = ''; - }); - -})(); diff --git a/docs/script/search_index.js b/docs/script/search_index.js deleted file mode 100644 index 2c0fe502..00000000 --- a/docs/script/search_index.js +++ /dev/null @@ -1,764 +0,0 @@ -window.esdocSearchIndex = [ - [ - "react-native-ble-plx/react-native-ble-plx/src/blemanager.js~blemanager", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html", - "BleManager react-native-ble-plx/react-native-ble-plx/src/BleManager.js", - "class" - ], - [ - "react-native-ble-plx/react-native-ble-plx/src/characteristic.js~characteristic", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html", - "Characteristic react-native-ble-plx/react-native-ble-plx/src/Characteristic.js", - "class" - ], - [ - "react-native-ble-plx/react-native-ble-plx/src/device.js~device", - "class/react-native-ble-plx/src/Device.js~Device.html", - "Device react-native-ble-plx/react-native-ble-plx/src/Device.js", - "class" - ], - [ - "react-native-ble-plx/react-native-ble-plx/src/service.js~service", - "class/react-native-ble-plx/src/Service.js~Service.html", - "Service react-native-ble-plx/react-native-ble-plx/src/Service.js", - "class" - ], - [ - "react-native-ble-plx/react-native-ble-plx/src/utils.js~fulluuid", - "function/index.html#static-function-fullUUID", - "fullUUID react-native-ble-plx/react-native-ble-plx/src/Utils.js", - "function" - ], - [ - "builtinexternal/ecmascriptexternal.js~array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array", - "BuiltinExternal/ECMAScriptExternal.js~Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~arraybuffer", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", - "BuiltinExternal/ECMAScriptExternal.js~ArrayBuffer", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~boolean", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "BuiltinExternal/ECMAScriptExternal.js~Boolean", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~dataview", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView", - "BuiltinExternal/ECMAScriptExternal.js~DataView", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~date", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", - "BuiltinExternal/ECMAScriptExternal.js~Date", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~error", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error", - "BuiltinExternal/ECMAScriptExternal.js~Error", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~evalerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError", - "BuiltinExternal/ECMAScriptExternal.js~EvalError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~float32array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array", - "BuiltinExternal/ECMAScriptExternal.js~Float32Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~float64array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array", - "BuiltinExternal/ECMAScriptExternal.js~Float64Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~function", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "BuiltinExternal/ECMAScriptExternal.js~Function", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~generator", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator", - "BuiltinExternal/ECMAScriptExternal.js~Generator", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~generatorfunction", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", - "BuiltinExternal/ECMAScriptExternal.js~GeneratorFunction", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~infinity", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", - "BuiltinExternal/ECMAScriptExternal.js~Infinity", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~int16array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array", - "BuiltinExternal/ECMAScriptExternal.js~Int16Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~int32array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array", - "BuiltinExternal/ECMAScriptExternal.js~Int32Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~int8array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array", - "BuiltinExternal/ECMAScriptExternal.js~Int8Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~internalerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError", - "BuiltinExternal/ECMAScriptExternal.js~InternalError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~json", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", - "BuiltinExternal/ECMAScriptExternal.js~JSON", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~map", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map", - "BuiltinExternal/ECMAScriptExternal.js~Map", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~nan", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", - "BuiltinExternal/ECMAScriptExternal.js~NaN", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~number", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "BuiltinExternal/ECMAScriptExternal.js~Number", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~object", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "BuiltinExternal/ECMAScriptExternal.js~Object", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~promise", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise", - "BuiltinExternal/ECMAScriptExternal.js~Promise", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~proxy", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy", - "BuiltinExternal/ECMAScriptExternal.js~Proxy", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~rangeerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError", - "BuiltinExternal/ECMAScriptExternal.js~RangeError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~referenceerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError", - "BuiltinExternal/ECMAScriptExternal.js~ReferenceError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~reflect", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", - "BuiltinExternal/ECMAScriptExternal.js~Reflect", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~regexp", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp", - "BuiltinExternal/ECMAScriptExternal.js~RegExp", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~set", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set", - "BuiltinExternal/ECMAScriptExternal.js~Set", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~string", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "BuiltinExternal/ECMAScriptExternal.js~String", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~symbol", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol", - "BuiltinExternal/ECMAScriptExternal.js~Symbol", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~syntaxerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError", - "BuiltinExternal/ECMAScriptExternal.js~SyntaxError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~typeerror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError", - "BuiltinExternal/ECMAScriptExternal.js~TypeError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~urierror", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError", - "BuiltinExternal/ECMAScriptExternal.js~URIError", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~uint16array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array", - "BuiltinExternal/ECMAScriptExternal.js~Uint16Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~uint32array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array", - "BuiltinExternal/ECMAScriptExternal.js~Uint32Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~uint8array", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array", - "BuiltinExternal/ECMAScriptExternal.js~Uint8Array", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~uint8clampedarray", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray", - "BuiltinExternal/ECMAScriptExternal.js~Uint8ClampedArray", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~weakmap", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", - "BuiltinExternal/ECMAScriptExternal.js~WeakMap", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~weakset", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", - "BuiltinExternal/ECMAScriptExternal.js~WeakSet", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~boolean", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", - "BuiltinExternal/ECMAScriptExternal.js~boolean", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~function", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", - "BuiltinExternal/ECMAScriptExternal.js~function", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~null", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null", - "BuiltinExternal/ECMAScriptExternal.js~null", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~number", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", - "BuiltinExternal/ECMAScriptExternal.js~number", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~object", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", - "BuiltinExternal/ECMAScriptExternal.js~object", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~string", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", - "BuiltinExternal/ECMAScriptExternal.js~string", - "external" - ], - [ - "builtinexternal/ecmascriptexternal.js~undefined", - "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", - "BuiltinExternal/ECMAScriptExternal.js~undefined", - "external" - ], - [ - "builtinexternal/webapiexternal.js~audiocontext", - "https://developer.mozilla.org/en/docs/Web/API/AudioContext", - "BuiltinExternal/WebAPIExternal.js~AudioContext", - "external" - ], - [ - "builtinexternal/webapiexternal.js~canvasrenderingcontext2d", - "https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D", - "BuiltinExternal/WebAPIExternal.js~CanvasRenderingContext2D", - "external" - ], - [ - "builtinexternal/webapiexternal.js~documentfragment", - "https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment", - "BuiltinExternal/WebAPIExternal.js~DocumentFragment", - "external" - ], - [ - "builtinexternal/webapiexternal.js~element", - "https://developer.mozilla.org/en-US/docs/Web/API/Element", - "BuiltinExternal/WebAPIExternal.js~Element", - "external" - ], - [ - "builtinexternal/webapiexternal.js~event", - "https://developer.mozilla.org/en-US/docs/Web/API/Event", - "BuiltinExternal/WebAPIExternal.js~Event", - "external" - ], - [ - "builtinexternal/webapiexternal.js~node", - "https://developer.mozilla.org/en-US/docs/Web/API/Node", - "BuiltinExternal/WebAPIExternal.js~Node", - "external" - ], - [ - "builtinexternal/webapiexternal.js~nodelist", - "https://developer.mozilla.org/en-US/docs/Web/API/NodeList", - "BuiltinExternal/WebAPIExternal.js~NodeList", - "external" - ], - [ - "builtinexternal/webapiexternal.js~xmlhttprequest", - "https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest", - "BuiltinExternal/WebAPIExternal.js~XMLHttpRequest", - "external" - ], - [ - "react-native-ble-plx/index.js", - "file/react-native-ble-plx/index.js.html", - "react-native-ble-plx/index.js", - "file" - ], - [ - "react-native-ble-plx/src/blemanager.js", - "file/react-native-ble-plx/src/BleManager.js.html", - "react-native-ble-plx/src/BleManager.js", - "file" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#canceldeviceconnection", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelDeviceConnection", - "react-native-ble-plx/src/BleManager.js~BleManager#cancelDeviceConnection", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#canceltransaction", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-cancelTransaction", - "react-native-ble-plx/src/BleManager.js~BleManager#cancelTransaction", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#characteristicsfordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-characteristicsForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#characteristicsForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#connecttodevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-connectToDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#connectToDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#constructor", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-constructor-constructor", - "react-native-ble-plx/src/BleManager.js~BleManager#constructor", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#destroy", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-destroy", - "react-native-ble-plx/src/BleManager.js~BleManager#destroy", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#discoverallservicesandcharacteristicsfordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-discoverAllServicesAndCharacteristicsForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#discoverAllServicesAndCharacteristicsForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#isdeviceconnected", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-isDeviceConnected", - "react-native-ble-plx/src/BleManager.js~BleManager#isDeviceConnected", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#monitorcharacteristicfordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-monitorCharacteristicForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#monitorCharacteristicForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#ondevicedisconnected", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onDeviceDisconnected", - "react-native-ble-plx/src/BleManager.js~BleManager#onDeviceDisconnected", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#onstatechange", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-onStateChange", - "react-native-ble-plx/src/BleManager.js~BleManager#onStateChange", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#readcharacteristicfordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-readCharacteristicForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#readCharacteristicForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#servicesfordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-servicesForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#servicesForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#startdevicescan", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-startDeviceScan", - "react-native-ble-plx/src/BleManager.js~BleManager#startDeviceScan", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#state", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-state", - "react-native-ble-plx/src/BleManager.js~BleManager#state", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#stopdevicescan", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-stopDeviceScan", - "react-native-ble-plx/src/BleManager.js~BleManager#stopDeviceScan", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithresponsefordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithResponseForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithResponseForDevice", - "method" - ], - [ - "react-native-ble-plx/src/blemanager.js~blemanager#writecharacteristicwithoutresponsefordevice", - "class/react-native-ble-plx/src/BleManager.js~BleManager.html#instance-method-writeCharacteristicWithoutResponseForDevice", - "react-native-ble-plx/src/BleManager.js~BleManager#writeCharacteristicWithoutResponseForDevice", - "method" - ], - [ - "react-native-ble-plx/src/characteristic.js", - "file/react-native-ble-plx/src/Characteristic.js.html", - "react-native-ble-plx/src/Characteristic.js", - "file" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#deviceid", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-deviceID", - "react-native-ble-plx/src/Characteristic.js~Characteristic#deviceID", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#isindictable", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isIndictable", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isIndictable", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#isnotifiable", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isNotifiable", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isNotifiable", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#isnotifying", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isNotifying", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isNotifying", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#isreadable", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isReadable", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isReadable", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#iswritablewithresponse", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isWritableWithResponse", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isWritableWithResponse", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#iswritablewithoutresponse", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-isWritableWithoutResponse", - "react-native-ble-plx/src/Characteristic.js~Characteristic#isWritableWithoutResponse", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#monitor", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-monitor", - "react-native-ble-plx/src/Characteristic.js~Characteristic#monitor", - "method" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#read", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-read", - "react-native-ble-plx/src/Characteristic.js~Characteristic#read", - "method" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#serviceuuid", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-serviceUUID", - "react-native-ble-plx/src/Characteristic.js~Characteristic#serviceUUID", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#uuid", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-uuid", - "react-native-ble-plx/src/Characteristic.js~Characteristic#uuid", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#value", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-member-value", - "react-native-ble-plx/src/Characteristic.js~Characteristic#value", - "member" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#writewithresponse", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithResponse", - "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithResponse", - "method" - ], - [ - "react-native-ble-plx/src/characteristic.js~characteristic#writewithoutresponse", - "class/react-native-ble-plx/src/Characteristic.js~Characteristic.html#instance-method-writeWithoutResponse", - "react-native-ble-plx/src/Characteristic.js~Characteristic#writeWithoutResponse", - "method" - ], - [ - "react-native-ble-plx/src/device.js", - "file/react-native-ble-plx/src/Device.js.html", - "react-native-ble-plx/src/Device.js", - "file" - ], - [ - "react-native-ble-plx/src/device.js~device#cancelconnection", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-cancelConnection", - "react-native-ble-plx/src/Device.js~Device#cancelConnection", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#characteristicsforservice", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-characteristicsForService", - "react-native-ble-plx/src/Device.js~Device#characteristicsForService", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#connect", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-connect", - "react-native-ble-plx/src/Device.js~Device#connect", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#discoverallservicesandcharacteristics", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-discoverAllServicesAndCharacteristics", - "react-native-ble-plx/src/Device.js~Device#discoverAllServicesAndCharacteristics", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#id", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-id", - "react-native-ble-plx/src/Device.js~Device#id", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#isconnectable", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-isConnectable", - "react-native-ble-plx/src/Device.js~Device#isConnectable", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#isconnected", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-isConnected", - "react-native-ble-plx/src/Device.js~Device#isConnected", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#manufacturerdata", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-manufacturerData", - "react-native-ble-plx/src/Device.js~Device#manufacturerData", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#monitorcharacteristicforservice", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-monitorCharacteristicForService", - "react-native-ble-plx/src/Device.js~Device#monitorCharacteristicForService", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#name", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-name", - "react-native-ble-plx/src/Device.js~Device#name", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#ondisconnected", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-onDisconnected", - "react-native-ble-plx/src/Device.js~Device#onDisconnected", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#overflowserviceuuids", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-overflowServiceUUIDs", - "react-native-ble-plx/src/Device.js~Device#overflowServiceUUIDs", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#readcharacteristicforservice", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-readCharacteristicForService", - "react-native-ble-plx/src/Device.js~Device#readCharacteristicForService", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#rssi", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-rssi", - "react-native-ble-plx/src/Device.js~Device#rssi", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#servicedata", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-serviceData", - "react-native-ble-plx/src/Device.js~Device#serviceData", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#serviceuuids", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-serviceUUIDs", - "react-native-ble-plx/src/Device.js~Device#serviceUUIDs", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#services", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-services", - "react-native-ble-plx/src/Device.js~Device#services", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#solicitedserviceuuids", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-solicitedServiceUUIDs", - "react-native-ble-plx/src/Device.js~Device#solicitedServiceUUIDs", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#txpowerlevel", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-member-txPowerLevel", - "react-native-ble-plx/src/Device.js~Device#txPowerLevel", - "member" - ], - [ - "react-native-ble-plx/src/device.js~device#writecharacteristicwithresponseforservice", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithResponseForService", - "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithResponseForService", - "method" - ], - [ - "react-native-ble-plx/src/device.js~device#writecharacteristicwithoutresponseforservice", - "class/react-native-ble-plx/src/Device.js~Device.html#instance-method-writeCharacteristicWithoutResponseForService", - "react-native-ble-plx/src/Device.js~Device#writeCharacteristicWithoutResponseForService", - "method" - ], - [ - "react-native-ble-plx/src/service.js", - "file/react-native-ble-plx/src/Service.js.html", - "react-native-ble-plx/src/Service.js", - "file" - ], - [ - "react-native-ble-plx/src/service.js~service#characteristics", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-characteristics", - "react-native-ble-plx/src/Service.js~Service#characteristics", - "method" - ], - [ - "react-native-ble-plx/src/service.js~service#deviceid", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-member-deviceID", - "react-native-ble-plx/src/Service.js~Service#deviceID", - "member" - ], - [ - "react-native-ble-plx/src/service.js~service#isprimary", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-member-isPrimary", - "react-native-ble-plx/src/Service.js~Service#isPrimary", - "member" - ], - [ - "react-native-ble-plx/src/service.js~service#monitorcharacteristic", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-monitorCharacteristic", - "react-native-ble-plx/src/Service.js~Service#monitorCharacteristic", - "method" - ], - [ - "react-native-ble-plx/src/service.js~service#readcharacteristic", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-readCharacteristic", - "react-native-ble-plx/src/Service.js~Service#readCharacteristic", - "method" - ], - [ - "react-native-ble-plx/src/service.js~service#uuid", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-member-uuid", - "react-native-ble-plx/src/Service.js~Service#uuid", - "member" - ], - [ - "react-native-ble-plx/src/service.js~service#writecharacteristicwithresponse", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithResponse", - "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithResponse", - "method" - ], - [ - "react-native-ble-plx/src/service.js~service#writecharacteristicwithoutresponse", - "class/react-native-ble-plx/src/Service.js~Service.html#instance-method-writeCharacteristicWithoutResponse", - "react-native-ble-plx/src/Service.js~Service#writeCharacteristicWithoutResponse", - "method" - ], - [ - "react-native-ble-plx/src/utils.js", - "file/react-native-ble-plx/src/Utils.js.html", - "react-native-ble-plx/src/Utils.js", - "file" - ] -] \ No newline at end of file diff --git a/docs/script/test-summary.js b/docs/script/test-summary.js deleted file mode 100644 index 2f32cb00..00000000 --- a/docs/script/test-summary.js +++ /dev/null @@ -1,54 +0,0 @@ -(function(){ - function toggle(ev) { - var button = ev.target; - var parent = ev.target.parentElement; - while(parent) { - if (parent.tagName === 'TR' && parent.classList.contains('test-describe')) break; - parent = parent.parentElement; - } - - if (!parent) return; - - var direction; - if (button.classList.contains('opened')) { - button.classList.remove('opened'); - button.classList.add('closed'); - direction = 'closed'; - } else { - button.classList.remove('closed'); - button.classList.add('opened'); - direction = 'opened'; - } - - var targetDepth = parseInt(parent.dataset.testDepth, 10) + 1; - var nextElement = parent.nextElementSibling; - while (nextElement) { - var depth = parseInt(nextElement.dataset.testDepth, 10); - if (depth >= targetDepth) { - if (direction === 'opened') { - if (depth === targetDepth) nextElement.style.display = ''; - } else if (direction === 'closed') { - nextElement.style.display = 'none'; - var innerButton = nextElement.querySelector('.toggle'); - if (innerButton && innerButton.classList.contains('opened')) { - innerButton.classList.remove('opened'); - innerButton.classList.add('closed'); - } - } - } else { - break; - } - nextElement = nextElement.nextElementSibling; - } - } - - var buttons = document.querySelectorAll('.test-summary tr.test-describe .toggle'); - for (var i = 0; i < buttons.length; i++) { - buttons[i].addEventListener('click', toggle); - } - - var topDescribes = document.querySelectorAll('.test-summary tr[data-test-depth="0"]'); - for (var i = 0; i < topDescribes.length; i++) { - topDescribes[i].style.display = ''; - } -})(); diff --git a/docs/source.html b/docs/source.html deleted file mode 100644 index 0b8bc11c..00000000 --- a/docs/source.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - Source | API Document - - - - - - - - - -
    - Home - - Reference - Source - - Repository - -
    - - - -

    Source

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FileIdentifierDocumentSizeLinesUpdated
    react-native-ble-plx/index.js--272 byte72017-04-07 20:02:21 (UTC)
    react-native-ble-plx/src/BleManager.jsBleManager-16300 byte4472017-04-07 20:02:21 (UTC)
    react-native-ble-plx/src/Characteristic.jsCharacteristic-5585 byte1352017-04-07 20:02:21 (UTC)
    react-native-ble-plx/src/Device.jsDevice-10020 byte2612017-04-07 20:02:21 (UTC)
    react-native-ble-plx/src/Service.jsService-5534 byte1472017-04-07 20:02:21 (UTC)
    react-native-ble-plx/src/Utils.jsfullUUID-499 byte142017-04-07 20:02:21 (UTC)
    -
    - - - - - - - - - - - - diff --git a/documentation.yml b/documentation.yml new file mode 100644 index 00000000..e35d93d3 --- /dev/null +++ b/documentation.yml @@ -0,0 +1,26 @@ +toc: + - name: Introduction + file: INTRO.md + - name: Main Classes + description: | + Classes described below are main building blocks for your BLE support. They + are presented in order which aligns them with usage. + - BleManager + - Device + - Service + - Characteristic + - name: Utils + description: | + Utility functions and classes. + - fullUUID + - name: Flow Types + description: | + All Flow aliases and Flow types used in this library. + - State + - ScanOptions + - ConnectionOptions + - DeviceId + - UUID + - TransactionId + - Subscription + - Base64 \ No newline at end of file diff --git a/googleplay.png b/googleplay.png deleted file mode 100644 index 7f62cc55..00000000 Binary files a/googleplay.png and /dev/null differ diff --git a/logo.png b/logo.png deleted file mode 100644 index 14c47bb9..00000000 Binary files a/logo.png and /dev/null differ diff --git a/package.json b/package.json index ba599d48..a91a7ce0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,8 @@ }, "scripts": { "postinstall": "bash build_ios_frameworks.sh", - "test": "jest" + "test": "jest", + "docs": "documentation build index.js -o docs --config documentation.yml -f html" }, "repository": { "type": "git", @@ -16,6 +17,7 @@ }, "devDependencies": { "babel-eslint": "^7.2.3", + "documentation": "4.0.0-rc.1", "eslint": "^3.19.0", "eslint-plugin-flowtype": "^2.33.0", "eslint-plugin-import": "^2.2.0", @@ -41,4 +43,4 @@ "url": "https://github.com/Polidea/react-native-ble-plx/issues" }, "homepage": "https://github.com/Polidea/react-native-ble-plx#readme" -} +} \ No newline at end of file diff --git a/src/BleManager.js b/src/BleManager.js index 56429fbe..9f4a2bf7 100644 --- a/src/BleManager.js +++ b/src/BleManager.js @@ -21,15 +21,13 @@ import type { /** * * BleManager is an entry point for react-native-ble-plx library. It provides all means to discover and work with - * {@link Device} instances. It should be initialized only once with new keyword and method {@link destroy} should be - * called on its instance when user wants to deallocate all resources. + * {@link Device} instances. It should be initialized only once with `new` keyword and method + * {@link #BleManager#destroy|destroy()} should be called on its instance when user wants to deallocate all resources. * * @example * const manager = new BleManager(); * // ... work with BLE manager ... - * manager.destroy(); - * - * @class BleManager + * manager.destroy(); */ export class BleManager { // Scan subscriptions @@ -39,6 +37,9 @@ export class BleManager { // Unique identifier used to create internal transactionIds _uniqueId: number + /** + * Creates an instance of {@link BleManager}. + */ constructor() { BleModule.createClient() this._eventEmitter = new NativeEventEmitter(BleModule) @@ -46,16 +47,18 @@ export class BleManager { } /** - * Destroys BleManager instance. A new instance needs to be created to continue working with react-native-ble-plx. + * Destroys {@link BleManager} instance. A new instance needs to be created to continue working with + * this library. */ destroy() { BleModule.destroyClient() } /** - * Generates new unique identifier to be used internally + * Generates new unique identifier to be used internally. * * @returns {string} New identifier. + * @private */ _nextUniqueID(): string { this._uniqueId += 1 @@ -69,11 +72,23 @@ export class BleManager { * * Few operations such as monitoring characteristic's value changes can be cancelled by a user. Basically every API * entry which accepts `transactionId` allows to call `cancelTransaction` function. When cancelled operation is a - * promise or a callback which registers errors, `"Cancelled"` error will be emitted in that case. + * promise or a callback which registers errors, `"Cancelled"` error will be emitted in that case. Cancelling + * transaction which doesn't exist is ignored. + * + * @example + * const transactionId = 'monitor_battery'; * - * Cancelling transaction which doesn't exist is ignored. + * // Monitor battery notifications + * manager.monitorCharacteristicForDevice( + * device.id, '180F', '2A19', + * (error, characteristic) => { + * // Handle battery level changes... + * }, transactionId); * - * @param {string} transactionId Id of pending transactions. + * // Cancel after specified amount of time + * setTimeout(() => manager.cancelTransaction(transactionId), 2000); + * + * @param {TransactionId} transactionId Id of pending transactions. */ cancelTransaction(transactionId: TransactionId) { BleModule.cancelTransaction(transactionId) @@ -82,27 +97,28 @@ export class BleManager { // Mark: Monitoring state -------------------------------------------------------------------------------------------- /** - * Current state of a manager. - * - * Available states: - * - `Unknown` - the current state of the manager is unknown; an update is imminent. - * - `Resetting` - the connection with the system service was momentarily lost; an update is imminent. - * - `Unsupported` - the platform does not support Bluetooth low energy. - * - `Unauthorized` - the app is not authorized to use Bluetooth low energy. - * - `PoweredOff` - Bluetooth is currently powered off. - * - `PoweredOn` - Bluetooth is currently powered on and available to use. + * Current, global {@link State} of a {@link BleManager}. All APIs are working only when active state + * is "PoweredOn". * - * @returns {Promise<$Keys>} Promise which emits current state of BleManager. + * @returns {Promise} Promise which emits current state of BleManager. */ state(): Promise<$Keys> { return BleModule.state() } /** - * Notifies about state changes of a manager. + * Notifies about {@link State} changes of a {@link BleManager}. + * + * @example + * const subscription = this.manager.onStateChange((state) => { + * if (state === 'PoweredOn') { + * this.scanAndConnect(); + * subscription.remove(); + * } + * }, true); * - * @param {function(newState: $Keys)} listener Callback which emits state changes of BLE Manager. - * Look at {@link state} for possible values. + * @param {function(newState: State)} listener Callback which emits state changes of BLE Manager. + * Look at {@link State} for possible values. * @param {boolean} [emitCurrentState=false] If true, current state will be emitted as well. Defaults to false. * * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe. @@ -132,15 +148,11 @@ export class BleManager { // Mark: Scanning ---------------------------------------------------------------------------------------------------- /** - * Starts device scanning. + * Starts device scanning. When previous scan is in progress it will be stopped before executing this command. * - * When previous scan is in progress it will be stopped before executing this command. - * - * @param {?UUID[]} UUIDs Array of strings containing UUIDs of services which are registered in scanned devices. - * If null is passed all available devices will be scanned. - * @param {?ScanOptions} options Optional configuration for scanning operation. Scan option object contains two - * optional fields: `allowDuplicates` for iOS when set to true scanned {@link Device}s will be emitted more - * frequently, `autoConnect` for Android - allows to connect to devices which are not in range. + * @param {?Array} UUIDs Array of strings containing {@link UUID}s of {@link Service}s which are registered in + * scanned {@link Device}. If `null` is passed, all available {@link Device}s will be scanned. + * @param {?ScanOptions} options Optional configuration for scanning operation. * @param {function(error: ?Error, scannedDevice: ?Device)} listener Function which will be called for every scanned * {@link Device} (devices may be scanned multiple times). It's first argument is potential {@link Error} which is set * to non `null` value when scanning failed. You have to start scanning process again if that happens. Second argument @@ -160,7 +172,7 @@ export class BleManager { } /** - * Stops device scan if in progress. + * Stops {@link Device} scan if in progress. */ stopDeviceScan() { if (this._scanEventSubscription != null) { @@ -176,7 +188,7 @@ export class BleManager { * Connects to {@link Device} with provided ID. * * @param {DeviceId} deviceIdentifier {@link Device} identifier. - * @param {?ConnectionOptions} options Platform specific options for connection establishment. Not used currently. + * @param {?ConnectionOptions} options Platform specific options for connection establishment. * @returns {Promise} Connected {@link Device} object if successful. */ async connectToDevice(deviceIdentifier: DeviceId, options: ?ConnectionOptions): Promise { @@ -232,7 +244,7 @@ export class BleManager { /** * Discovers all {@link Service}s and {@link Characteristic}s for {@link Device}. * - * @param {DeviceId} identifier {@link Device} identifier. + * @param {DeviceId} deviceIdentifier {@link Device} identifier. * @returns {Promise} Promise which emits {@link Device} object if all available services and * characteristics have been discovered. */ @@ -280,8 +292,8 @@ export class BleManager { * @param {DeviceId} deviceIdentifier {@link Device} identifier. * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. - * @param {?TransactionId} transactionId optional `transactionId` which can be used in {@link cancelTransaction} - * function. + * @param {?TransactionId} transactionId optional `transactionId` which can be used in + * {@link #BleManager#cancelTransaction|cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object. */ @@ -312,8 +324,8 @@ export class BleManager { * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} base64Value Value in Base64 format. - * @param {?TransactionId} transactionId optional `transactionId` which can be used in {@link cancelTransaction} - * function. + * @param {?TransactionId} transactionId optional `transactionId` which can be used in + * {@link #BleManager#cancelTransaction|cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of characteristic may not be stored inside returned object. */ @@ -347,8 +359,8 @@ export class BleManager { * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} base64Value Value in Base64 format. - * @param {?TransactionId} transactionId optional `transactionId` which can be used in {@link cancelTransaction} - * function. + * @param {?TransactionId} transactionId optional `transactionId` which can be used in + * {@link #BleManager#cancelTransaction|cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of characteristic may not be stored inside returned object. */ @@ -384,8 +396,8 @@ export class BleManager { * @param {UUID} characteristicUUID - {@link Characteristic} UUID. * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits * {@link Characteristic} objects with modified value for each notification. - * @param {?TransactionId} transactionId optional `transactionId` which can be used in {@link cancelTransaction} - * function. + * @param {?TransactionId} transactionId optional `transactionId` which can be used in + * {@link #BleManager#cancelTransaction|cancelTransaction()} function. * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe. */ monitorCharacteristicForDevice( @@ -393,14 +405,14 @@ export class BleManager { serviceUUID: UUID, characteristicUUID: UUID, listener: (error: ?Error, characteristic: ?Characteristic) => void, - maybeTransactionId: ?TransactionId + transactionId: ?TransactionId ): Subscription { - const transactionId = maybeTransactionId || this._nextUniqueID() + const filledTransactionId = transactionId || this._nextUniqueID() const monitorListener = ( [error, characteristic, msgTransactionId]: [?Error, NativeCharacteristic, TransactionId] ) => { - if (transactionId !== msgTransactionId) return + if (filledTransactionId !== msgTransactionId) return if (error) { listener(error, null) return @@ -410,7 +422,12 @@ export class BleManager { const subscription: Subscription = this._eventEmitter.addListener(BleModule.ReadEvent, monitorListener) - BleModule.monitorCharacteristicForDevice(deviceIdentifier, serviceUUID, characteristicUUID, transactionId).then( + BleModule.monitorCharacteristicForDevice( + deviceIdentifier, + serviceUUID, + characteristicUUID, + filledTransactionId + ).then( () => { subscription.remove() }, @@ -422,7 +439,7 @@ export class BleManager { return { remove: () => { - BleModule.cancelTransaction(transactionId) + BleModule.cancelTransaction(filledTransactionId) } } } diff --git a/src/BleModule.js b/src/BleModule.js index 0e0337e2..3fe38b2e 100644 --- a/src/BleModule.js +++ b/src/BleModule.js @@ -7,18 +7,22 @@ import type { DeviceId, UUID, TransactionId, Base64, ScanOptions, ConnectionOpti /** * Native device object passed from BleModule. + * @private */ export interface NativeDevice { /** * Device identifier: MAC address on Android and UUID on iOS. + * @private */ id: DeviceId, /** * Device name if present + * @private */ name: ?string, /** * Current Received Signal Strength Indication of device + * @private */ rssi: ?number, @@ -26,121 +30,155 @@ export interface NativeDevice { /** * Device's custom manufacturer data. Its format is defined by manufacturer. + * @private */ manufacturerData: ?Base64, /** * Map od service UUIDs with associated data. + * @private */ serviceData: ?{ [uuid: UUID]: Base64 }, /** * List of available services visible during scanning. + * @private */ serviceUUIDs: ?Array, /** * Transmission power level of device. + * @private */ txPowerLevel: ?number, /** * List of solicited service UUIDs. + * @private */ solicitedServiceUUIDs: ?Array, /** * Is device connectable. + * @private */ isConnectable: ?boolean, /** * List of overflow service UUIDs. + * @private */ overflowServiceUUIDs: ?Array } /** * Native service object passed from BleModule. + * @private */ export interface NativeService { /** * Service UUID + * @private */ uuid: UUID, /** * Device's ID to which service belongs + * @private */ deviceID: DeviceId, /** * Value indicating whether the type of service is primary or secondary. + * @private */ isPrimary: boolean } /** * Native characteristic object passed from BleModule. + * @private */ export interface NativeCharacteristic { /** * Characteristic UUID + * @private */ uuid: UUID, /** * Service's UUID to which characteristic belongs + * @private */ serviceUUID: UUID, /** * Device's ID to which characteristic belongs + * @private */ deviceID: DeviceId, /** * True if characteristic can be read + * @private */ isReadable: boolean, /** * True if characteristic can be written with response + * @private */ isWritableWithResponse: boolean, /** * True if characteristic can be written without response + * @private */ isWritableWithoutResponse: boolean, /** * True if characteristic can monitor value changes. + * @private */ isNotifiable: boolean, /** * True if characteristic is monitoring value changes without ACK. + * @private */ isNotifying: boolean, /** * True if characteristic is monitoring value changes with ACK. + * @private */ isIndictable: boolean, /** * Characteristic value if present + * @private */ value: ?Base64 } +/** + * Native BLE Module interface + * @private + */ export interface BleModuleInterface { // Lifecycle /** * Creates new native module internally. Only one module * is allowed to be instantiated. + * @private */ createClient(): void, /** * Destroys previously instantiated module. This function is * only safe when previously BleModule was created. + * @private */ destroyClient(): void, // Monitoring state + /** + * Current state of BLE device. + * + * @returns {Promise} Current state of BLE device. + * @private + */ state(): Promise<$Keys>, // Scanning @@ -151,11 +189,13 @@ export interface BleModuleInterface { * @param {?Array} filteredUUIDs List of UUIDs for services which needs to be present to detect device during * scanning. * @param {?ScanOptions} options Platform dependent options + * @private */ startDeviceScan(filteredUUIDs: ?Array, options: ?ScanOptions): void, /** * Stops device scan. + * @private */ stopDeviceScan(): void, @@ -167,6 +207,7 @@ export interface BleModuleInterface { * @param {DeviceId} deviceIdentifier Device identifier to connect to. * @param {?ConnectionOptions} options Connection options. * @returns {Promise} Connected device. + * @private */ connectToDevice(deviceIdentifier: DeviceId, options: ?ConnectionOptions): Promise, @@ -175,6 +216,7 @@ export interface BleModuleInterface { * * @param {DeviceId} deviceIdentifier Device identifier which is already connected. * @returns {Promise} Disconnected device. + * @private */ cancelDeviceConnection(deviceIdentifier: DeviceId): Promise, @@ -183,6 +225,7 @@ export interface BleModuleInterface { * * @param {DeviceId} deviceIdentifier Device identifier. * @returns {Promise} True if specified device is connected. + * @private */ isDeviceConnected(deviceIdentifier: DeviceId): Promise, @@ -193,6 +236,7 @@ export interface BleModuleInterface { * * @param {DeviceId} deviceIdentifier Connected device identifier. * @returns {Promise} Device which has discovered characteristics and services. + * @private */ discoverAllServicesAndCharacteristicsForDevice(deviceIdentifier: DeviceId): Promise, @@ -203,6 +247,7 @@ export interface BleModuleInterface { * * @param {DeviceId} deviceIdentifier Connected device identifier. * @returns {Promise>} List of services available in device. + * @private */ servicesForDevice(deviceIdentifier: DeviceId): Promise>, @@ -212,6 +257,7 @@ export interface BleModuleInterface { * @param {DeviceId} deviceIdentifier Connected device identifier. * @param {UUID} serviceUUID Service UUID which contains characteristics. * @returns {Promise>} List of characteristics available in service. + * @private */ characteristicsForDevice(deviceIdentifier: DeviceId, serviceUUID: UUID): Promise>, @@ -225,6 +271,7 @@ export interface BleModuleInterface { * @param {UUID} characteristicUUID Characteristic UUID * @param {TransactionId} transactionId Transaction handle used to cancel operation * @returns {Promise} Characteristic for which value was read + * @private */ readCharacteristicForDevice( deviceIdentifier: DeviceId, @@ -243,6 +290,7 @@ export interface BleModuleInterface { * @param {boolean} withResponse True if write should be with response * @param {TransactionId} transactionId Transaction handle used to cancel operation * @returns {Promise} Characteristic which saved passed value + * @private */ writeCharacteristicForDevice( deviceIdentifier: DeviceId, @@ -261,6 +309,7 @@ export interface BleModuleInterface { * @param {UUID} characteristicUUID Characteristic UUID * @param {TransactionId} transactionId Transaction handle used to cancel operation * @returns {Promise} Value which is returned when monitoring was cancelled or resulted in error + * @private */ monitorCharacteristicForDevice( deviceIdentifier: DeviceId, @@ -275,13 +324,35 @@ export interface BleModuleInterface { * Cancels specified transaction * * @param {TransactionId} transactionId Transaction handle for operation to be cancelled + * @private */ cancelTransaction(transactionId: TransactionId): void, // Events + + /** + * New scanned event arrived as [?Error, ?NativeDevice] object. + * @private + */ ScanEvent: string, + + /** + * Characteristic value update broadcasted due to registered notification as + * [?Error, ?NativeCharacteristic, ?TransactionId]. + * @private + */ ReadEvent: string, + + /** + * BLE Manager changed its state as $Keys + * @private + */ StateChangeEvent: string, + + /** + * Device disconnected as [Error?, NativeDevice] + * @private + */ DisconnectionEvent: string } diff --git a/src/Characteristic.js b/src/Characteristic.js index aef7adfe..e7b83f7a 100644 --- a/src/Characteristic.js +++ b/src/Characteristic.js @@ -9,7 +9,10 @@ import type { DeviceId, UUID, TransactionId, Base64, Subscription } from './Type * Characteristic object. */ export class Characteristic implements NativeCharacteristic { - // Internal BLE Manager handle + /** + * Internal BLE Manager handle + * @private + */ _manager: BleManager /** * Characteristic UUID @@ -56,6 +59,7 @@ export class Characteristic implements NativeCharacteristic { * Private constructor used to create instance of {@link Characteristic}. * @param {NativeCharacteristic} nativeCharacteristic NativeCharacteristic * @param {BleManager} manager BleManager + * @private */ constructor(nativeCharacteristic: NativeCharacteristic, manager: BleManager) { // $FlowFixMe Should be fixed in flow 0.46 @@ -63,10 +67,10 @@ export class Characteristic implements NativeCharacteristic { } /** - * {@link BleManager#readCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#readCharacteristicForDevice|bleManager.readCharacteristicForDevice()} with partially filled arguments. * * @param {TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits this {@link Characteristic}. Latest value will be stored * inside returned object. */ @@ -75,11 +79,11 @@ export class Characteristic implements NativeCharacteristic { } /** - * {@link BleManager#writeCharacteristicWithResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithResponseForDevice|bleManager.writeCharacteristicWithResponseForDevice()} with partially filled arguments. * * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits this {@link Characteristic}. Latest value may * not be stored inside returned object. */ @@ -94,11 +98,11 @@ export class Characteristic implements NativeCharacteristic { } /** - * {@link BleManager#writeCharacteristicWithoutResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithoutResponseForDevice|bleManager.writeCharacteristicWithoutResponseForDevice()} with partially filled arguments. * * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits this {@link Characteristic}. Latest value may * not be stored inside returned object. */ @@ -113,12 +117,12 @@ export class Characteristic implements NativeCharacteristic { } /** - * {@link BleManager#monitorCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#monitorCharacteristicForDevice|bleManager.monitorCharacteristicForDevice()} with partially filled arguments. * * @param {function(error: ?Error, characteristic: ?Characteristic)} listener callback which emits * this {@link Characteristic} with modified value for each notification. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe. */ monitor( diff --git a/src/Device.js b/src/Device.js index eeff8372..4721dcae 100644 --- a/src/Device.js +++ b/src/Device.js @@ -8,11 +8,13 @@ import type { NativeDevice } from './BleModule' import type { DeviceId, Base64, UUID, Subscription, TransactionId, ConnectionOptions } from './TypeDefinition' /** - * Bluetooth device. + * Device instance which can be retrieved only by calling + * {@link #BleManager#startDeviceScan|bleManager.startDeviceScan()}. */ export class Device implements NativeDevice { /** - * Internal manager handle. + * Internal BLE Manager handle + * @private */ _manager: BleManager @@ -39,7 +41,7 @@ export class Device implements NativeDevice { manufacturerData: ?Base64 /** - * Map od service UUIDs with associated data. + * Map of service UUIDs (as keys) with associated data (as values). */ serviceData: ?{ [uuid: UUID]: Base64 } @@ -59,12 +61,12 @@ export class Device implements NativeDevice { solicitedServiceUUIDs: ?Array /** - * Is device connectable. [iOS] + * Is device connectable. [iOS only] */ isConnectable: ?boolean /** - * List of overflow service UUIDs. [iOS] + * List of overflow service UUIDs. [iOS only] */ overflowServiceUUIDs: ?Array @@ -72,7 +74,8 @@ export class Device implements NativeDevice { * Private constructor used to create {@link Device} object. * * @param {NativeDevice} nativeDevice Native device properties - * @param {BleManager} manager BLE Manager handle + * @param {BleManager} manager {@link BleManager} handle + * @private */ constructor(nativeDevice: NativeDevice, manager: BleManager) { // $FlowFixMe Should be fixed in flow 0.46 @@ -80,7 +83,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#connectToDevice} with partially filled arguments. + * {@link #BleManager#connectToDevice|bleManager.connectToDevice()} with partially filled arguments. * * @param {?ConnectionOptions} options Platform specific options for connection establishment. Not used currently. * @returns {Promise} Connected {@link Device} object if successful. @@ -90,7 +93,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#cancelDeviceConnection} with partially filled arguments. + * {@link #BleManager#cancelDeviceConnection|bleManager.cancelDeviceConnection()} with partially filled arguments. * * @returns {Promise} Returns closed {@link Device} when operation is successful. */ @@ -99,7 +102,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#isDeviceConnected} with partially filled arguments. + * {@link #BleManager#isDeviceConnected|bleManager.isDeviceConnected()} with partially filled arguments. * * @returns {Promise} Promise which emits `true` if device is connected, and `false` otherwise. */ @@ -108,7 +111,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#onDeviceDisconnected} with partially filled arguments. + * {@link #BleManager#onDeviceDisconnected|bleManager.onDeviceDisconnected()} with partially filled arguments. * * @param {function(error: ?Error, device: Device)} listener callback returning error as a reason of disconnection * if available and {@link Device} object. @@ -119,7 +122,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#discoverAllServicesAndCharacteristicsForDevice} with partially filled arguments. + * {@link #BleManager#discoverAllServicesAndCharacteristicsForDevice|bleManager.discoverAllServicesAndCharacteristicsForDevice()} with partially filled arguments. * * @returns {Promise} Promise which emits {@link Device} object if all available services and * characteristics have been discovered. @@ -129,7 +132,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#servicesForDevice} with partially filled arguments. + * {@link #BleManager#servicesForDevice|bleManager.servicesForDevice()} with partially filled arguments. * * @returns {Promise} Promise which emits array of {@link Service} objects which are discovered by this * device. @@ -139,7 +142,7 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#characteristicsForDevice} with partially filled arguments. + * {@link #BleManager#characteristicsForDevice|bleManager.characteristicsForDevice()} with partially filled arguments. * * @param {UUID} serviceUUID {@link Service} UUID. * @returns {Promise} Promise which emits array of {@link Characteristic} objects which are @@ -150,12 +153,12 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#readCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#readCharacteristicForDevice|bleManager.readCharacteristicForDevice()} with partially filled arguments. * * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of {@link Characteristic} will be stored inside returned object. */ @@ -168,13 +171,13 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#writeCharacteristicWithResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithResponseForDevice|bleManager.writeCharacteristicWithResponseForDevice()} with partially filled arguments. * * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of characteristic may not be stored inside returned object. */ @@ -194,13 +197,13 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#writeCharacteristicWithoutResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithoutResponseForDevice|bleManager.writeCharacteristicWithoutResponseForDevice()} with partially filled arguments. * * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID paths. Latest value of characteristic may not be stored inside returned object. */ @@ -220,14 +223,14 @@ export class Device implements NativeDevice { } /** - * {@link BleManager#monitorCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#monitorCharacteristicForDevice|bleManager.monitorCharacteristicForDevice()} with partially filled arguments. * * @param {UUID} serviceUUID {@link Service} UUID. * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {function(error: ?Error, characteristic: ?Characteristic)} listener - callback which emits * {@link Characteristic} objects with modified value for each notification. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe. */ monitorCharacteristicForService( diff --git a/src/Service.js b/src/Service.js index 498d7f2e..602a08bf 100644 --- a/src/Service.js +++ b/src/Service.js @@ -10,7 +10,10 @@ import type { DeviceId, Base64, UUID, Subscription, TransactionId } from './Type * Service object. */ export class Service implements NativeService { - // Internal handle to BLE Manager + /** + * Internal BLE Manager handle + * @private + */ _manager: BleManager /** * Service UUID @@ -30,6 +33,8 @@ export class Service implements NativeService { * * @param {NativeService} nativeService NativeService properties to be copied. * @param {BleManager} manager Current BleManager instance. + * @private + * @ignore */ constructor(nativeService: NativeService, manager: BleManager) { // $FlowFixMe Should be fixed in flow 0.46 @@ -37,7 +42,7 @@ export class Service implements NativeService { } /** - * {@link BleManager#characteristicsForDevice} with partially filled arguments. + * {@link #BleManager#characteristicsForDevice|bleManager.characteristicsForDevice()} with partially filled arguments. * * @returns {Promise>} Promise which emits array of {@link Characteristic} objects which are * discovered for this service. @@ -47,11 +52,11 @@ export class Service implements NativeService { } /** - * {@link BleManager#readCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#readCharacteristicForDevice|bleManager.readCharacteristicForDevice()} with partially filled arguments. * * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID path. Latest value of {@link Characteristic} will be stored inside returned object. */ @@ -60,12 +65,12 @@ export class Service implements NativeService { } /** - * {@link BleManager#writeCharacteristicWithResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithResponseForDevice|bleManager.writeCharacteristicWithResponseForDevice()} with partially filled arguments. * * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID path. Latest value of characteristic may not be stored inside returned object. */ @@ -84,12 +89,12 @@ export class Service implements NativeService { } /** - * {@link BleManager#writeCharacteristicWithoutResponseForDevice} with partially filled arguments. + * {@link #BleManager#writeCharacteristicWithoutResponseForDevice|bleManager.writeCharacteristicWithoutResponseForDevice()} with partially filled arguments. * * @param {UUID} characteristicUUID {@link Characteristic} UUID. * @param {Base64} valueBase64 Value in Base64 format. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Promise} Promise which emits first {@link Characteristic} object matching specified * UUID path. Latest value of characteristic may not be stored inside returned object. */ @@ -108,13 +113,13 @@ export class Service implements NativeService { } /** - * {@link BleManager#monitorCharacteristicForDevice} with partially filled arguments. + * {@link #BleManager#monitorCharacteristicForDevice|bleManager.monitorCharacteristicForDevice()} with partially filled arguments. * * @param {UUID} characteristicUUID - {@link Characteristic} UUID. * @param {function(error: ?Error, characteristic: ?Characteristic)} listener callback which emits * {@link Characteristic} objects with modified value for each notification. * @param {?TransactionId} transactionId optional `transactionId` which can be used in - * {@link BleManager#cancelTransaction} function. + * {@link #BleManager#cancelTransaction|bleManager.cancelTransaction()} function. * @returns {Subscription} Subscription on which `remove()` function can be called to unsubscribe. */ monitorCharacteristic( diff --git a/src/TypeDefinition.js b/src/TypeDefinition.js index 043e1e44..607633c9 100644 --- a/src/TypeDefinition.js +++ b/src/TypeDefinition.js @@ -23,10 +23,13 @@ export type TransactionId = string /** * Subscription + * @interface */ -export type Subscription = { +export interface Subscription { /** * Removes subscription + * @memberof Subscription + * @ignore */ remove(): void } @@ -34,33 +37,56 @@ export type Subscription = { /** * Options which can be passed to scanning function */ -export type ScanOptions = { +export interface ScanOptions { /** - * By allowing duplicates scanning records are received more frequently [iOS] + * By allowing duplicates scanning records are received more frequently [iOS only] + * @memberof ScanOptions + * @instance */ allowDuplicates?: boolean, /** * Whether to directly connect to the remote device (false) or to automatically connect as soon as the remote device - * becomes available (true). [Android] + * becomes available (true). [Android only] + * @memberof ScanOptions + * @instance */ autoConnect?: boolean } /** - * Connection specific options to be passed before connection happen. + * Connection specific options to be passed before connection happen. [Not used] */ -export type ConnectionOptions = { +export interface ConnectionOptions { // Not used for now } /** - * Device Bluetooth Low Energy state. + * Device Bluetooth Low Energy state. It's keys are used to check {@link #BleManager#state} values + * received by {@link BleManager} */ export const State = { + /** + * The current state of the manager is unknown; an update is imminent. + */ Unknown: 'Unknown', + /** + * The connection with the system service was momentarily lost; an update is imminent. + */ Resetting: 'Resetting', + /** + * The platform does not support Bluetooth low energy. + */ Unsupported: 'Unsupported', + /** + * The app is not authorized to use Bluetooth low energy. + */ Unauthorized: 'Unauthorized', + /** + * Bluetooth is currently powered off. + */ PoweredOff: 'PoweredOff', + /** + * Bluetooth is currently powered on and available to use. + */ PoweredOn: 'PoweredOn' } diff --git a/src/Utils.js b/src/Utils.js index 3082da6a..261dbecf 100644 --- a/src/Utils.js +++ b/src/Utils.js @@ -6,7 +6,6 @@ import type { UUID } from './TypeDefinition' /** * Converts UUID to full 128bit, lowercase format which should be used to compare UUID values. * - * @export * @param {UUID} uuid 16bit, 32bit or 128bit UUID. * @returns {UUID} 128bit lowercase UUID. */ diff --git a/yarn.lock b/yarn.lock index 79777d23..507e7c46 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,21 @@ # yarn lockfile v1 +JSONStream@^1.0.3: + version "1.3.1" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + abab@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" +abbrev@1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" + absolute-path@^0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" @@ -40,7 +51,7 @@ acorn@^3.0.4: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^4.0.4: +acorn@^4.0.3, acorn@^4.0.4: version "4.0.11" resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" @@ -75,11 +86,15 @@ ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" +ansi-html@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + ansi-regex@^2.0.0, ansi-regex@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" -ansi-styles@^2.2.1: +ansi-styles@^2.0.1, ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -106,6 +121,10 @@ append-transform@^0.4.0: dependencies: default-require-extensions "^1.0.0" +aproba@^1.0.3: + version "1.1.1" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" + are-we-there-yet@~1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" @@ -141,6 +160,12 @@ array-filter@~0.0.0: version "0.0.1" resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" +array-iterate@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-iterate/-/array-iterate-1.1.0.tgz#4f13148ffffa5f2756b50460e5eac8eed31a14e6" + dependencies: + has "^1.0.1" + array-map@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" @@ -191,6 +216,10 @@ ast-types@0.9.8: version "0.9.8" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.8.tgz#6cb6a40beba31f49f20928e28439fc14a3dab078" +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + async@^1.4.0: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" @@ -225,7 +254,7 @@ babel-code-frame@6.22.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: esutils "^2.0.2" js-tokens "^3.0.0" -babel-core@^6.0.0, babel-core@^6.21.0, babel-core@^6.24.1, babel-core@^6.7.2: +babel-core@^6.0.0, babel-core@^6.0.14, babel-core@^6.17.0, babel-core@^6.21.0, babel-core@^6.24.1, babel-core@^6.7.2: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" dependencies: @@ -258,7 +287,7 @@ babel-eslint@^7.2.3: babel-types "^6.23.0" babylon "^6.17.0" -babel-generator@^6.18.0, babel-generator@^6.21.0, babel-generator@^6.24.1: +babel-generator@6.24.1, babel-generator@^6.18.0, babel-generator@^6.21.0, babel-generator@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" dependencies: @@ -271,6 +300,22 @@ babel-generator@^6.18.0, babel-generator@^6.21.0, babel-generator@^6.24.1: source-map "^0.5.0" trim-right "^1.0.1" +babel-helper-bindify-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + babel-helper-builder-react-jsx@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" @@ -297,6 +342,23 @@ babel-helper-define-map@^6.24.1: babel-types "^6.24.1" lodash "^4.2.0" +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-explode-class@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" + dependencies: + babel-helper-bindify-decorators "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + babel-helper-function-name@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" @@ -336,7 +398,7 @@ babel-helper-regex@^6.24.1: babel-types "^6.24.1" lodash "^4.2.0" -babel-helper-remap-async-to-generator@^6.16.0: +babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" dependencies: @@ -378,7 +440,7 @@ babel-messages@^6.23.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.7.2, babel-plugin-check-es2015-constants@^6.8.0: +babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.7.2, babel-plugin-check-es2015-constants@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" dependencies: @@ -412,15 +474,47 @@ babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@ version "6.13.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" +babel-plugin-syntax-async-generators@^6.5.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" + +babel-plugin-syntax-class-constructor-call@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" + babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: version "6.13.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" +babel-plugin-syntax-decorators@^6.1.18, babel-plugin-syntax-decorators@^6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" + +babel-plugin-syntax-do-expressions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" + +babel-plugin-syntax-dynamic-import@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + +babel-plugin-syntax-export-extensions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" + babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0, babel-plugin-syntax-flow@^6.8.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" -babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: +babel-plugin-syntax-function-bind@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" + +babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" @@ -428,10 +522,24 @@ babel-plugin-syntax-object-rest-spread@^6.5.0, babel-plugin-syntax-object-rest-s version "6.13.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" -babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.5.0, babel-plugin-syntax-trailing-function-commas@^6.8.0: +babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.22.0, babel-plugin-syntax-trailing-function-commas@^6.5.0, babel-plugin-syntax-trailing-function-commas@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" +babel-plugin-system-import-transformer@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-system-import-transformer/-/babel-plugin-system-import-transformer-3.1.0.tgz#d37f0cae8e61ef39060208331d931b5e630d7c5f" + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + +babel-plugin-transform-async-generator-functions@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-generators "^6.5.0" + babel-runtime "^6.22.0" + babel-plugin-transform-async-to-generator@6.16.0: version "6.16.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" @@ -440,7 +548,23 @@ babel-plugin-transform-async-to-generator@6.16.0: babel-plugin-syntax-async-functions "^6.8.0" babel-runtime "^6.0.0" -babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.6.0, babel-plugin-transform-class-properties@^6.8.0: +babel-plugin-transform-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-class-constructor-call@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" + dependencies: + babel-plugin-syntax-class-constructor-call "^6.18.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-class-properties@^6.24.1, babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.6.0, babel-plugin-transform-class-properties@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" dependencies: @@ -449,19 +573,44 @@ babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-pro babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.5.2, babel-plugin-transform-es2015-arrow-functions@^6.8.0: +babel-plugin-transform-decorators-legacy@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925" + dependencies: + babel-plugin-syntax-decorators "^6.1.18" + babel-runtime "^6.2.0" + babel-template "^6.3.0" + +babel-plugin-transform-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" + dependencies: + babel-helper-explode-class "^6.24.1" + babel-plugin-syntax-decorators "^6.13.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-do-expressions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" + dependencies: + babel-plugin-syntax-do-expressions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.5.2, babel-plugin-transform-es2015-arrow-functions@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-block-scoped-functions@^6.6.5, babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0, babel-plugin-transform-es2015-block-scoped-functions@^6.6.5, babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0: +babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" dependencies: @@ -471,7 +620,7 @@ babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es201 babel-types "^6.24.1" lodash "^4.2.0" -babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0: +babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" dependencies: @@ -485,26 +634,33 @@ babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-clas babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0: +babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" dependencies: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0: +babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0: +babel-plugin-transform-es2015-duplicate-keys@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0: +babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" dependencies: @@ -512,13 +668,21 @@ babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-f babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: +babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: +babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" dependencies: @@ -527,14 +691,30 @@ babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es201 babel-template "^6.24.1" babel-types "^6.24.1" -babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0: +babel-plugin-transform-es2015-modules-systemjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.24.1, babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" dependencies: babel-helper-replace-supers "^6.24.1" babel-runtime "^6.22.0" -babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0: +babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.24.1, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" dependencies: @@ -545,20 +725,20 @@ babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-para babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0: +babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.24.1, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" dependencies: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.6.5, babel-plugin-transform-es2015-spread@^6.8.0: +babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.6.5, babel-plugin-transform-es2015-spread@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-sticky-regex@6.x: +babel-plugin-transform-es2015-sticky-regex@6.x, babel-plugin-transform-es2015-sticky-regex@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" dependencies: @@ -566,13 +746,19 @@ babel-plugin-transform-es2015-sticky-regex@6.x: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.6.5, babel-plugin-transform-es2015-template-literals@^6.8.0: +babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.6.5, babel-plugin-transform-es2015-template-literals@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-unicode-regex@6.x: +babel-plugin-transform-es2015-typeof-symbol@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@6.x, babel-plugin-transform-es2015-unicode-regex@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" dependencies: @@ -592,40 +778,69 @@ babel-plugin-transform-es3-property-literals@^6.5.0, babel-plugin-transform-es3- dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-flow-strip-types@^6.21.0, babel-plugin-transform-flow-strip-types@^6.5.0, babel-plugin-transform-flow-strip-types@^6.7.0, babel-plugin-transform-flow-strip-types@^6.8.0: +babel-plugin-transform-exponentiation-operator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-export-extensions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" + dependencies: + babel-plugin-syntax-export-extensions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-flow-strip-types@^6.21.0, babel-plugin-transform-flow-strip-types@^6.22.0, babel-plugin-transform-flow-strip-types@^6.5.0, babel-plugin-transform-flow-strip-types@^6.7.0, babel-plugin-transform-flow-strip-types@^6.8.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" dependencies: babel-plugin-syntax-flow "^6.18.0" babel-runtime "^6.22.0" +babel-plugin-transform-function-bind@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" + dependencies: + babel-plugin-syntax-function-bind "^6.8.0" + babel-runtime "^6.22.0" + babel-plugin-transform-object-assign@^6.5.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-object-rest-spread@^6.20.2, babel-plugin-transform-object-rest-spread@^6.5.0, babel-plugin-transform-object-rest-spread@^6.6.5, babel-plugin-transform-object-rest-spread@^6.8.0: +babel-plugin-transform-object-rest-spread@^6.20.2, babel-plugin-transform-object-rest-spread@^6.22.0, babel-plugin-transform-object-rest-spread@^6.5.0, babel-plugin-transform-object-rest-spread@^6.6.5, babel-plugin-transform-object-rest-spread@^6.8.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" dependencies: babel-plugin-syntax-object-rest-spread "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: +babel-plugin-transform-react-display-name@^6.23.0, babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-react-jsx-source@^6.5.0: +babel-plugin-transform-react-jsx-self@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-source@^6.22.0, babel-plugin-transform-react-jsx-source@^6.5.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" dependencies: babel-plugin-syntax-jsx "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: +babel-plugin-transform-react-jsx@^6.24.1, babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" dependencies: @@ -633,7 +848,7 @@ babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0 babel-plugin-syntax-jsx "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-regenerator@^6.5.0: +babel-plugin-transform-regenerator@^6.24.1, babel-plugin-transform-regenerator@^6.5.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" dependencies: @@ -668,6 +883,35 @@ babel-preset-es2015-node@^6.1.1: babel-plugin-transform-es2015-unicode-regex "6.x" semver "5.x" +babel-preset-es2015@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.24.1" + babel-plugin-transform-es2015-classes "^6.24.1" + babel-plugin-transform-es2015-computed-properties "^6.24.1" + babel-plugin-transform-es2015-destructuring "^6.22.0" + babel-plugin-transform-es2015-duplicate-keys "^6.24.1" + babel-plugin-transform-es2015-for-of "^6.22.0" + babel-plugin-transform-es2015-function-name "^6.24.1" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-plugin-transform-es2015-modules-systemjs "^6.24.1" + babel-plugin-transform-es2015-modules-umd "^6.24.1" + babel-plugin-transform-es2015-object-super "^6.24.1" + babel-plugin-transform-es2015-parameters "^6.24.1" + babel-plugin-transform-es2015-shorthand-properties "^6.24.1" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.24.1" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.22.0" + babel-plugin-transform-es2015-unicode-regex "^6.24.1" + babel-plugin-transform-regenerator "^6.24.1" + babel-preset-fbjs@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-1.0.0.tgz#c972e5c9b301d4ec9e7971f4aec3e14ac017a8b0" @@ -730,6 +974,12 @@ babel-preset-fbjs@^2.1.0: babel-plugin-transform-react-display-name "^6.8.0" babel-plugin-transform-react-jsx "^6.8.0" +babel-preset-flow@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" + dependencies: + babel-plugin-transform-flow-strip-types "^6.22.0" + babel-preset-jest@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" @@ -770,6 +1020,52 @@ babel-preset-react-native@^1.9.1: babel-plugin-transform-regenerator "^6.5.0" react-transform-hmr "^1.0.4" +babel-preset-react@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" + dependencies: + babel-plugin-syntax-jsx "^6.3.13" + babel-plugin-transform-react-display-name "^6.23.0" + babel-plugin-transform-react-jsx "^6.24.1" + babel-plugin-transform-react-jsx-self "^6.22.0" + babel-plugin-transform-react-jsx-source "^6.22.0" + babel-preset-flow "^6.23.0" + +babel-preset-stage-0@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" + dependencies: + babel-plugin-transform-do-expressions "^6.22.0" + babel-plugin-transform-function-bind "^6.22.0" + babel-preset-stage-1 "^6.24.1" + +babel-preset-stage-1@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" + dependencies: + babel-plugin-transform-class-constructor-call "^6.24.1" + babel-plugin-transform-export-extensions "^6.22.0" + babel-preset-stage-2 "^6.24.1" + +babel-preset-stage-2@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + babel-plugin-transform-class-properties "^6.24.1" + babel-plugin-transform-decorators "^6.24.1" + babel-preset-stage-3 "^6.24.1" + +babel-preset-stage-3@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" + dependencies: + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-generator-functions "^6.24.1" + babel-plugin-transform-async-to-generator "^6.24.1" + babel-plugin-transform-exponentiation-operator "^6.24.1" + babel-plugin-transform-object-rest-spread "^6.22.0" + babel-register@^6.18.0, babel-register@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" @@ -782,14 +1078,14 @@ babel-register@^6.18.0, babel-register@^6.24.1: mkdirp "^0.5.1" source-map-support "^0.4.2" -babel-runtime@^6.0.0, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0: +babel-runtime@^6.0.0, babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" dependencies: core-js "^2.4.0" regenerator-runtime "^0.10.0" -babel-template@^6.16.0, babel-template@^6.24.1: +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.3.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" dependencies: @@ -799,7 +1095,7 @@ babel-template@^6.16.0, babel-template@^6.24.1: babylon "^6.11.0" lodash "^4.2.0" -babel-traverse@^6.18.0, babel-traverse@^6.21.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: +babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.21.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" dependencies: @@ -813,7 +1109,7 @@ babel-traverse@^6.18.0, babel-traverse@^6.21.0, babel-traverse@^6.23.1, babel-tr invariant "^2.2.0" lodash "^4.2.0" -babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.23.0, babel-types@^6.24.1: +babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.23.0, babel-types@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" dependencies: @@ -822,14 +1118,25 @@ babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.23 lodash "^4.2.0" to-fast-properties "^1.0.1" +babelify@^7.3.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5" + dependencies: + babel-core "^6.0.14" + object-assign "^4.0.0" + babylon@7.0.0-beta.8: version "7.0.0-beta.8" resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.8.tgz#2bdc5ae366041442c27e068cce6f0d7c06ea9949" -babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.16.1, babylon@^6.17.0: +babylon@^6.11.0, babylon@^6.11.4, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.16.1, babylon@^6.17.0: version "6.17.1" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" +bail@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.1.tgz#912579de8b391aadf3c5fdf4cd2a0fc225df3bc2" + balanced-match@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" @@ -876,6 +1183,16 @@ big-integer@^1.6.7: version "1.6.22" resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.22.tgz#487c95fce886022ea48ff5f19e388932df46dd2e" +binary-extensions@^1.0.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + body-parser@~1.13.3: version "1.13.3" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.13.3.tgz#c08cf330c3358e151016a05746f13f029c97fa97" @@ -891,6 +1208,15 @@ body-parser@~1.13.3: raw-body "~2.1.2" type-is "~1.6.6" +body@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" + dependencies: + continuable-cache "^0.3.1" + error "^7.0.0" + raw-body "~1.1.0" + safe-json-parse "~1.0.1" + boom@2.x.x: version "2.10.1" resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" @@ -924,7 +1250,7 @@ braces@^1.8.2: preserve "^0.2.0" repeat-element "^1.1.2" -browser-resolve@^1.11.2: +browser-resolve@^1.11.2, browser-resolve@^1.7.0: version "1.11.2" resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" dependencies: @@ -948,7 +1274,7 @@ bser@^2.0.0: dependencies: node-int64 "^0.4.0" -buffer-shims@~1.0.0: +buffer-shims@^1.0.0, buffer-shims@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" @@ -956,6 +1282,10 @@ builtin-modules@^1.0.0, builtin-modules@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" +bytes@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" + bytes@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.1.0.tgz#ac93c410e2ffc9cc7cf4b464b38289067f5e47b4" @@ -990,6 +1320,10 @@ caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" +ccount@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.1.tgz#665687945168c218ec77ff61a4155ae00227a96c" + center-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" @@ -1007,6 +1341,37 @@ chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" +character-entities-html4@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.0.tgz#1ab08551d3ce1fa1df08d00fb9ca1defb147a06c" + +character-entities-legacy@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.0.tgz#b18aad98f6b7bcc646c1e4c81f9f1956376a561a" + +character-entities@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.0.tgz#a683e2cf75dbe8b171963531364e58e18a1b155f" + +character-reference-invalid@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.0.tgz#dec9ad1dfb9f8d06b4fcdaa2adc3c4fd97af1e68" + +chokidar@^1.2.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + ci-info@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" @@ -1041,14 +1406,30 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" +clone-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" + clone-stats@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" +clone-stats@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" + clone@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" +cloneable-readable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" + dependencies: + inherits "^2.0.1" + process-nextick-args "^1.0.6" + through2 "^2.0.1" + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -1057,6 +1438,10 @@ code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" +collapse-white-space@^1.0.0, collapse-white-space@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.2.tgz#9c463fb9c6d190d2dcae21a356a01bcae9eeef6d" + color-convert@^1.0.0: version "1.9.0" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" @@ -1073,6 +1458,12 @@ combined-stream@^1.0.5, combined-stream@~1.0.5: dependencies: delayed-stream "~1.0.0" +comma-separated-tokens@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.3.tgz#6eb01f4730bde7a7fce5d5e2d943bdd637272801" + dependencies: + trim "0.0.1" + commander@^2.9.0: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" @@ -1100,7 +1491,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@^1.5.2, concat-stream@^1.6.0: +concat-stream@^1.5.0, concat-stream@^1.5.2, concat-stream@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" dependencies: @@ -1108,6 +1499,14 @@ concat-stream@^1.5.2, concat-stream@^1.6.0: readable-stream "^2.2.2" typedarray "^0.0.6" +concat-stream@~1.5.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" + dependencies: + inherits "~2.0.1" + readable-stream "~2.0.0" + typedarray "~0.0.5" + connect-timeout@~1.6.2: version "1.6.2" resolved "https://registry.yarnpkg.com/connect-timeout/-/connect-timeout-1.6.2.tgz#de9a5ec61e33a12b6edaab7b5f062e98c599b88e" @@ -1153,6 +1552,10 @@ connect@^2.8.3: utils-merge "1.0.0" vhost "~3.0.1" +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + contains-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" @@ -1165,7 +1568,11 @@ content-type@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" -convert-source-map@^1.1.0, convert-source-map@^1.4.0: +continuable-cache@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" + +convert-source-map@^1.1.0, convert-source-map@^1.1.1, convert-source-map@^1.4.0: version "1.5.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" @@ -1278,6 +1685,10 @@ decamelize@^1.0.0, decamelize@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" @@ -1288,6 +1699,10 @@ default-require-extensions@^1.0.0: dependencies: strip-bom "^2.0.0" +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + del@^2.0.2: version "2.2.2" resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" @@ -1324,16 +1739,47 @@ destroy@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" +detab@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.0.tgz#485bd7954d2348092e998f7ff1a79fd9869d9b50" + dependencies: + repeat-string "^1.5.4" + detect-indent@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" dependencies: repeating "^2.0.0" +detective@^4.0.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" + dependencies: + acorn "^4.0.3" + defined "^1.0.0" + +diff@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" + diff@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" +disparity@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/disparity/-/disparity-2.0.0.tgz#57ddacb47324ae5f58d2cc0da886db4ce9eeb718" + dependencies: + ansi-styles "^2.0.1" + diff "^1.3.2" + +doctrine-temporary-fork@2.0.0-alpha-allowarrayindex: + version "2.0.0-alpha-allowarrayindex" + resolved "https://registry.yarnpkg.com/doctrine-temporary-fork/-/doctrine-temporary-fork-2.0.0-alpha-allowarrayindex.tgz#40015a867eb27e75b26c828b71524f137f89f9f0" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -1348,6 +1794,60 @@ doctrine@^2.0.0: esutils "^2.0.2" isarray "^1.0.0" +"documentation@git://github.com/documentationjs/documentation.git#4ba0a822a2475b36e7a68405391d9841c33c08a0": + version "4.0.0-rc.1" + resolved "git://github.com/documentationjs/documentation.git#4ba0a822a2475b36e7a68405391d9841c33c08a0" + dependencies: + ansi-html "^0.0.7" + babel-core "^6.17.0" + babel-generator "6.24.1" + babel-plugin-system-import-transformer "3.1.0" + babel-plugin-transform-decorators-legacy "^1.3.4" + babel-preset-es2015 "^6.16.0" + babel-preset-react "^6.16.0" + babel-preset-stage-0 "^6.16.0" + babel-traverse "^6.16.0" + babel-types "^6.16.0" + babelify "^7.3.0" + babylon "^6.11.4" + chalk "^1.1.1" + chokidar "^1.2.0" + concat-stream "^1.5.0" + disparity "^2.0.0" + doctrine-temporary-fork "2.0.0-alpha-allowarrayindex" + get-comments "^1.0.1" + get-port "^3.1.0" + git-url-parse "^6.0.1" + github-slugger "1.1.1" + glob "^7.0.0" + globals-docs "^2.3.0" + highlight.js "^9.1.0" + js-yaml "^3.3.1" + lodash "^4.11.1" + mdast-util-inject "^1.1.0" + micromatch "^2.1.6" + mime "^1.3.4" + module-deps-sortable "4.0.6" + parse-filepath "^1.0.1" + pify "^2.3.0" + read-pkg-up "^2.0.0" + remark "^7.0.0" + remark-html "6.0.0" + remark-toc "^4.0.0" + remote-origin-url "0.4.0" + shelljs "^0.7.5" + stream-array "^1.1.0" + strip-json-comments "^2.0.0" + tiny-lr "^1.0.3" + unist-builder "^1.0.0" + unist-util-visit "^1.0.1" + vfile "^2.0.0" + vfile-reporter "^3.0.0" + vfile-sort "^2.0.0" + vinyl "^2.0.0" + vinyl-fs "^2.3.1" + yargs "^6.0.0" + dom-walk@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" @@ -1358,6 +1858,21 @@ duplexer2@0.0.2: dependencies: readable-stream "~1.1.9" +duplexer2@^0.1.2, duplexer2@~0.1.0: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + +duplexify@^3.2.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" + dependencies: + end-of-stream "1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + ecc-jsbn@~0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" @@ -1368,12 +1883,22 @@ ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" +emoji-regex@^6.0.0: + version "6.4.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.4.2.tgz#a30b6fee353d406d96cfb9fa765bdc82897eff6e" + encoding@^0.1.11: version "0.1.12" resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" dependencies: iconv-lite "~0.4.13" +end-of-stream@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" + dependencies: + once "~1.3.0" + "errno@>=0.1.1 <0.2.0-0": version "0.1.4" resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" @@ -1386,6 +1911,13 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" +error@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02" + dependencies: + string-template "~0.2.1" + xtend "~4.0.0" + errorhandler@~1.4.2: version "1.4.3" resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.4.3.tgz#b7b70ed8f359e9db88092f2d20c0f831420ad83f" @@ -1656,7 +2188,13 @@ express-session@~1.11.3: uid-safe "~2.0.0" utils-merge "1.0.0" -extend@~3.0.0: +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + dependencies: + is-extendable "^0.1.0" + +extend@^3.0.0, extend@~3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" @@ -1681,6 +2219,12 @@ fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" +faye-websocket@~0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + fb-watchman@^1.8.0: version "1.9.2" resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" @@ -1769,12 +2313,16 @@ find-up@^1.0.0: path-exists "^2.0.0" pinkie-promise "^2.0.0" -find-up@^2.1.0: +find-up@^2.0.0, find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" dependencies: locate-path "^2.0.0" +first-chunk-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" + flat-cache@^1.2.1: version "1.2.2" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" @@ -1830,6 +2378,30 @@ fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" +fsevents@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.29" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + function-bind@^1.0.2: version "1.1.0" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" @@ -1844,6 +2416,19 @@ gauge@~1.2.5: lodash.padend "^4.1.0" lodash.padstart "^4.1.0" +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + generate-function@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" @@ -1858,7 +2443,15 @@ get-caller-file@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" -get-stdin@5.0.1: +get-comments@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-comments/-/get-comments-1.0.1.tgz#196759101bbbc4facf13060caaedd4870dee55be" + +get-port@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" + +get-stdin@5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" @@ -1868,6 +2461,25 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +git-up@^2.0.0: + version "2.0.8" + resolved "https://registry.yarnpkg.com/git-up/-/git-up-2.0.8.tgz#24be049c9f0b193481d2df4e016a16530a5f4ef4" + dependencies: + is-ssh "^1.3.0" + parse-url "^1.3.0" + +git-url-parse@^6.0.1: + version "6.2.2" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-6.2.2.tgz#be49024e14b8487553436b4572b8b439532fa871" + dependencies: + git-up "^2.0.0" + +github-slugger@1.1.1, github-slugger@^1.0.0, github-slugger@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.1.1.tgz#5444671f65e5a5a424cfa8ba3255cc1f7baf07ea" + dependencies: + emoji-regex "^6.0.0" + glob-base@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" @@ -1881,6 +2493,26 @@ glob-parent@^2.0.0: dependencies: is-glob "^2.0.0" +glob-parent@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-stream@^5.3.2: + version "5.3.5" + resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" + dependencies: + extend "^3.0.0" + glob "^5.0.3" + glob-parent "^3.0.0" + micromatch "^2.3.7" + ordered-read-streams "^0.3.0" + through2 "^0.6.0" + to-absolute-glob "^0.1.1" + unique-stream "^2.0.2" + glob@7.1.1, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" @@ -1892,6 +2524,16 @@ glob@7.1.1, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^5.0.3: + version "5.0.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + global@^4.3.0: version "4.3.2" resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" @@ -1899,6 +2541,10 @@ global@^4.3.0: min-document "^2.19.0" process "~0.5.1" +globals-docs@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/globals-docs/-/globals-docs-2.3.0.tgz#dca4088af196f7800f4eba783eaeff335cb6759c" + globals@^9.0.0, globals@^9.14.0: version "9.17.0" resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" @@ -1920,7 +2566,7 @@ glogg@^1.0.0: dependencies: sparkles "^1.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9: +graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" @@ -1932,6 +2578,16 @@ growly@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" +gulp-sourcemaps@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" + dependencies: + convert-source-map "^1.1.1" + graceful-fs "^4.1.2" + strip-bom "^2.0.0" + through2 "^2.0.0" + vinyl "^1.0.0" + gulp-util@^3.0.4: version "3.0.8" resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" @@ -2008,6 +2664,38 @@ has@^1.0.1: dependencies: function-bind "^1.0.2" +hast-util-is-element@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.0.0.tgz#3f7216978b2ae14d98749878782675f33be3ce00" + +hast-util-sanitize@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hast-util-sanitize/-/hast-util-sanitize-1.1.0.tgz#9b4bc3731043fe92e1253a9a4ca7bcc4148d06f2" + dependencies: + has "^1.0.1" + xtend "^4.0.1" + +hast-util-to-html@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-3.0.0.tgz#19a257cd7af464777c1cccf4d2d53d33147466c1" + dependencies: + ccount "^1.0.0" + comma-separated-tokens "^1.0.1" + has "^1.0.1" + hast-util-is-element "^1.0.0" + hast-util-whitespace "^1.0.0" + html-void-elements "^1.0.0" + kebab-case "^1.0.0" + property-information "^3.1.0" + space-separated-tokens "^1.0.0" + stringify-entities "^1.0.1" + unist-util-is "^2.0.0" + xtend "^4.0.1" + +hast-util-whitespace@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-1.0.0.tgz#bd096919625d2936e1ff17bc4df7fd727f17ece9" + hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -2017,6 +2705,10 @@ hawk@~3.1.3: hoek "2.x.x" sntp "1.x.x" +highlight.js@^9.1.0: + version "9.11.0" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.11.0.tgz#47f98c7399918700db2caf230ded12cec41a84ae" + hoek@2.x.x: version "2.16.3" resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" @@ -2038,6 +2730,10 @@ html-encoding-sniffer@^1.0.1: dependencies: whatwg-encoding "^1.0.1" +html-void-elements@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.1.tgz#f929bea267a19e3535950502ca12c159f1b559af" + http-errors@~1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.3.1.tgz#197e22cdebd4198585e8694ef6786197b91ed942" @@ -2088,10 +2784,14 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@~2.0.1: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" +ini@^1.3.3, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + inquirer@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" @@ -2124,11 +2824,43 @@ invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" +irregular-plurals@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" + +is-absolute@^0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" + dependencies: + is-relative "^0.2.1" + is-windows "^0.2.0" + +is-alphabetical@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.0.tgz#e2544c13058255f2144cb757066cd3342a1c8c46" + +is-alphanumeric@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" + +is-alphanumerical@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.0.tgz#e06492e719c1bf15dec239e4f1af5f67b4d6e7bf" + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" -is-buffer@^1.1.5: +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.4, is-buffer@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" @@ -2144,6 +2876,10 @@ is-ci@^1.0.10: dependencies: ci-info "^1.0.0" +is-decimal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.0.tgz#940579b6ea63c628080a69e62bda88c8470b4fe0" + is-dotfile@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" @@ -2154,7 +2890,7 @@ is-equal-shallow@^0.1.3: dependencies: is-primitive "^2.0.0" -is-extendable@^0.1.1: +is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -2162,6 +2898,10 @@ is-extglob@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" +is-extglob@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + is-finite@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" @@ -2184,6 +2924,16 @@ is-glob@^2.0.0, is-glob@^2.0.1: dependencies: is-extglob "^1.0.0" +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-hexadecimal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.0.tgz#5c459771d2af9a2e3952781fd54fcb1bcfe4113c" + is-my-json-valid@^2.10.0: version "2.16.0" resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" @@ -2215,6 +2965,10 @@ is-path-inside@^1.0.0: dependencies: path-is-inside "^1.0.1" +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + is-posix-bracket@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" @@ -2227,13 +2981,25 @@ is-property@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" +is-relative@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" + dependencies: + is-unc-path "^0.1.1" + is-resolvable@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" dependencies: tryit "^1.0.1" -is-stream@^1.0.1: +is-ssh@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.0.tgz#ebea1169a2614da392a63740366c3ce049d8dff6" + dependencies: + protocols "^1.1.0" + +is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -2241,10 +3007,32 @@ is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" +is-unc-path@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" + dependencies: + unc-path-regex "^0.1.0" + is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" +is-valid-glob@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" + +is-whitespace-character@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.0.tgz#bbf4a83764ead0d451bec2a55218e91961adc275" + +is-windows@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" + +is-word-character@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.0.tgz#a3a9e5ddad70c5c2ee36f4a9cfc9a53f44535247" + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -2597,7 +3385,7 @@ js-tokens@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" -js-yaml@^3.5.1, js-yaml@^3.7.0: +js-yaml@^3.3.1, js-yaml@^3.5.1, js-yaml@^3.7.0: version "3.8.4" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" dependencies: @@ -2672,6 +3460,10 @@ jsonify@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + jsonpointer@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" @@ -2689,6 +3481,10 @@ jsx-ast-utils@^1.3.4: version "1.4.1" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" +kebab-case@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/kebab-case/-/kebab-case-1.0.0.tgz#3f9e4990adcad0c686c0e701f7645868f75f91eb" + kind-of@^3.0.2: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -2705,6 +3501,12 @@ lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" +lazystream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" + dependencies: + readable-stream "^2.0.5" + lcid@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" @@ -2726,6 +3528,10 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +livereload-js@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.2.2.tgz#6c87257e648ab475bc24ea257457edcc1f8d0bc2" + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -2736,6 +3542,15 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -2797,6 +3612,10 @@ lodash.isarray@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" +lodash.isequal@^4.0.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + lodash.keys@^3.0.0: version "3.1.2" resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" @@ -2846,10 +3665,20 @@ lodash@^3.5.0: version "3.10.1" resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" -lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.16.6, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1: +lodash@^4.0.0, lodash@^4.11.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.16.6, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1: version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + dependencies: + chalk "^1.0.0" + +longest-streak@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.1.tgz#42d291b5411e40365c00e63193497e2247316e35" + longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" @@ -2873,10 +3702,77 @@ makeerror@1.0.x: dependencies: tmpl "1.0.x" +map-cache@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + +markdown-escapes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.0.tgz#c8ca19f1d94d682459e0a93c86db27a7ef716b23" + +markdown-table@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.0.tgz#1f5ae61659ced8808d882554c32e8b3f38dd1143" + +mdast-util-compact@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.0.tgz#4c94dedfe35932d5457f29b650b330fdc73e994a" + dependencies: + unist-util-modify-children "^1.0.0" + unist-util-visit "^1.1.0" + +mdast-util-definitions@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-1.2.0.tgz#00f67b4289ed36bafc0977b558414ac0c5023b24" + dependencies: + has "^1.0.1" + unist-util-visit "^1.0.0" + +mdast-util-inject@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-inject/-/mdast-util-inject-1.1.0.tgz#db06b8b585be959a2dcd2f87f472ba9b756f3675" + dependencies: + mdast-util-to-string "^1.0.0" + +mdast-util-to-hast@^2.1.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-2.4.0.tgz#63ce8e43c61d8e5728954a3515e0c936a3b26cea" + dependencies: + collapse-white-space "^1.0.0" + detab "^2.0.0" + has "^1.0.1" + mdast-util-definitions "^1.2.0" + normalize-uri "^1.0.0" + trim "0.0.1" + trim-lines "^1.0.0" + unist-builder "^1.0.1" + unist-util-generated "^1.1.0" + unist-util-position "^3.0.0" + unist-util-visit "^1.1.0" + xtend "^4.0.1" + +mdast-util-to-string@^1.0.0, mdast-util-to-string@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.0.2.tgz#dc996a24d2b521178d3fac3993680c03a683e1dd" + +mdast-util-toc@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-toc/-/mdast-util-toc-2.0.1.tgz#b1d2cb23bfb01f812fa7b55bffe8b0a8bedf6f21" + dependencies: + github-slugger "^1.1.1" + mdast-util-to-string "^1.0.2" + unist-util-visit "^1.1.0" + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" +merge-stream@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + dependencies: + readable-stream "^2.0.1" + merge@^1.1.3: version "1.2.0" resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" @@ -2894,7 +3790,7 @@ methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" -micromatch@^2.1.5, micromatch@^2.3.11: +micromatch@^2.1.5, micromatch@^2.1.6, micromatch@^2.3.11, micromatch@^2.3.7: version "2.3.11" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" dependencies: @@ -2946,7 +3842,7 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" -minimatch@^3.0.2, minimatch@^3.0.3: +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: @@ -2960,12 +3856,31 @@ minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" -mkdirp@^0.5.0, mkdirp@^0.5.1: +"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: minimist "0.0.8" +module-deps-sortable@4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/module-deps-sortable/-/module-deps-sortable-4.0.6.tgz#1251a4ba2c44a92df6989bd029da121a4f2109b0" + dependencies: + JSONStream "^1.0.3" + browser-resolve "^1.7.0" + concat-stream "~1.5.0" + defined "^1.0.0" + detective "^4.0.0" + duplexer2 "^0.1.2" + inherits "^2.0.1" + parents "^1.0.0" + readable-stream "^2.0.2" + resolve "^1.1.3" + stream-combiner2 "^1.1.1" + subarg "^1.0.0" + through2 "^2.0.0" + xtend "^4.0.0" + moment@2.x.x: version "2.18.1" resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f" @@ -3009,6 +3924,10 @@ mute-stream@0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" +nan@^2.3.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3041,6 +3960,27 @@ node-notifier@^5.0.2: shellwords "^0.1.0" which "^1.2.12" +node-pre-gyp@^0.6.29: + version "0.6.34" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" + dependencies: + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "^2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + normalize-package-data@^2.3.2: version "2.3.8" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" @@ -3056,6 +3996,10 @@ normalize-path@^2.0.1: dependencies: remove-trailing-separator "^1.0.1" +normalize-uri@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/normalize-uri/-/normalize-uri-1.1.0.tgz#01fb440c7fd059b9d9be8645aac14341efd059dd" + npmlog@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" @@ -3064,6 +4008,15 @@ npmlog@^2.0.4: are-we-there-yet "~1.1.2" gauge "~1.2.5" +npmlog@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" @@ -3080,7 +4033,7 @@ object-assign@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" -object-assign@^4.0.1, object-assign@^4.1.0: +object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -3101,12 +4054,18 @@ on-headers@~1.0.0, on-headers@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" -once@^1.3.0, once@^1.4.0: +once@^1.3.0, once@^1.3.3, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: wrappy "1" +once@~1.3.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" + dependencies: + wrappy "1" + onetime@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" @@ -3139,6 +4098,13 @@ options@>=0.0.5: version "0.0.6" resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" +ordered-read-streams@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" + dependencies: + is-stream "^1.0.1" + readable-stream "^2.0.1" + os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -3153,6 +4119,13 @@ os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" +osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + p-limit@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" @@ -3167,6 +4140,38 @@ p-map@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" +parents@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" + dependencies: + path-platform "~0.11.15" + +parse-entities@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.0.tgz#4bc58f35fdc8e65dded35a12f2e40223ca24a3f7" + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + has "^1.0.1" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + +parse-filepath@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" + dependencies: + is-absolute "^0.2.3" + map-cache "^0.2.0" + path-root "^0.1.1" + +parse-git-config@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-0.2.0.tgz#272833fdd15fea146fb75d336d236b963b6ff706" + dependencies: + ini "^1.3.3" + parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -3182,6 +4187,13 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" +parse-url@^1.3.0: + version "1.3.7" + resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-1.3.7.tgz#636cb6e32b88255c704e30ab4349676703267af8" + dependencies: + is-ssh "^1.3.0" + protocols "^1.4.0" + parse5@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" @@ -3190,6 +4202,10 @@ parseurl@~1.3.0, parseurl@~1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + path-exists@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" @@ -3212,6 +4228,20 @@ path-parse@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" +path-platform@~0.11.15: + version "0.11.15" + resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" + +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + dependencies: + path-root-regex "^0.1.0" + path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -3220,6 +4250,12 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" + pause@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/pause/-/pause-0.1.0.tgz#ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74" @@ -3275,6 +4311,12 @@ plist@^1.2.0: xmlbuilder "4.0.0" xmldom "0.1.x" +plur@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" + dependencies: + irregular-plurals "^1.0.0" + pluralize@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" @@ -3323,7 +4365,7 @@ private@^0.1.6: version "0.1.7" resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" -process-nextick-args@~1.0.6: +process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" @@ -3341,6 +4383,14 @@ promise@^7.1.1: dependencies: asap "~2.0.3" +property-information@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-3.1.0.tgz#1581bf8a445dfbfef759775a86700e8dda18b4a1" + +protocols@^1.1.0, protocols@^1.4.0: + version "1.4.5" + resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.5.tgz#21de1f441c4ef7094408ed9f1c94f7a114b87557" + prr@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" @@ -3357,7 +4407,7 @@ qs@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/qs/-/qs-4.0.0.tgz#c31d9b74ec27df75e543a86c78728ed8d4623607" -qs@~6.4.0: +qs@^6.4.0, qs@~6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" @@ -3376,6 +4426,13 @@ range-parser@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" +raw-body@~1.1.0: + version "1.1.7" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" + dependencies: + bytes "1" + string_decoder "0.10" + raw-body@~2.1.2: version "2.1.7" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" @@ -3384,6 +4441,15 @@ raw-body@~2.1.2: iconv-lite "0.4.13" unpipe "1.0.0" +rc@^1.1.7: + version "1.2.1" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + react-clone-referenced-element@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz#2bba8c69404c5e4a944398600bcc4c941f860682" @@ -3518,6 +4584,13 @@ read-pkg-up@^1.0.1: find-up "^1.0.0" read-pkg "^1.0.0" +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" @@ -3526,7 +4599,24 @@ read-pkg@^1.0.0: normalize-package-data "^2.3.2" path-type "^1.0.0" -readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +"readable-stream@>=1.0.33-1 <1.1.0-0": + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: version "2.2.9" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" dependencies: @@ -3547,6 +4637,38 @@ readable-stream@~1.1.8, readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" +readable-stream@~2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readable-stream@~2.1.0: + version "2.1.5" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" + dependencies: + buffer-shims "^1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + readline2@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" @@ -3610,6 +4732,84 @@ regjsparser@^0.1.4: dependencies: jsesc "~0.5.0" +remark-html@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/remark-html/-/remark-html-6.0.0.tgz#ade7d94b60e452158f28615218450682601dbfc1" + dependencies: + hast-util-sanitize "^1.0.0" + hast-util-to-html "^3.0.0" + mdast-util-to-hast "^2.1.1" + xtend "^4.0.1" + +remark-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-3.0.1.tgz#1b9f841a44d8f4fbf2246850265459a4eb354c80" + dependencies: + collapse-white-space "^1.0.2" + has "^1.0.1" + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + is-word-character "^1.0.0" + markdown-escapes "^1.0.0" + parse-entities "^1.0.2" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + trim "0.0.1" + trim-trailing-lines "^1.0.0" + unherit "^1.0.4" + unist-util-remove-position "^1.0.0" + vfile-location "^2.0.0" + xtend "^4.0.1" + +remark-slug@^4.0.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-4.2.2.tgz#3cfaa02e2e24d98405b296072f2ebbdfad279eb6" + dependencies: + github-slugger "^1.0.0" + mdast-util-to-string "^1.0.0" + unist-util-visit "^1.0.0" + +remark-stringify@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-3.0.1.tgz#79242bebe0a752081b5809516fa0c06edec069cf" + dependencies: + ccount "^1.0.0" + is-alphanumeric "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + longest-streak "^2.0.1" + markdown-escapes "^1.0.0" + markdown-table "^1.1.0" + mdast-util-compact "^1.0.0" + parse-entities "^1.0.2" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + stringify-entities "^1.0.1" + unherit "^1.0.4" + xtend "^4.0.1" + +remark-toc@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/remark-toc/-/remark-toc-4.0.0.tgz#1e99867a1bee1caebb8fa1d9f5f7605fdf7d8c56" + dependencies: + mdast-util-toc "^2.0.0" + remark-slug "^4.0.0" + +remark@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/remark/-/remark-7.0.1.tgz#a5de4dacfabf0f60a49826ef24c479807f904bfb" + dependencies: + remark-parse "^3.0.0" + remark-stringify "^3.0.0" + unified "^6.0.0" + +remote-origin-url@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/remote-origin-url/-/remote-origin-url-0.4.0.tgz#4d3e2902f34e2d37d1c263d87710b77eb4086a30" + dependencies: + parse-git-config "^0.2.0" + remove-trailing-separator@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" @@ -3618,7 +4818,7 @@ repeat-element@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" -repeat-string@^1.5.2: +repeat-string@^1.5.0, repeat-string@^1.5.2, repeat-string@^1.5.4: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" @@ -3632,7 +4832,11 @@ replace-ext@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" -request@^2.79.0: +replace-ext@1.0.0, replace-ext@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" + +request@^2.79.0, request@^2.81.0: version "2.81.0" resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" dependencies: @@ -3682,7 +4886,7 @@ resolve@1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" -resolve@^1.1.6, resolve@^1.3.2: +resolve@^1.1.3, resolve@^1.1.6, resolve@^1.3.2: version "1.3.3" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" dependencies: @@ -3708,7 +4912,7 @@ right-align@^0.1.1: dependencies: align-text "^0.1.1" -rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1: +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" dependencies: @@ -3736,6 +4940,10 @@ safe-buffer@^5.0.1, safe-buffer@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" +safe-json-parse@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" + sane@~1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" @@ -3829,10 +5037,14 @@ serve-static@~1.10.0: parseurl "~1.3.1" send "0.13.2" -set-blocking@^2.0.0: +set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + setimmediate@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" @@ -3858,6 +5070,10 @@ shellwords@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + simple-plist@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-0.2.1.tgz#71766db352326928cf3a807242ba762322636723" @@ -3906,6 +5122,12 @@ source-map@~0.2.0: dependencies: amdefine ">=0.0.4" +space-separated-tokens@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.0.tgz#9e8c60407aa527742cd9eaee2541dec639f1269b" + dependencies: + trim "0.0.1" + sparkles@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" @@ -3947,6 +5169,10 @@ stacktrace-parser@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" +state-toggle@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.0.tgz#d20f9a616bb4f0c3b98b91922d25b640aa2bc425" + statuses@1: version "1.3.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" @@ -3955,23 +5181,44 @@ statuses@~1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.2.1.tgz#dded45cc18256d51ed40aec142489d5c61026d28" +stream-array@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/stream-array/-/stream-array-1.1.2.tgz#9e5f7345f2137c30ee3b498b9114e80b52bb7eb5" + dependencies: + readable-stream "~2.1.0" + stream-buffers@~2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" +stream-combiner2@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" + dependencies: + duplexer2 "~0.1.0" + readable-stream "^2.0.2" + stream-counter@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/stream-counter/-/stream-counter-0.2.0.tgz#ded266556319c8b0e222812b9cf3b26fa7d947de" dependencies: readable-stream "~1.1.8" +stream-shift@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" + string-length@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" dependencies: strip-ansi "^3.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-template@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" + +string-width@^1.0.0, string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" dependencies: @@ -3986,7 +5233,7 @@ string-width@^2.0.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^3.0.0" -string_decoder@~0.10.x: +string_decoder@0.10, string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" @@ -3996,6 +5243,16 @@ string_decoder@~1.0.0: dependencies: safe-buffer "^5.0.1" +stringify-entities@^1.0.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.0.tgz#2244a516c4f1e8e01b73dad01023016776abd917" + dependencies: + character-entities-html4 "^1.0.0" + character-entities-legacy "^1.0.0" + has "^1.0.1" + is-alphanumerical "^1.0.0" + is-hexadecimal "^1.0.0" + stringstream@~0.0.4: version "0.0.5" resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" @@ -4006,6 +5263,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-bom-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" + dependencies: + first-chunk-stream "^1.0.0" + strip-bom "^2.0.0" + strip-bom@3.0.0, strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -4016,10 +5280,16 @@ strip-bom@^2.0.0: dependencies: is-utf8 "^0.2.0" -strip-json-comments@~2.0.1: +strip-json-comments@^2.0.0, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + dependencies: + minimist "^1.1.0" + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -4045,6 +5315,27 @@ table@^3.7.8: slice-ansi "0.0.4" string-width "^2.0.0" +tar-pack@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + temp@0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" @@ -4070,14 +5361,28 @@ throat@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" -through2@^2.0.0: +through2-filter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" + dependencies: + through2 "~2.0.0" + xtend "~4.0.0" + +through2@^0.6.0: + version "0.6.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" + dependencies: + readable-stream ">=1.0.33-1 <1.1.0-0" + xtend ">=4.0.0 <4.1.0-0" + +through2@^2.0.0, through2@^2.0.1, through2@~2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" dependencies: readable-stream "^2.1.5" xtend "~4.0.1" -through@^2.3.6: +"through@>=2.2.7 <3", through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -4085,10 +5390,27 @@ time-stamp@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" +tiny-lr@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.0.4.tgz#d13becf37f8b7e963320f5743298e3e934c7329a" + dependencies: + body "^5.1.0" + debug "~2.2.0" + faye-websocket "~0.10.0" + livereload-js "^2.2.2" + object-assign "^4.1.0" + qs "^6.4.0" + tmpl@1.0.x: version "1.0.4" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" +to-absolute-glob@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" + dependencies: + extend-shallow "^2.0.1" + to-fast-properties@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" @@ -4109,10 +5431,26 @@ tr46@~0.0.3: version "0.0.3" resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" +trim-lines@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.0.tgz#9926d03ede13ba18f7d42222631fb04c79ff26fe" + trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" +trim-trailing-lines@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz#7aefbb7808df9d669f6da2e438cac8c46ada7684" + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + +trough@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.0.tgz#6bdedfe7f2aa49a6f3c432257687555957f342fd" + tryit@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" @@ -4144,7 +5482,7 @@ type-is@~1.6.6: media-typer "0.3.0" mime-types "~2.1.15" -typedarray@^0.0.6: +typedarray@^0.0.6, typedarray@~0.0.5: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" @@ -4165,6 +5503,10 @@ uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + uid-safe@2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" @@ -4185,6 +5527,77 @@ ultron@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.0.tgz#b07a2e6a541a815fc6a34ccd4533baec307ca864" +unc-path-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + +unherit@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" + dependencies: + inherits "^2.0.1" + xtend "^4.0.1" + +unified@^6.0.0: + version "6.1.3" + resolved "https://registry.yarnpkg.com/unified/-/unified-6.1.3.tgz#c26a9df2c56f3def938309253928f37150c70c6e" + dependencies: + bail "^1.0.0" + extend "^3.0.0" + has "^1.0.1" + is-plain-obj "^1.1.0" + trough "^1.0.0" + vfile "^2.0.0" + x-is-function "^1.0.4" + x-is-string "^0.1.0" + +unique-stream@^2.0.2: + version "2.2.1" + resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" + dependencies: + json-stable-stringify "^1.0.0" + through2-filter "^2.0.0" + +unist-builder@^1.0.0, unist-builder@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-1.0.2.tgz#8c3b9903ef64bcfb117dd7cf6a5d98fc1b3b27b6" + dependencies: + object-assign "^4.1.0" + +unist-util-generated@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.0.tgz#8c95657ff12b32eaffe0731fbb37da6995fae01b" + +unist-util-is@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.0.0.tgz#e536472c4f78739e164d0859fc3201b97cf46e7c" + +unist-util-modify-children@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-modify-children/-/unist-util-modify-children-1.1.0.tgz#559203ae85d7a76283277be1abfbaf595a177ead" + dependencies: + array-iterate "^1.0.0" + +unist-util-position@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.0.0.tgz#e6e1e03eeeb81c5e1afe553e8d4adfbd7c0d8f82" + +unist-util-remove-position@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.0.tgz#2444fedc344bc5f540dab6353e013b6d78101dc2" + dependencies: + unist-util-visit "^1.1.0" + +unist-util-stringify-position@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.0.tgz#e8ba9d6b6af891b5f8336b3a31c63a9dc85c2af0" + dependencies: + has "^1.0.1" + +unist-util-visit@^1.0.0, unist-util-visit@^1.0.1, unist-util-visit@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.1.1.tgz#e917a3b137658b335cb4420c7da2e74d928e4e94" + unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" @@ -4207,6 +5620,10 @@ uuid@3.0.1, uuid@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" +vali-date@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" + validate-npm-package-license@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" @@ -4228,10 +5645,63 @@ verror@1.3.6: dependencies: extsprintf "1.0.2" +vfile-location@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.1.tgz#0bf8816f732b0f8bd902a56fda4c62c8e935dc52" + +vfile-reporter@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-3.0.0.tgz#fe50714e373e0d2940510038a99bd609bdc8209f" + dependencies: + chalk "^1.1.0" + log-symbols "^1.0.2" + plur "^2.0.0" + repeat-string "^1.5.0" + string-width "^1.0.0" + strip-ansi "^3.0.1" + trim "0.0.1" + unist-util-stringify-position "^1.0.0" + +vfile-sort@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-2.0.0.tgz#7279458d111a9ba3b18effd9f8a0169bb7c5112b" + +vfile@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.0.1.tgz#bd48e68e8a2322dff0d162a37f45e70d9bb30466" + dependencies: + has "^1.0.1" + is-buffer "^1.1.4" + replace-ext "1.0.0" + unist-util-stringify-position "^1.0.0" + x-is-string "^0.1.0" + vhost@~3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/vhost/-/vhost-3.0.2.tgz#2fb1decd4c466aa88b0f9341af33dc1aff2478d5" +vinyl-fs@^2.3.1: + version "2.4.4" + resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" + dependencies: + duplexify "^3.2.0" + glob-stream "^5.3.2" + graceful-fs "^4.0.0" + gulp-sourcemaps "1.6.0" + is-valid-glob "^0.3.0" + lazystream "^1.0.0" + lodash.isequal "^4.0.0" + merge-stream "^1.0.0" + mkdirp "^0.5.0" + object-assign "^4.0.0" + readable-stream "^2.0.4" + strip-bom "^2.0.0" + strip-bom-stream "^1.0.0" + through2 "^2.0.0" + through2-filter "^2.0.0" + vali-date "^1.0.0" + vinyl "^1.0.0" + vinyl@^0.5.0: version "0.5.3" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" @@ -4240,6 +5710,26 @@ vinyl@^0.5.0: clone-stats "^0.0.1" replace-ext "0.0.1" +vinyl@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" + dependencies: + clone "^1.0.0" + clone-stats "^0.0.1" + replace-ext "0.0.1" + +vinyl@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.0.2.tgz#0a3713d8d4e9221c58f10ca16c0116c9e25eda7c" + dependencies: + clone "^1.0.0" + clone-buffer "^1.0.0" + clone-stats "^1.0.0" + cloneable-readable "^1.0.0" + is-stream "^1.1.0" + remove-trailing-separator "^1.0.1" + replace-ext "^1.0.0" + walker@~1.0.5: version "1.0.7" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" @@ -4258,17 +5748,23 @@ webidl-conversions@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" +websocket-driver@>=0.5.1: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + dependencies: + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" + whatwg-encoding@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" dependencies: iconv-lite "0.4.13" -whatwg-fetch@>=0.10.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" - -whatwg-fetch@^1.0.0: +whatwg-fetch@>=0.10.0, whatwg-fetch@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" @@ -4289,6 +5785,12 @@ which@^1.2.12, which@^1.2.9: dependencies: isexe "^2.0.0" +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + window-size@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" @@ -4351,6 +5853,14 @@ ws@^2.0.3: safe-buffer "~5.0.1" ultron "~1.1.0" +x-is-function@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/x-is-function/-/x-is-function-1.0.4.tgz#5d294dc3d268cbdd062580e0c5df77a391d1fa1e" + +x-is-string@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" + xcode@^0.9.1: version "0.9.3" resolved "https://registry.yarnpkg.com/xcode/-/xcode-0.9.3.tgz#910a89c16aee6cc0b42ca805a6d0b4cf87211cf3" @@ -4387,7 +5897,7 @@ xpipe@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" -"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1: +"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" @@ -4411,7 +5921,7 @@ yargs-parser@^5.0.0: dependencies: camelcase "^3.0.0" -yargs@^6.4.0: +yargs@^6.0.0, yargs@^6.4.0: version "6.6.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" dependencies: