blob: f4e88884501f60555fd77f63b97da9c162890b85 [file] [log] [blame]
/**
* 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.
*/
/**
* NoConflictUseWindow
*
* @fileoverview
*
* @suppress {checkTypes|accessControls}
*/
goog.provide('NoConflictUseWindow');
goog.require('mypackage.TestClass');
/**
* @constructor
*/
NoConflictUseWindow = function() {
this.testClass = new mypackage.TestClass();
};
/**
* Prevent renaming of class. Needed for reflection.
*/
goog.exportSymbol('NoConflictUseWindow', NoConflictUseWindow);
/**
* @private
* @type {mypackage.TestClass}
*/
NoConflictUseWindow.prototype.testClass = null;
/**
* Metadata
*
* @type {Object.<string, Array.<Object>>}
*/
NoConflictUseWindow.prototype.ROYALE_CLASS_INFO = { names: [{ name: 'NoConflictUseWindow', qName: 'NoConflictUseWindow', kind: 'class' }] };
/**
* Reflection
*
* @return {Object.<string, Function>}
*/
NoConflictUseWindow.prototype.ROYALE_REFLECTION_INFO = function () {
return {
variables: function () {return {};},
accessors: function () {return {};},
methods: function () {
return {
'NoConflictUseWindow': { type: '', declaredBy: 'NoConflictUseWindow'}
};
}
};
};
/**
* @export
* @const
* @type {number}
*/
NoConflictUseWindow.prototype.ROYALE_REFLECTION_INFO.compileFlags = 9;