diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-06-07 11:13:18 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-06-07 11:13:18 -0400 |
commit | 6994a00f608335fc2e835538dfd84b70aa486d0f (patch) | |
tree | 025a2cfb12b5075c231a663b21c6df3b979848ef /lib/js | |
parent | 555b6a066f6a4a2396ead20e673b363c3706e713 (diff) |
Start of Option; Basis.current; fix missed cases in Jscomp.isNullable
Diffstat (limited to 'lib/js')
-rw-r--r-- | lib/js/urweb.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 6c974948..efd94bb9 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -210,6 +210,9 @@ function sb(x,y) { return {sources : union(xr.sources, yr.sources), data : yr.data}; }; } +function scur(s) { + return s().data; +} function lastParent() { var pos = document; |