diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-07-08 16:40:11 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-07-08 16:40:11 -0700 |
commit | e5564a3f29e0a818832a97c7c3b28d7c8b3b0460 (patch) | |
tree | 4b48a6577080d5e44da4d2cbebb7fe7951660de8 /deps/v8/src/rewriter.h | |
parent | 0df2f74d364826053641395b01c2fcb1345057a9 (diff) | |
download | node-new-e5564a3f29e0a818832a97c7c3b28d7c8b3b0460.tar.gz |
Upgrade V8 to 3.4.10
Diffstat (limited to 'deps/v8/src/rewriter.h')
-rw-r--r-- | deps/v8/src/rewriter.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/deps/v8/src/rewriter.h b/deps/v8/src/rewriter.h index 62e1b7f729..59914d97f9 100644 --- a/deps/v8/src/rewriter.h +++ b/deps/v8/src/rewriter.h @@ -1,4 +1,4 @@ -// Copyright 2010 the V8 project authors. All rights reserved. +// Copyright 2011 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: @@ -42,15 +42,6 @@ class Rewriter { // Assumes code has been parsed and scopes have been analyzed. Mutates the // AST, so the AST should not continue to be used in the case of failure. static bool Rewrite(CompilationInfo* info); - - // Perform a suite of simple non-iterative analyses of the AST. Mark - // expressions that are likely smis, expressions without side effects, - // expressions whose value will be converted to Int32, and expressions in a - // context where +0 and -0 are treated the same. - // - // Assumes code has been parsed and scopes have been analyzed. Mutates the - // AST, so the AST should not continue to be used in the case of failure. - static bool Analyze(CompilationInfo* info); }; |