We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05c58f commit f13a81fCopy full SHA for f13a81f
src/namespace.js
@@ -5,12 +5,12 @@ module.exports = Namespace;
5
var ReflectionObject = require("./object");
6
((Namespace.prototype = Object.create(ReflectionObject.prototype)).constructor = Namespace).className = "Namespace";
7
8
-var Enum = require("./enum"),
9
- Field = require("./field"),
+var Field = require("./field"),
10
util = require("./util");
11
12
var Type, // cyclic
13
- Service; // "
+ Service,
+ Enum;
14
15
/**
16
* Constructs a new namespace instance.
@@ -428,4 +428,5 @@ Namespace.prototype.lookupService = function lookupService(path) {
428
Namespace._configure = function(Type_, Service_) {
429
Type = Type_;
430
Service = Service_;
431
+ Enum = require("./enum");
432
};
0 commit comments