mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
4 lines
171 B
JavaScript
4 lines
171 B
JavaScript
// Test that object member functions can be used as constructors
|
|
var hw = { setup_function : function() { this.hw_foo = 1; } };
|
|
result = (new hw.setup_function()).hw_foo;
|