add more missing things

Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/ae445742
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/ae445742
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/ae445742

Branch: refs/heads/develop
Commit: ae445742dbbee30ff90d94b5c81e835fb1ffd6fa
Parents: 0ce1a51
Author: Alex Harui <[email protected]>
Authored: Thu Oct 15 15:31:53 2015 -0700
Committer: Alex Harui <[email protected]>
Committed: Thu Oct 15 15:31:53 2015 -0700

----------------------------------------------------------------------
 externs/js/missing.js | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ae445742/externs/js/missing.js
----------------------------------------------------------------------
diff --git a/externs/js/missing.js b/externs/js/missing.js
index 5833dd4..cb1d8e7 100644
--- a/externs/js/missing.js
+++ b/externs/js/missing.js
@@ -80,10 +80,48 @@ function Screen() {}
 function uint() {}
 
 /**
+ * @param {number=} opt_radix Optional radix.
+ * @return {string} The result.
+ */
+uint.prototype.toString = function(opt_radix) {}
+
+/**
  * @constructor
  */
 function int() {}
 
+/**
+ * @param {number=} opt_radix Optional radix.
+ * @return {string} The result.
+ */
+int.prototype.toString = function(opt_radix) {}
+
+
+/**
+ * @constructor
+ */
+function Class() {}
+
+/**
+ * @constructor
+ */
+function JSON() {}
+
+/**
+ * @param {string} s The input.
+ * @param {function=} opt_reviver Optional reviver.
+ * @return {Object} The result.
+ */
+JSON.parse = function(s, opt_reviver) {}
+
+/**
+ * @param {Object} obj The input.
+ * @param {function=} opt_replacer Optional reviver.
+ * @param {string|number=} opt_space Optional space.
+ * @return {string} The result.
+ */
+JSON.stringify = function(obj, opt_replacer, opt_space) {}
+
 // gecko
 
 /**

Reply via email to