summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-06-17 23:25:01 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-06-17 23:32:19 +0200
commitb9165252e3a9115fe991042b75caa08c0993e347 (patch)
tree51a80dc5099664d2ed12c102a1f6573cfe7adb6d
parent226a20da5d926795750c5ed4b434a9f40d8b8200 (diff)
downloadnode-b9165252e3a9115fe991042b75caa08c0993e347.tar.gz
src: clean up `using` directives
Remove the unused ones and alphabetically sort the ones that remain.
-rw-r--r--src/cares_wrap.cc1
-rw-r--r--src/handle_wrap.cc6
-rw-r--r--src/node_script.cc21
-rw-r--r--src/pipe_wrap.cc2
-rw-r--r--src/process_wrap.cc22
-rw-r--r--src/signal_wrap.cc16
-rw-r--r--src/slab_allocator.cc2
-rw-r--r--src/stream_wrap.cc5
-rw-r--r--src/string_bytes.cc1
-rw-r--r--src/tcp_wrap.cc2
-rw-r--r--src/timer_wrap.cc16
-rw-r--r--src/tty_wrap.cc2
-rw-r--r--src/v8_typed_array.cc2
13 files changed, 36 insertions, 62 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index d80c93aeb..0b12bce4a 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -47,7 +47,6 @@ namespace cares_wrap {
using v8::Arguments;
using v8::Array;
-using v8::Context;
using v8::Function;
using v8::Handle;
using v8::HandleScope;
diff --git a/src/handle_wrap.cc b/src/handle_wrap.cc
index 5de0daa0d..cf3768ace 100644
--- a/src/handle_wrap.cc
+++ b/src/handle_wrap.cc
@@ -26,18 +26,12 @@
namespace node {
using v8::Arguments;
-using v8::Array;
-using v8::Context;
using v8::Function;
-using v8::FunctionTemplate;
using v8::Handle;
using v8::HandleScope;
-using v8::Integer;
-using v8::Local;
using v8::Object;
using v8::Persistent;
using v8::String;
-using v8::TryCatch;
using v8::Undefined;
using v8::Value;
diff --git a/src/node_script.cc b/src/node_script.cc
index 9c83c39a5..639f41ab0 100644
--- a/src/node_script.cc
+++ b/src/node_script.cc
@@ -26,24 +26,23 @@
namespace node {
+using v8::Arguments;
+using v8::Array;
using v8::Context;
-using v8::Script;
-using v8::Value;
+using v8::Exception;
+using v8::Function;
+using v8::FunctionTemplate;
using v8::Handle;
using v8::HandleScope;
+using v8::Local;
using v8::Object;
-using v8::Arguments;
+using v8::Persistent;
+using v8::Script;
+using v8::String;
using v8::ThrowException;
using v8::TryCatch;
-using v8::String;
-using v8::Exception;
-using v8::Local;
-using v8::Array;
-using v8::Persistent;
-using v8::Integer;
-using v8::Function;
-using v8::FunctionTemplate;
using v8::V8;
+using v8::Value;
class WrappedContext : ObjectWrap {
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index 6639b8d66..1e3e5b0a2 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -31,7 +31,6 @@ namespace node {
using v8::Arguments;
using v8::Boolean;
-using v8::Context;
using v8::Function;
using v8::FunctionTemplate;
using v8::Handle;
@@ -42,7 +41,6 @@ using v8::Object;
using v8::Persistent;
using v8::PropertyAttribute;
using v8::String;
-using v8::TryCatch;
using v8::Value;
extern Persistent<FunctionTemplate> pipeConstructorTmpl;
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index 4b14464a3..f8974dde8 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -28,23 +28,21 @@
namespace node {
-using v8::Object;
+using v8::Arguments;
+using v8::Array;
+using v8::Exception;
+using v8::Function;
+using v8::FunctionTemplate;
using v8::Handle;
+using v8::HandleScope;
+using v8::Integer;
using v8::Local;
+using v8::Number;
+using v8::Object;
using v8::Persistent;
-using v8::Value;
-using v8::HandleScope;
-using v8::FunctionTemplate;
using v8::String;
-using v8::Array;
-using v8::Number;
-using v8::Function;
-using v8::TryCatch;
-using v8::Context;
-using v8::Arguments;
-using v8::Integer;
-using v8::Exception;
using v8::ThrowException;
+using v8::Value;
static Persistent<String> onexit_sym;
diff --git a/src/signal_wrap.cc b/src/signal_wrap.cc
index 6fbe543de..7f84553de 100644
--- a/src/signal_wrap.cc
+++ b/src/signal_wrap.cc
@@ -25,19 +25,17 @@
namespace node {
-using v8::Object;
+using v8::Arguments;
+using v8::Function;
+using v8::FunctionTemplate;
using v8::Handle;
+using v8::HandleScope;
+using v8::Integer;
using v8::Local;
+using v8::Object;
using v8::Persistent;
-using v8::Value;
-using v8::HandleScope;
-using v8::FunctionTemplate;
using v8::String;
-using v8::Function;
-using v8::TryCatch;
-using v8::Context;
-using v8::Arguments;
-using v8::Integer;
+using v8::Value;
static Persistent<String> onsignal_sym;
diff --git a/src/slab_allocator.cc b/src/slab_allocator.cc
index f51318f5b..476124cb6 100644
--- a/src/slab_allocator.cc
+++ b/src/slab_allocator.cc
@@ -36,8 +36,8 @@ using v8::Null;
using v8::Object;
using v8::Persistent;
using v8::String;
-using v8::Value;
using v8::V8;
+using v8::Value;
namespace node {
diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc
index adee3d62e..bcedeb8ab 100644
--- a/src/stream_wrap.cc
+++ b/src/stream_wrap.cc
@@ -41,10 +41,6 @@ namespace node {
using v8::AccessorInfo;
using v8::Arguments;
using v8::Array;
-using v8::Context;
-using v8::Exception;
-using v8::Function;
-using v8::FunctionTemplate;
using v8::Handle;
using v8::HandleScope;
using v8::Integer;
@@ -53,7 +49,6 @@ using v8::Number;
using v8::Object;
using v8::Persistent;
using v8::String;
-using v8::TryCatch;
using v8::Value;
diff --git a/src/string_bytes.cc b/src/string_bytes.cc
index 416bc5ae3..db6bb8e5e 100644
--- a/src/string_bytes.cc
+++ b/src/string_bytes.cc
@@ -39,7 +39,6 @@ namespace node {
using v8::Handle;
using v8::HandleScope;
using v8::Local;
-using v8::Object;
using v8::String;
using v8::Value;
diff --git a/src/tcp_wrap.cc b/src/tcp_wrap.cc
index e0556aa02..990134709 100644
--- a/src/tcp_wrap.cc
+++ b/src/tcp_wrap.cc
@@ -33,7 +33,6 @@
namespace node {
using v8::Arguments;
-using v8::Context;
using v8::Function;
using v8::FunctionTemplate;
using v8::Handle;
@@ -45,7 +44,6 @@ using v8::Object;
using v8::Persistent;
using v8::PropertyAttribute;
using v8::String;
-using v8::TryCatch;
using v8::Undefined;
using v8::Value;
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index a36cdabac..23abc5c41 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -24,19 +24,17 @@
namespace node {
-using v8::Object;
+using v8::Arguments;
+using v8::Function;
+using v8::FunctionTemplate;
using v8::Handle;
+using v8::HandleScope;
+using v8::Integer;
using v8::Local;
+using v8::Object;
using v8::Persistent;
-using v8::Value;
-using v8::HandleScope;
-using v8::FunctionTemplate;
using v8::String;
-using v8::Function;
-using v8::TryCatch;
-using v8::Context;
-using v8::Arguments;
-using v8::Integer;
+using v8::Value;
static Persistent<String> ontimeout_sym;
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index f96ab0cdc..182a26028 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -30,7 +30,6 @@
namespace node {
using v8::Arguments;
-using v8::Context;
using v8::Function;
using v8::FunctionTemplate;
using v8::Handle;
@@ -41,7 +40,6 @@ using v8::Object;
using v8::Persistent;
using v8::PropertyAttribute;
using v8::String;
-using v8::TryCatch;
using v8::Undefined;
using v8::Value;
diff --git a/src/v8_typed_array.cc b/src/v8_typed_array.cc
index 4e73c303a..404011057 100644
--- a/src/v8_typed_array.cc
+++ b/src/v8_typed_array.cc
@@ -31,9 +31,9 @@
namespace {
+using node::ThrowError;
using node::ThrowRangeError;
using node::ThrowTypeError;
-using node::ThrowError;
struct BatchedMethods {
const char* name;