Path: blob/trunk/third_party/closure/goog/module/testdata/modA_2.js
2868 views
// Copyright 2009 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.13// All Rights Reserved1415/**16* @fileoverview File #2 of module A.17*/1819goog.provide('goog.module.testdata.modA_2');2021goog.setTestOnly('goog.module.testdata.modA_2');2223goog.require('goog.module.ModuleManager');2425if (window.modA2Loaded) throw Error('modA_2 loaded twice');26window.modA2Loaded = true;2728goog.module.ModuleManager.getInstance().setLoaded('modA');293031