Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B21318F36 for ; Wed, 6 Jan 2016 07:37:00 +0000 (UTC) Received: (qmail 32544 invoked by uid 500); 6 Jan 2016 07:37:00 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 32512 invoked by uid 500); 6 Jan 2016 07:37:00 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 32495 invoked by uid 99); 6 Jan 2016 07:37:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jan 2016 07:37:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E9DB9E0063; Wed, 6 Jan 2016 07:36:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Wed, 06 Jan 2016 07:36:59 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/7] git commit: [flex-falcon] [refs/heads/develop] - Worked around some issues with es3.js provided by closure-compiler Repository: flex-falcon Updated Branches: refs/heads/develop 91ba91d74 -> d1b4ed22d Worked around some issues with es3.js provided by closure-compiler Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/44569080 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/44569080 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/44569080 Branch: refs/heads/develop Commit: 4456908039694e9ba95715d2f49a7c0cded9f425 Parents: a57ff6e Author: Andy Dufilie Authored: Tue Jan 5 10:06:42 2016 -0500 Committer: Alex Harui Committed: Tue Jan 5 23:31:55 2016 -0800 ---------------------------------------------------------------------- build.xml | 3 +++ externs/js/missing.js | 11 +++++++++++ 2 files changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/44569080/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index f87c972..b751c71 100644 --- a/build.xml +++ b/build.xml @@ -660,6 +660,9 @@ + + + http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/44569080/externs/js/missing.js ---------------------------------------------------------------------- diff --git a/externs/js/missing.js b/externs/js/missing.js index 0b1ebcc..594bace 100644 --- a/externs/js/missing.js +++ b/externs/js/missing.js @@ -98,7 +98,18 @@ int.prototype.toString = function(opt_radix) {} /** + * @type {Object} + */ +Object.prototype; + +/** + * @type {Object} + */ +Object.prototype.prototype; + +/** * @constructor + * @extends {Function} */ function Class() {}