V8 Project
v8::internal::compiler::GenericNode< B, S >::Inputs Class Reference

#include <generic-node.h>

+ Collaboration diagram for v8::internal::compiler::GenericNode< B, S >::Inputs:

Classes

class  iterator
 

Public Member Functions

iterator begin ()
 
iterator end ()
 
 Inputs (GenericNode *node)
 

Private Attributes

GenericNodenode_
 

Detailed Description

template<class B, class S>
class v8::internal::compiler::GenericNode< B, S >::Inputs

Definition at line 62 of file generic-node.h.

Constructor & Destructor Documentation

◆ Inputs()

template<class B , class S >
v8::internal::compiler::GenericNode< B, S >::Inputs::Inputs ( GenericNode node)
inlineexplicit

Definition at line 68 of file generic-node.h.

68 : node_(node) {}

Member Function Documentation

◆ begin()

template<class B , class S >
GenericNode< B, S >::Inputs::iterator v8::internal::compiler::GenericNode< B, S >::Inputs::begin
inline

Definition at line 36 of file generic-node-inl.h.

36  {
37  return typename GenericNode<B, S>::Inputs::iterator(this->node_, 0);
38 }

References v8::internal::compiler::GenericNode< B, S >::Inputs::node_.

◆ end()

template<class B , class S >
GenericNode< B, S >::Inputs::iterator v8::internal::compiler::GenericNode< B, S >::Inputs::end
inline

Definition at line 42 of file generic-node-inl.h.

42  {
43  return typename GenericNode<B, S>::Inputs::iterator(
44  this->node_, this->node_->InputCount());
45 }

Referenced by v8::internal::compiler::GenericNode< B, S >::RemoveAllInputs().

+ Here is the caller graph for this function:

Member Data Documentation

◆ node_

template<class B , class S >
GenericNode* v8::internal::compiler::GenericNode< B, S >::Inputs::node_
private

The documentation for this class was generated from the following files: