René's URL Explorer Experiment


Title: feat: Add experimental closures support with feature flag by BlobMaster41 · Pull Request #2964 · AssemblyScript/assemblyscript · GitHub

Open Graph Title: feat: Add experimental closures support with feature flag by BlobMaster41 · Pull Request #2964 · AssemblyScript/assemblyscript

X Title: feat: Add experimental closures support with feature flag by BlobMaster41 · Pull Request #2964 · AssemblyScript/assemblyscript

Description: Fixes #798. Related: #173, #563, #2054, #2753. Changes proposed in this pull request: ⯈ Added experimental closures feature - Closures can now capture variables from their enclosing scope. This includes support for: Capturing parameters and local variables (both let and var) Capturing this directly in class methods Read and write access to captured variables (reference semantics) Multiple closures sharing the same environment Deeply nested closures (capturing from grandparent scopes) Higher-order functions (map, filter, reduce patterns) Factory patterns, memoization, and other functional programming idioms ⯈ Implemented as an opt-in feature flag - Closures are disabled by default to maintain backwards compatibility and expected behavior. Users must explicitly enable the feature with --enable closures. This ensures: No changes to existing code behavior No additional runtime overhead for code that doesn't use closures Indirect calls without closures enabled use simpler codegen ⯈ Added compile-time constant ASC_FEATURE_CLOSURES - Allows conditional compilation based on whether closures are enabled ⯈ Added comprehensive test suites: closure.ts - Basic closure patterns (captures, mutations, shared environments) closure-stress.ts - Stress tests covering many edge cases (616 lines) closure-class.ts - Complex class patterns with closures (1000+ lines) including: State management (BankAccount, Counter) Design patterns (Builder, Factory, Observer, State Machine, Iterator) Inheritance with closures Callback-based "async" patterns Tree traversal with recursive closures Implementation Details The implementation follows the approach discussed in #798: Closure Environment: Captured variables are stored in a heap-allocated environment structure Multiple closures in the same scope share a single environment (reference semantics) Nested closures maintain a chain of environments via parent pointers Environment structures are managed by the runtime (GC-compatible) First-Class Functions: Function references contain both a table index and an _env pointer When calling through a function reference, the _env is loaded and made available Non-closure functions have _env = 0, avoiding overhead when closures aren't used Core changes in src/compiler.ts: Pre-scan phase (prescanForClosures) identifies closures and captured variables before compilation Environment allocation creates heap-allocated storage for captured variables Closure load/store operations route through the environment Dynamic Function objects are created with environment pointers for closures Feature checks gate closure functionality at detection points Indirect calls only set up closure environment handling when the feature is enabled Supporting changes: std/assembly/shared/feature.ts - Added Feature.Closures enum value src/common.ts - Added ASC_FEATURE_CLOSURES constant name src/program.ts - Registered compile-time constant src/index-wasm.ts - Exported FEATURE_CLOSURES for CLI src/flow.ts - Added flow tracking for captured variables Limitations This is an experimental implementation. Known limitations: Performance: Each closure creation involves a heap allocation for the environment Usage # Closures disabled (default) - captures produce an error asc myfile.ts # Enable closures explicitly asc myfile.ts --enable closures // Example closure usage (requires --enable closures) function makeCounter(): () => i32 { let count = 0; return (): i32 => { count += 1; return count; }; } let counter = makeCounter(); counter(); // 1 counter(); // 2 counter(); // 3 I've read the contributing guidelines I've added my name and email to the NOTICE file

Open Graph Description: Fixes #798. Related: #173, #563, #2054, #2753. Changes proposed in this pull request: ⯈ Added experimental closures feature - Closures can now capture variables from their enclosing scope. This inc...

X Description: Fixes #798. Related: #173, #563, #2054, #2753. Changes proposed in this pull request: ⯈ Added experimental closures feature - Closures can now capture variables from their enclosing scope. This inc...

Opengraph URL: https://github.com/AssemblyScript/assemblyscript/pull/2964

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:40e33eed-bdce-671d-72ef-be7b58a108ee
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-idECEA:3406D0:787D79B:9FE7B2E:696DF484
html-safe-nonce304ff19fd113a7e0bd7b6044fccabead5378e728aebd7a65bfcadfc1762f3655
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQ0VBOjM0MDZEMDo3ODdENzlCOjlGRTdCMkU6Njk2REY0ODQiLCJ2aXNpdG9yX2lkIjoiMTA3Njc0ODg1MjYzMTgyNzU4OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace8ed401285740c0b3ce1da0de61b952c0c415d15b9f524f6872b38f43a49a767
hovercard-subject-tagpull_request:3091551973
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/AssemblyScript/assemblyscript/pull/2964/checks
twitter:imagehttps://avatars.githubusercontent.com/u/96896824?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/96896824?s=400&v=4
og:image:altFixes #798. Related: #173, #563, #2054, #2753. Changes proposed in this pull request: ⯈ Added experimental closures feature - Closures can now capture variables from their enclosing scope. This inc...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4922b452d03cd8dbce479d866a11bc25b59ef6ee2da23aa9b0ddefa6bd4d0064
turbo-cache-controlno-preview
go-importgithub.com/AssemblyScript/assemblyscript git https://github.com/AssemblyScript/assemblyscript.git
octolytics-dimension-user_id28916798
octolytics-dimension-user_loginAssemblyScript
octolytics-dimension-repository_id105138356
octolytics-dimension-repository_nwoAssemblyScript/assemblyscript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id105138356
octolytics-dimension-repository_network_root_nwoAssemblyScript/assemblyscript
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7e5ae23c70136152637ceee8d6faceb35596ec46
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAssemblyScript%2Fassemblyscript%2Fpull%2F2964%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
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
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
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
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/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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAssemblyScript%2Fassemblyscript%2Fpull%2F2964%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=AssemblyScript%2Fassemblyscript
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
AssemblyScript https://patch-diff.githubusercontent.com/AssemblyScript
assemblyscripthttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Fork 682 https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Star 17.8k https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Code https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Issues 175 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/issues
Pull requests 17 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulls
Actions https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions
Wiki https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/security
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
Insights https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulse
Code https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Issues https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/issues
Pull requests https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulls
Actions https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions
Wiki https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/wiki
Security https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/security
Insights https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FAssemblyScript%2Fassemblyscript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript%2Fissues%2Fnew%2Fchoose
BlobMaster41https://patch-diff.githubusercontent.com/BlobMaster41
AssemblyScript:mainhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/tree/main
btc-vision:mainhttps://patch-diff.githubusercontent.com/btc-vision/assemblyscript/tree/main
Conversation 27 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964
Commits 26 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/commits
Checks 0 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
Files changed 25 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/files
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
feat: Add experimental closures support with feature flag https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2964/checks
PR on: pull_request https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions/runs/20741564323
Test on: pull_request https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions/runs/20741564338
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.