From f6479f2fb62daf1f4d46e0ff4d6012995d079cd1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 21 Nov 2010 15:22:08 -0800 Subject: [PATCH] Print deprecation warning on process.compile --- src/node.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/node.cc b/src/node.cc index 46c56e2..f87e913 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1318,14 +1318,24 @@ Handle DLOpen(const v8::Arguments& args) { } +// TODO remove me before 0.4 Handle Compile(const Arguments& args) { HandleScope scope; + if (args.Length() < 2) { return ThrowException(Exception::TypeError( String::New("needs two arguments."))); } + static bool shown_error_message = false; + + if (!shown_error_message) { + shown_error_message = true; + fprintf(stderr, "(node) process.compile should not be used. " + "Use require('vm').runInThisContext instead.\n"); + } + Local source = args[0]->ToString(); Local filename = args[1]->ToString(); -- 2.7.4