issues Search Results · repo:brownplt/LambdaJS language:JavaScript
Filter by
6 results
(90 ms)6 results
inbrownplt/LambdaJS (press backspace or delete to remove)I wanted to experiment with the desugarer, trying to understand the paper ( The Essence of JavaScript ) so I spent a bit
of time making it buildable. For the record, here s what eventually worked:
1. ...
edsko
- Opened on Jan 17, 2015
- #6
When we execute this code,
lbl:
for(var i=0;i 3;i++){
for(var j=0;j 3;j++){
if(i+j===3){
continue lbl;// control should jump to (1)
}
print(i+ : +j);
}
// (1)
}
// (2)
expected ...
ide-an
- Opened on Aug 22, 2013
- #5
(define-metafunction lambdaJS
subst-n : (x any) ... any - any
[(subst-n (x any) ... any_body)
,(subst (term (x ...)) (term (any ...)) (term any_body))])
(define (subst vars replacements body)
(define ...
arjunguha
- Opened on Jan 2, 2012
- #4
Nested function definitions are not allowed in ECMAScript but most browsers allow them. Actually, ECMAScript is aware of
it. The ECMAScript specification contains the following note:
NOTE Several widely ...
arjunguha
- Opened on Nov 7, 2011
- #2
) We found that the with desugaring presented in the paper does not capture the implementation. The desugared with
example in page 12 of the ECOOP 2010 paper is as follows:
function(x, obj) { if (obj.hasOwnProperty( ...
arjunguha
- Opened on Nov 7, 2011
- #1

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.