René's URL Explorer Experiment


Title: Renaming constant variable in class static block results in TypeError · Issue #1141 · javascript-obfuscator/javascript-obfuscator · GitHub

Open Graph Title: Renaming constant variable in class static block results in TypeError · Issue #1141 · javascript-obfuscator/javascript-obfuscator

X Title: Renaming constant variable in class static block results in TypeError · Issue #1141 · javascript-obfuscator/javascript-obfuscator

Description: According to the ECMAScript specification, running a JavaScript program class x { static { const x = { x } = 0 ; } } is expected to result in ReferenceError but after obfuscating the JavaScript program, it results in TypeError. Expected ...

Open Graph Description: According to the ECMAScript specification, running a JavaScript program class x { static { const x = { x } = 0 ; } } is expected to result in ReferenceError but after obfuscating the JavaScript pro...

X Description: According to the ECMAScript specification, running a JavaScript program class x { static { const x = { x } = 0 ; } } is expected to result in ReferenceError but after obfuscating the JavaScript pro...

Opengraph URL: https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Renaming constant variable in class static block results in TypeError","articleBody":"According to the ECMAScript specification, running a JavaScript program `class x { static { const x = { x } = 0 ; } }` is expected to result in `ReferenceError` but after obfuscating the JavaScript program, it results in `TypeError`.\r\n\r\n\u003c!-- Love javascript-obfuscator? Please consider supporting our collective:\r\n👉  https://opencollective.com/javascript-obfuscator/donate --\u003e\r\n\r\n\u003c!--- Provide a general summary of the issue in the Title above --\u003e\r\n\r\n## Expected Behavior\r\n\u003c!--- Tell us what should happen --\u003e\r\n\u003c!-- Expected ReferenceError but got TypeError from the obfuscated code. --\u003e\r\n\r\nRunning the following JavaScript code using Node.js results in ReferenceError.\r\n\r\n```JavaScript\r\nclass x { static { const x = { x } = 0 ; } }\r\n```\r\n\u003cimg width=\"456\" alt=\"obfuscator_referenceerror\" src=\"https://user-images.githubusercontent.com/48983829/213082925-ceabb5ed-5da6-431f-8365-b15c4ba2edd3.png\"\u003e\r\n\r\n## Current Behavior\r\n\u003c!--- Tell us what happens instead of the expected behavior --\u003e\r\n\r\nHowever, as shown below, running the obfuscated code using Node.js results in TypeError.\r\n\r\nObfuscated code\r\n```JavaScript\r\nclass x{static{const _0x2340e4={x}=0x0;}}\r\n```\r\n\u003cimg width=\"377\" alt=\"obfuscator_typeerror\" src=\"https://user-images.githubusercontent.com/48983829/213082935-a88c18b2-91ee-43b8-b84e-f9dc85b1101f.png\"\u003e\r\n\r\nIn summary, obfuscated code results in `TypeError`, because obfuscator have renamed constant variable in class static block. (e.g. `x` to `_0x2340e4`)\r\n1. Original code and obfuscated code both evaluates `{ x } = 0` and `{x}=0x0` to initialize `x` in `x = { x } = 0` and `_0x2340e4` in `_0x2340e4={x}=0x0`.\r\n2. When resolving `x` in `{x}`, the original code resolves to `x` in `const x` and the obfuscated code resolves to `x` in `class x`.\r\n3. In case of the original code,\r\n    1. `ReferenceError` exception arises because it tries to set mutable binding for uninitialized `x`, which refers to `const x`.\r\n4. In case of the obfuscated code,\r\n    1. the `TypeError` exception arises because it tries to change the value of an immutable binding `x`, which refers to  `class x`.\r\n\r\n\r\n## Steps to Reproduce\r\n\u003c!--- Provide a link to a live example, or an unambiguous set of steps to --\u003e\r\n\u003c!--- reproduce this bug. Include code to reproduce, if relevant --\u003e\r\n1. Obfuscate the following program using https://obfuscator.io.\r\n2. Run the following program using Node.js v18.13.0.\r\n\r\n## Your Environment\r\n\u003c!--- Include as many relevant details about the environment you experienced the bug in --\u003e\r\n* Obfuscator version used: https://obfuscator.io.\r\n* Node version used: v18.13.0\r\n\r\n# Stack trace\r\n\u003c!--- Include stack trace --\u003e\r\n\r\n## Minimal working example that will help to reproduce issue\r\n\u003c!--- Include code --\u003e\r\n\r\n* * *\r\nBelow is a detailed explanation using ECMAScript specification.\r\n\r\nEvaluation of `class x { static { const x = { x } = 0 ; } }` is done by following algorithms.\r\n\r\n### 1. [Operation ClassDefinitionEvaluation of ECMAScript specification](https://tc39.es/ecma262/#sec-runtime-semantics-classdefinitionevaluation)\r\n\r\nIn step 3, the algorithm creates an immutable binding of `x`.\r\n\r\nIn step 27, the algorithm initializes the binding of `x` with `F`.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_3\" src=\"https://user-images.githubusercontent.com/48983829/213086652-444f58ba-079f-46a6-9726-2d5bc36d1a8b.png\"\u003e\r\n\u003cimg width=\"700\" alt=\"obs_4\" src=\"https://user-images.githubusercontent.com/48983829/213086668-5b5ed8d2-3498-47ae-8c1f-3f7ce0f1bedb.png\"\u003e\r\n\r\nIn step 31-b, the algorithm calls **Call**_(initializer,receiver)_.\r\nwhere _initializer_ represents the `const x = { x } = 0 ;` and _receiver_ represents the evaluation result of *ClassDefinition* of x.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_5\" src=\"https://user-images.githubusercontent.com/48983829/213086687-58a74cba-1edd-4e2e-90c2-4c2972df3896.png\"\u003e\r\n\r\n### 2. [Operation ClassStaticBlockBody.EvaluateClassStaticBlockBody of the ECMAScript specification](https://tc39.es/ecma262/#sec-runtime-semantics-evaluateclassstaticblockbody)\r\n\r\nThis step evaluates the _ClassStaticBlockBody_, which represents `const x = { x } = 0 ;` and creates binding of variables in _ClassStaticBlockBody_ in class environment.\r\n\r\nIn step 1, the algorithm calls **FunctionDeclarationInstantiation**_(functionObject, \u003c\u003c\u003e\u003e)_, where functionObject represents the `const x = { x } = 0 ;`.\r\nThis step creates binding of `x`, which represents the constant variable name `const x`.\r\n\r\nIn step 2, the algorithm calls the evaluation of *ClassStaticBlockStatementList*, where *ClassStaticBlockStatementList* represents `const x = { x } = 0 ;`\r\n\r\n\u003cimg width=\"700\" alt=\"obs_10\" src=\"https://user-images.githubusercontent.com/48983829/213089286-e051a9cf-8676-485d-80bc-46a22ec175ba.png\"\u003e\r\n\r\n\r\n### 3. [Evaluation of _LexicalBinding_ in ECMAScript specification](https://tc39.es/ecma262/#sec-let-and-const-declarations-runtime-semantics-evaluation)\r\n*LexicalBinding* represents `x = {x} = 0`, and it can be divided into *BindingIdentifier* `x` and *Initializer* `= {x} = 0`.\r\n\r\nThis algorithm intends to resolve *bindingId* and evaluate *Initializer* to initialize binding at step 5.\r\n\r\nNote that binding for the constant variable `x` is **not initialized** until it reaches step 5. \r\n\r\nIn step 4, the algorithm calls the evaluation of *Initializer*.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_11\" src=\"https://user-images.githubusercontent.com/48983829/213089312-ca97f6bc-9ba8-499e-b3a5-b70b3fd0461a.png\"\u003e\r\n\r\n### 4. [Evaluation of _AssignmentExpression_ in ECMAScript specification](https://tc39.es/ecma262/#sec-assignment-operators-runtime-semantics-evaluation)\r\n\r\n*AssignmentExpression* represents `{x} = 0`, and it can be divided into *LeftHandSideExpression* `{x}` and *AssignmentExpression* `0`.\r\n\r\nIn step 5, the algorithm calls **DestructuringAssignmentEvaluation**_(value)_ of _assignmentPattern_, where _value_ represents 0 and _assignmentPattern_ represents `{x}`.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_12\" src=\"https://user-images.githubusercontent.com/48983829/213089835-c42cf0da-6661-4e42-9f97-ada32dc26f80.png\"\u003e\r\n\r\nThen, **DestructuringAssignmentEvaluation** calls **PropertyDestructuringAssignmentEvaluation**_(value)_, where _value_ represents 0.\r\n\r\n### 5. [Operation AssignmentProperty.PropertyDestructuringAssignmentEvaluation in ECMASCript specification](https://tc39.es/ecma262/#sec-runtime-semantics-propertydestructuringassignmentevaluation)\r\n\r\nIn step 2, the algorithm resolves `x` as the constant variable `x`.\r\n\r\nIn step 5, the algorithm calls **PutValue**_(V, W)_, where _V_ represents a reference of the constant variable `x` and _W_ rerpresents `undefined`.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_14\" src=\"https://user-images.githubusercontent.com/48983829/213090859-acb52282-5a33-47d2-bad8-5909b818b3ac.png\"\u003e\r\n\r\nThen, **PutValue** calls **SetMutableBinding**_(N, V, S)_ of _base_, where _base_ represents the environment that binding of constant variable `x` is stored, _N_ represents `x`, _V_ represents `undefined`, and _S_ represents `True`.\r\n\r\n### 6. [Operation SetMutableBinding in ECMAScript specification](https://tc39.es/ecma262/#sec-declarative-environment-records-setmutablebinding-n-v-s)\r\n\r\nIn step 3, the algorithm throws a **ReferenceError** exception, because the binding for N, which is `x` in envRec has not yet been initialized.\r\n\r\nIn detail, the `x` in envRec refers the `x` in `const x`. Therefore, it has not been initialized.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_16\" src=\"https://user-images.githubusercontent.com/48983829/213091849-16f6e1cf-79e9-478b-87db-82ace2e2d19d.png\"\u003e\r\n\r\n---\r\nIn comparison, the evaluation of the obfuscated JavaScript program, `class x{static{const _0x2340e4={x}=0x0;}}`, is similar but different in following steps.\r\n\r\n### 2. [Operation ClassStaticBlockBody.EvaluateClassStaticBlockBody of the ECMAScript specification](https://tc39.es/ecma262/#sec-runtime-semantics-evaluateclassstaticblockbody)\r\n\r\nIn step 1, the algorithm creates an immutable binding of `_0x2340e4` in class environment.\r\n\r\nIn step 2, the algorithm calls the evaluation of *ClassStaticBlockStatementList*, where *ClassStaticBlockStatementList* represents `const _0x2340e4 = { x } = 0x0 ;`.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_10\" src=\"https://user-images.githubusercontent.com/48983829/213089286-e051a9cf-8676-485d-80bc-46a22ec175ba.png\"\u003e\r\n\r\n\r\n### 5. [Operation AssignmentProperty.PropertyDestructuringAssignmentEvaluation in ECMASCript specification](https://tc39.es/ecma262/#sec-runtime-semantics-propertydestructuringassignmentevaluation)\r\n\r\nIn step 2, the algorithm resolves `x` as the class `x`.\r\n\r\nIn step 5, the algorithm calls **PutValue**_(V, W)_, where _V_ represents a reference of the class `x`.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_14\" src=\"https://user-images.githubusercontent.com/48983829/213090859-acb52282-5a33-47d2-bad8-5909b818b3ac.png\"\u003e\r\n\r\nThen, **PutValue** calls **SetMutableBinding**_(N, V, S)_ of _base_, where _base_ represents the environment that binding of class `x` is stored.\r\n\r\n### 6. [Operation SetMutableBinding in ECMAScript specification](https://tc39.es/ecma262/#sec-declarative-environment-records-setmutablebinding-n-v-s)\r\n\r\nIn step 5-b, the algorithm throws a **TypeError** exception, because the binding for `x` in envRec is an immutable binding (class binding).\r\n\r\nSince this is an attempt to change the value of an immuatble binding, the algorithm throws **TypeError** exception.\r\n\r\n\u003cimg width=\"700\" alt=\"obs_16\" src=\"https://user-images.githubusercontent.com/48983829/213091849-16f6e1cf-79e9-478b-87db-82ace2e2d19d.png\"\u003e\r\n","author":{"url":"https://github.com/nicolejrkim","@type":"Person","name":"nicolejrkim"},"datePublished":"2023-01-18T06:00:51.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/1141/javascript-obfuscator/issues/1141"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d3c52669-a6b9-f7ce-3928-a56020bbb7c5
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCE14:198EE1:52025:71FAF:6A62F6C7
html-safe-noncecfe5cc11aa18ff3d9930087b6f843d05f328c5c809a9987d8404ebaeb68f2b59
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRTE0OjE5OEVFMTo1MjAyNTo3MUZBRjo2QTYyRjZDNyIsInZpc2l0b3JfaWQiOiIzNzgzNjI3NjQyNzgyMjgzNDYzIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacafef810fbd67d5d4bf6abba6003f427bef3aa13b0bd60e779b8e796cc50bdc3a
hovercard-subject-tagissue:1537445903
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/javascript-obfuscator/javascript-obfuscator/1141/issue_layout
twitter:imagehttps://opengraph.githubassets.com/be18ec7d452d5142e896d6ce3a99de224772401a4e28d3239937f0840f55939b/javascript-obfuscator/javascript-obfuscator/issues/1141
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/be18ec7d452d5142e896d6ce3a99de224772401a4e28d3239937f0840f55939b/javascript-obfuscator/javascript-obfuscator/issues/1141
og:image:altAccording to the ECMAScript specification, running a JavaScript program class x { static { const x = { x } = 0 ; } } is expected to result in ReferenceError but after obfuscating the JavaScript pro...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamenicolejrkim
hostnamegithub.com
expected-hostnamegithub.com
Noneb415018e190e73858133ddcaa36acce7b3f3572fe54dda84bd3b21a6ec714c30
turbo-cache-controlno-preview
go-importgithub.com/javascript-obfuscator/javascript-obfuscator git https://github.com/javascript-obfuscator/javascript-obfuscator.git
octolytics-dimension-user_id23015672
octolytics-dimension-user_loginjavascript-obfuscator
octolytics-dimension-repository_id58360147
octolytics-dimension-repository_nwojavascript-obfuscator/javascript-obfuscator
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id58360147
octolytics-dimension-repository_network_root_nwojavascript-obfuscator/javascript-obfuscator
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release22f98521e99f504294ab0812b66104d50eb75a70
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-obfuscator%2Fjavascript-obfuscator%2Fissues%2F1141
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-obfuscator%2Fjavascript-obfuscator%2Fissues%2F1141
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=javascript-obfuscator%2Fjavascript-obfuscator
Reloadhttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141
Reloadhttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141
Reloadhttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141
Please reload this pagehttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141
javascript-obfuscator https://github.com/javascript-obfuscator
javascript-obfuscatorhttps://github.com/javascript-obfuscator/javascript-obfuscator
Please reload this pagehttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141
Notifications https://github.com/login?return_to=%2Fjavascript-obfuscator%2Fjavascript-obfuscator
Fork 1.7k https://github.com/login?return_to=%2Fjavascript-obfuscator%2Fjavascript-obfuscator
Star 16.2k https://github.com/login?return_to=%2Fjavascript-obfuscator%2Fjavascript-obfuscator
Code https://github.com/javascript-obfuscator/javascript-obfuscator
Issues 15 https://github.com/javascript-obfuscator/javascript-obfuscator/issues
Pull requests 5 https://github.com/javascript-obfuscator/javascript-obfuscator/pulls
Discussions https://github.com/javascript-obfuscator/javascript-obfuscator/discussions
Actions https://github.com/javascript-obfuscator/javascript-obfuscator/actions
Projects https://github.com/javascript-obfuscator/javascript-obfuscator/projects
Security and quality 0 https://github.com/javascript-obfuscator/javascript-obfuscator/security
Insights https://github.com/javascript-obfuscator/javascript-obfuscator/pulse
Code https://github.com/javascript-obfuscator/javascript-obfuscator
Issues https://github.com/javascript-obfuscator/javascript-obfuscator/issues
Pull requests https://github.com/javascript-obfuscator/javascript-obfuscator/pulls
Discussions https://github.com/javascript-obfuscator/javascript-obfuscator/discussions
Actions https://github.com/javascript-obfuscator/javascript-obfuscator/actions
Projects https://github.com/javascript-obfuscator/javascript-obfuscator/projects
Security and quality https://github.com/javascript-obfuscator/javascript-obfuscator/security
Insights https://github.com/javascript-obfuscator/javascript-obfuscator/pulse
#1396https://github.com/javascript-obfuscator/javascript-obfuscator/pull/1396
Renaming constant variable in class static block results in TypeErrorhttps://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141#top
#1396https://github.com/javascript-obfuscator/javascript-obfuscator/pull/1396
bughttps://github.com/javascript-obfuscator/javascript-obfuscator/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/nicolejrkim
nicolejrkimhttps://github.com/nicolejrkim
on Jan 18, 2023https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1141#issue-1537445903
https://user-images.githubusercontent.com/48983829/213082925-ceabb5ed-5da6-431f-8365-b15c4ba2edd3.png
https://user-images.githubusercontent.com/48983829/213082935-a88c18b2-91ee-43b8-b84e-f9dc85b1101f.png
https://obfuscator.iohttps://obfuscator.io
https://obfuscator.iohttps://obfuscator.io
Operation ClassDefinitionEvaluation of ECMAScript specificationhttps://tc39.es/ecma262/#sec-runtime-semantics-classdefinitionevaluation
https://user-images.githubusercontent.com/48983829/213086652-444f58ba-079f-46a6-9726-2d5bc36d1a8b.png
https://user-images.githubusercontent.com/48983829/213086668-5b5ed8d2-3498-47ae-8c1f-3f7ce0f1bedb.png
https://user-images.githubusercontent.com/48983829/213086687-58a74cba-1edd-4e2e-90c2-4c2972df3896.png
Operation ClassStaticBlockBody.EvaluateClassStaticBlockBody of the ECMAScript specificationhttps://tc39.es/ecma262/#sec-runtime-semantics-evaluateclassstaticblockbody
https://user-images.githubusercontent.com/48983829/213089286-e051a9cf-8676-485d-80bc-46a22ec175ba.png
Evaluation of LexicalBinding in ECMAScript specificationhttps://tc39.es/ecma262/#sec-let-and-const-declarations-runtime-semantics-evaluation
https://user-images.githubusercontent.com/48983829/213089312-ca97f6bc-9ba8-499e-b3a5-b70b3fd0461a.png
Evaluation of AssignmentExpression in ECMAScript specificationhttps://tc39.es/ecma262/#sec-assignment-operators-runtime-semantics-evaluation
https://user-images.githubusercontent.com/48983829/213089835-c42cf0da-6661-4e42-9f97-ada32dc26f80.png
Operation AssignmentProperty.PropertyDestructuringAssignmentEvaluation in ECMASCript specificationhttps://tc39.es/ecma262/#sec-runtime-semantics-propertydestructuringassignmentevaluation
https://user-images.githubusercontent.com/48983829/213090859-acb52282-5a33-47d2-bad8-5909b818b3ac.png
Operation SetMutableBinding in ECMAScript specificationhttps://tc39.es/ecma262/#sec-declarative-environment-records-setmutablebinding-n-v-s
https://user-images.githubusercontent.com/48983829/213091849-16f6e1cf-79e9-478b-87db-82ace2e2d19d.png
Operation ClassStaticBlockBody.EvaluateClassStaticBlockBody of the ECMAScript specificationhttps://tc39.es/ecma262/#sec-runtime-semantics-evaluateclassstaticblockbody
https://user-images.githubusercontent.com/48983829/213089286-e051a9cf-8676-485d-80bc-46a22ec175ba.png
Operation AssignmentProperty.PropertyDestructuringAssignmentEvaluation in ECMASCript specificationhttps://tc39.es/ecma262/#sec-runtime-semantics-propertydestructuringassignmentevaluation
https://user-images.githubusercontent.com/48983829/213090859-acb52282-5a33-47d2-bad8-5909b818b3ac.png
Operation SetMutableBinding in ECMAScript specificationhttps://tc39.es/ecma262/#sec-declarative-environment-records-setmutablebinding-n-v-s
https://user-images.githubusercontent.com/48983829/213091849-16f6e1cf-79e9-478b-87db-82ace2e2d19d.png
bughttps://github.com/javascript-obfuscator/javascript-obfuscator/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.