Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
D-R-R
/
JSIL
Public
forked from
sq/JSIL
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Commits
Breadcrumbs
History for
JSIL
JSIL
Transforms
IntroduceVariableReferences.cs
on
NoDynamic
User selector
All users
Datepicker
All time
Commit history
Commits on Aug 29, 2015
Invalidate static analysis data for a function when introducing a temporary variable. If the data is stale it could cause the variable to be eliminated.
kg
committed
c01a5a2
View commit details
Copy full SHA for c01a5a2
View code at this point
Browse repository at this point
Commits on Aug 7, 2015
Fix 'a++.get()' and similar codegen for pointers
kg
committed
2bfbd27
View commit details
Copy full SHA for 2bfbd27
View code at this point
Browse repository at this point
Commits on Apr 29, 2014
Stop using Debug.WriteLine because it !@%*(!@%*ing blocks for no reason
Show description for b37f6f2
kg
committed
b37f6f2
View commit details
Copy full SHA for b37f6f2
View code at this point
Browse repository at this point
Fix part of issue #371 and add test.
Show description for 9eeed4a
kg
committed
9eeed4a
View commit details
Copy full SHA for 9eeed4a
View code at this point
Browse repository at this point
Commits on Apr 24, 2013
Add a fix and test case for issue #184, where IntroduceVariableReferences was erroneously skipping over nodes in complex binary expressions.
Show description for 3c6d655
kg
committed
3c6d655
View commit details
Copy full SHA for 3c6d655
View code at this point
Browse repository at this point
Commits on Mar 6, 2013
Make JSFunctionExpression.Parameters an array instead of an IEnumerable.
Show description for 9fae145
kg
committed
9fae145
View commit details
Copy full SHA for 9fae145
View code at this point
Browse repository at this point
Commits on Feb 27, 2013
Change JSAstVisitor so that by default it will not recurse into nested JSFunctionExpressions. This addresses a few race conditions where it was possible for a transform to run twice on a lambda exp…
Show description for 51b6af7
kg
committed
51b6af7
View commit details
Copy full SHA for 51b6af7
View code at this point
Browse repository at this point
Commits on Feb 26, 2013
Add basic support for pointer literals (basically, this ensures that (T*)0 will translate into JS that at least runs and obeys basic pointer rules)
kg
committed
a3914e9
View commit details
Copy full SHA for a3914e9
View code at this point
Browse repository at this point
Commits on Feb 24, 2013
Checkpoint: Correctness fixes to reference transformations
kg
committed
bd7375f
View commit details
Copy full SHA for bd7375f
View code at this point
Browse repository at this point
Checkpoint:
Show description for 2b39471
kg
committed
2b39471
View commit details
Copy full SHA for 2b39471
View code at this point
Browse repository at this point
Commits on Nov 6, 2012
Rename JSIdentifier.Type to JSIdentifier.IdentifierType to avoid conflicts with other, different-meaning members named Type.
Show description for ecc0b4f
kg
committed
ecc0b4f
View commit details
Copy full SHA for ecc0b4f
View code at this point
Browse repository at this point
Commits on Aug 13, 2012
Add a test case for issue #113.
Show description for 1d15ce0
kg
committed
1d15ce0
View commit details
Copy full SHA for 1d15ce0
View code at this point
Browse repository at this point
Commits on Jun 24, 2012
Checkpoint work on supporting 'ref this' for structs.
kg
committed
723cc1d
View commit details
Copy full SHA for 723cc1d
View code at this point
Browse repository at this point
Commits on Apr 12, 2012
Fixed break statements being eliminated in nested switch statements.
Show description for cf768d9
kg
committed
cf768d9
View commit details
Copy full SHA for cf768d9
View code at this point
Browse repository at this point
Commits on Mar 29, 2012
Fix handling of an alternate form of switch statements with lookup dictionaries, and add a test.
Show description for def09eb
kg
committed
def09eb
View commit details
Copy full SHA for def09eb
View code at this point
Browse repository at this point
Commits on Dec 11, 2011
When generating the variable initialization for ref/out parameters, always do it inside the containing function's scope instead of the current block scope. This prevents the initialization from bei…
Show description for a8dc459
kg
committed
a8dc459
View commit details
Copy full SHA for a8dc459
View code at this point
Browse repository at this point
Commits on Jun 26, 2011
Associate variables with the function they belong to for diagnostic purposes
Show description for e4d63b1
kg
committed
e4d63b1
View commit details
Copy full SHA for e4d63b1
View code at this point
Browse repository at this point
Commits on May 28, 2011
Try to recover the original names of fields that have mangled names
kg
committed
5457676
View commit details
Copy full SHA for 5457676
View code at this point
Browse repository at this point
Commits on May 13, 2011
Fix handling of ref parameters within nested lambdas
Show description for 149c016
kg
committed
149c016
View commit details
Copy full SHA for 149c016
View code at this point
Browse repository at this point
Commits on May 7, 2011
Correctness fixes to temporary variable elimination when a temporary variable aliases another variable that gets reassigned
Show description for 7862871
kg
committed
7862871
View commit details
Copy full SHA for 7862871
View code at this point
Browse repository at this point
Commits on May 6, 2011
Fix incorrect definitions of JSReturnExpression and JSThrowExpression (they weren't passing their values to the base class, so they got ignored by optimization passes)
Show description for fd6e1c3
kg
committed
fd6e1c3
View commit details
Copy full SHA for fd6e1c3
View code at this point
Browse repository at this point
Commits on May 5, 2011
Compatibility fixes
kg
committed
ac991ad
View commit details
Copy full SHA for ac991ad
View code at this point
Browse repository at this point
Partial implementation of dynamic call site support
Show description for efbf754
kg
committed
efbf754
View commit details
Copy full SHA for efbf754
View code at this point
Browse repository at this point
Passing parameters and local variables by reference fully implemented
kg
committed
6ebb9a3
View commit details
Copy full SHA for 6ebb9a3
View code at this point
Browse repository at this point
Fixed some errors introduced by variable indirection
kg
committed
61502ab
View commit details
Copy full SHA for 61502ab
View code at this point
Browse repository at this point
Added local variable indirection (through the new JSIndirectVariable type) to allow redefinition of variables by IntroduceVariableReferences.
kg
committed
6d33313
View commit details
Copy full SHA for 6d33313
View code at this point
Browse repository at this point
Passing structs by ref works now
kg
committed
ded83e6
View commit details
Copy full SHA for ded83e6
View code at this point
Browse repository at this point
Checkpointing work on variable reference transform
Show description for 69e6feb
kg
committed
69e6feb
View commit details
Copy full SHA for 69e6feb
View code at this point
Browse repository at this point
Loading
You can’t perform that action at this time.