summaryrefslogtreecommitdiff
path: root/js/src/Ice/CompactIdRegistry.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/Ice/CompactIdRegistry.js')
-rw-r--r--js/src/Ice/CompactIdRegistry.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/Ice/CompactIdRegistry.js b/js/src/Ice/CompactIdRegistry.js
new file mode 100644
index 00000000000..b3f46caadf3
--- /dev/null
+++ b/js/src/Ice/CompactIdRegistry.js
@@ -0,0 +1,15 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+(function(global){
+ require("Ice/HashMap");
+ var Ice = global.Ice || {};
+ Ice.CompactIdRegistry = new Ice.HashMap();
+ global.Ice = Ice;
+}(typeof (global) === "undefined" ? window : global));