#include "v8.h"
#include "compiler.h"
#include "bootstrapper.h"
#include "codegen.h"
#include "compilation-cache.h"
#include "cpu-profiler.h"
#include "debug.h"
#include "deoptimizer.h"
#include "full-codegen.h"
#include "gdb-jit.h"
#include "typing.h"
#include "hydrogen.h"
#include "isolate-inl.h"
#include "lithium.h"
#include "liveedit.h"
#include "parser.h"
#include "rewriter.h"
#include "runtime-profiler.h"
#include "scanner-character-streams.h"
#include "scopeinfo.h"
#include "scopes.h"
#include "vm-state-inl.h"
 
Go to the source code of this file.
      
        
          | #define DEF_VISIT | 
          ( | 
            | 
          type | ) | 
           | 
        
      
 
Value:
    if (node->position() != RelocInfo::kNoPosition) {   \
      SetSourcePosition(node->position());              \
    }                                                   \
    HOptimizedGraphBuilder::Visit##type(node);          \
  }
 
Definition at line 282 of file compiler.cc.
 
 
      
        
          | #define DEF_VISIT | 
          ( | 
            | 
          type | ) | 
           | 
        
      
 
Value:
    if (node->position() != RelocInfo::kNoPosition) {            \
      SetSourcePosition(node->position());                       \
    }                                                            \
    HOptimizedGraphBuilder::Visit##type(node);                   \
  }
 
Definition at line 282 of file compiler.cc.
 
 
      
        
          | #define DEF_VISIT | 
          ( | 
            | 
          type | ) | 
           | 
        
      
 
Value:
    HOptimizedGraphBuilder::Visit##type(node);                     \
  }
 
Definition at line 282 of file compiler.cc.