github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
github ([personal profile] github) wrote in [site community profile] changelog2012-09-14 12:15 am

[dreamwidth/dw-free] e92b7d: (bug 4634) Allow calling S2 constructors with new.

Branch: refs/heads/develop
Home: https://github.com/dreamwidth/dw-free
Commit: e92b7d5e3b7ac04e20efff30b509c35cbd756179
https://github.com/dreamwidth/dw-free/commit/e92b7d5e3b7ac04e20efff30b509c35cbd756179
Author: exor674 <exor674@dreamwidth.org>
Date: 2012-09-08 (Sat, 08 Sep 2012)

Changed paths:
M src/s2/S2/BackendJS/Codegen.pm
M src/s2/S2/NodeTerm.pm

Log Message:
-----------
(bug 4634) Allow calling S2 constructors with new.


Commit: 96aa39722c4160effb81d3e034b5c16570bd0007
https://github.com/dreamwidth/dw-free/commit/96aa39722c4160effb81d3e034b5c16570bd0007
Author: Afuna <afunamatata+github@gmail.com>
Date: 2012-09-14 (Fri, 14 Sep 2012)

Changed paths:
M src/s2/S2/BackendJS/Codegen.pm
M src/s2/S2/NodeTerm.pm

Log Message:
-----------
Merge pull request #60 from anall/feature/Bug4634

(bug 4634) Allow calling S2 constructors with new

Instead of doing:

var Color c = "#abc";
some_function( c, ... );

We can do:

some_function( new Color("#abc") );


Compare: https://github.com/dreamwidth/dw-free/compare/c70a1d47abd3...96aa39722c41