aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js73
1 files changed, 0 insertions, 73 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js b/contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js
deleted file mode 100644
index 2e919fa..0000000
--- a/contexts/data/lib/closure-library/closure/goog/json/nativejsonprocessor.js
+++ /dev/null
@@ -1,73 +0,0 @@
-// Copyright 2012 The Closure Library Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS-IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-
-/**
- * @fileoverview Defines a class for parsing JSON using the browser's built in
- * JSON library.
- */
-
-goog.provide('goog.json.NativeJsonProcessor');
-
-goog.require('goog.asserts');
-goog.require('goog.json');
-goog.require('goog.json.Processor');
-
-
-
-/**
- * A class that parses and stringifies JSON using the browser's built-in JSON
- * library, if it is avaliable.
- *
- * Note that the native JSON api has subtle differences across browsers, so
- * use this implementation with care. See json_test#assertSerialize
- * for details on the differences from goog.json.
- *
- * This implementation is signficantly faster than goog.json, at least on
- * Chrome. See json_perf.html for a perf test showing the difference.
- *
- * @param {?goog.json.Replacer=} opt_replacer An optional replacer to use during
- * serialization.
- * @param {?goog.json.Reviver=} opt_reviver An optional reviver to use during
- * parsing.
- * @constructor
- * @implements {goog.json.Processor}
- */
-goog.json.NativeJsonProcessor = function(opt_replacer, opt_reviver) {
- goog.asserts.assert(goog.isDef(goog.global['JSON']), 'JSON not defined');
-
- /**
- * @type {goog.json.Replacer|null|undefined}
- * @private
- */
- this.replacer_ = opt_replacer;
-
- /**
- * @type {goog.json.Reviver|null|undefined}
- * @private
- */
- this.reviver_ = opt_reviver;
-};
-
-
-/** @override */
-goog.json.NativeJsonProcessor.prototype.stringify = function(object) {
- return goog.global['JSON'].stringify(object, this.replacer_);
-};
-
-
-/** @override */
-goog.json.NativeJsonProcessor.prototype.parse = function(s) {
- return goog.global['JSON'].parse(s, this.reviver_);
-};