Skip to content

Instantly share code, notes, and snippets.

@ooflorent
Created February 3, 2015 09:14
Show Gist options
  • Save ooflorent/55ad63a7682ca934a21a to your computer and use it in GitHub Desktop.
Save ooflorent/55ad63a7682ca934a21a to your computer and use it in GitHub Desktop.
dart2js curiosities
// Curiosity #1
// ------------
function dart() {
this.x = 0;
delete this.x;
}
var A = new dart;
// Curiosity #2
// ------------
function convertToFastObject(properties) {
function MyClass() {}
MyClass.prototype = properties;
new MyClass();
return properties;
}
A = convertToFastObject(A);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment