mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-24 11:43:18 -05:00
Test:o.x = o.x || {} assignments in JS
This commit is contained in:
@@ -10,8 +10,13 @@ var my = my || {};
|
||||
my.m = function() {
|
||||
return 1;
|
||||
}
|
||||
my.p = {};
|
||||
my.n = 1;
|
||||
my.m
|
||||
my.p
|
||||
my.n
|
||||
my.o = {};
|
||||
my.possible = my.possible || {};
|
||||
|
||||
my.m;
|
||||
my.o;
|
||||
my.n;
|
||||
my.possible;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user