Skip to content

SageBuilder::buildVariableDeclaration

Build a variable declaration, handle symbol table transparently

Synopsis

Declared in <SageIII/sageInterface/sageBuilder.h>

[[visibility]]
SgVariableDeclaration*
buildVariableDeclaration(
    SgName const& name,
    SgType* type,
    SgInitializer* varInit = NULL,
    SgScopeStatement* scope = NULL);

Return Value

This class represents the concept of a C or C++ variable declaration.

Parameters

Name

Description

name

This class represents strings within the IR nodes.

type

This class represents the base class for all types.

varInit

This class represents the notion of an initializer for a variable declaration or

scope

This class represents the concept of a scope in C++ (e.g. global scope, fuction scope, etc.).

Created with MrDocs