summaryrefslogtreecommitdiffstats
path: root/js/src/NamespaceImports.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/NamespaceImports.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/NamespaceImports.h')
-rw-r--r--js/src/NamespaceImports.h162
1 files changed, 162 insertions, 0 deletions
diff --git a/js/src/NamespaceImports.h b/js/src/NamespaceImports.h
new file mode 100644
index 000000000..5094b96bc
--- /dev/null
+++ b/js/src/NamespaceImports.h
@@ -0,0 +1,162 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+ * vim: set ts=8 sts=4 et sw=4 tw=99:
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+// This file imports some common JS:: names into the js namespace so we can
+// make unqualified references to them.
+
+#ifndef NamespaceImports_h
+#define NamespaceImports_h
+
+// These includes are needed these for some typedefs (e.g. HandleValue) and
+// functions (e.g. NullValue())...
+#include "js/CallNonGenericMethod.h"
+#include "js/GCHashTable.h"
+#include "js/GCVector.h"
+#include "js/TypeDecls.h"
+#include "js/Value.h"
+
+// ... but we do forward declarations of the structs and classes not pulled in
+// by the headers included above.
+namespace JS {
+
+class Latin1Chars;
+class Latin1CharsZ;
+class ConstTwoByteChars;
+class TwoByteChars;
+class TwoByteCharsZ;
+class UTF8Chars;
+class UTF8CharsZ;
+
+class AutoValueVector;
+class AutoIdVector;
+class AutoObjectVector;
+
+using ValueVector = JS::GCVector<JS::Value>;
+using IdVector = JS::GCVector<jsid>;
+using ScriptVector = JS::GCVector<JSScript*>;
+
+template<typename K, typename V> class AutoHashMapRooter;
+template<typename T> class AutoHashSetRooter;
+
+class MOZ_STACK_CLASS SourceBufferHolder;
+
+class HandleValueArray;
+
+class ObjectOpResult;
+
+class Symbol;
+enum class SymbolCode: uint32_t;
+
+} // namespace JS
+
+// Do the importing.
+namespace js {
+
+using JS::Value;
+using JS::BooleanValue;
+using JS::DoubleValue;
+using JS::Float32Value;
+using JS::Int32Value;
+using JS::MagicValue;
+using JS::NullValue;
+using JS::NumberValue;
+using JS::ObjectOrNullValue;
+using JS::ObjectValue;
+using JS::PrivateUint32Value;
+using JS::PrivateValue;
+using JS::PrivateGCThingValue;
+using JS::StringValue;
+using JS::UndefinedValue;
+
+using JS::Latin1Char;
+using JS::Latin1Chars;
+using JS::Latin1CharsZ;
+using JS::ConstTwoByteChars;
+using JS::TwoByteChars;
+using JS::TwoByteCharsZ;
+using JS::UTF8Chars;
+using JS::UTF8CharsZ;
+using JS::UniqueChars;
+using JS::UniqueTwoByteChars;
+
+using JS::AutoValueVector;
+using JS::AutoIdVector;
+using JS::AutoObjectVector;
+
+using JS::ValueVector;
+using JS::IdVector;
+using JS::ScriptVector;
+
+using JS::AutoHashMapRooter;
+using JS::AutoHashSetRooter;
+
+using JS::GCVector;
+using JS::GCHashMap;
+using JS::GCHashSet;
+
+using JS::CallArgs;
+using JS::CallNonGenericMethod;
+using JS::CompileOptions;
+using JS::IsAcceptableThis;
+using JS::NativeImpl;
+using JS::OwningCompileOptions;
+using JS::ReadOnlyCompileOptions;
+using JS::SourceBufferHolder;
+using JS::TransitiveCompileOptions;
+
+using JS::Rooted;
+using JS::RootedFunction;
+using JS::RootedId;
+using JS::RootedObject;
+using JS::RootedScript;
+using JS::RootedString;
+using JS::RootedSymbol;
+using JS::RootedValue;
+
+using JS::PersistentRooted;
+using JS::PersistentRootedFunction;
+using JS::PersistentRootedId;
+using JS::PersistentRootedObject;
+using JS::PersistentRootedScript;
+using JS::PersistentRootedString;
+using JS::PersistentRootedSymbol;
+using JS::PersistentRootedValue;
+
+using JS::Handle;
+using JS::HandleFunction;
+using JS::HandleId;
+using JS::HandleObject;
+using JS::HandleScript;
+using JS::HandleString;
+using JS::HandleSymbol;
+using JS::HandleValue;
+
+using JS::MutableHandle;
+using JS::MutableHandleFunction;
+using JS::MutableHandleId;
+using JS::MutableHandleObject;
+using JS::MutableHandleScript;
+using JS::MutableHandleString;
+using JS::MutableHandleSymbol;
+using JS::MutableHandleValue;
+
+using JS::NullHandleValue;
+using JS::UndefinedHandleValue;
+using JS::TrueHandleValue;
+using JS::FalseHandleValue;
+
+using JS::HandleValueArray;
+
+using JS::ObjectOpResult;
+
+using JS::Zone;
+
+using JS::Symbol;
+using JS::SymbolCode;
+
+} /* namespace js */
+
+#endif /* NamespaceImports_h */