class Drizzle::AST::TypedIdentifier
- Drizzle::AST::TypedIdentifier
- Drizzle::AST::Identifier
- Drizzle::AST::Expression
- Drizzle::AST::Node
- Reference
- Object
Overview
Node class representing an Identifier with a data type.
name: type
Defined in:
drizzle/ast/typed_identifier.crConstructors
Instance Method Summary
-
#datatype : Drizzle::AST::Identifier
The type that has been given to this identifier.
- #to_s : String
Instance methods inherited from class Drizzle::AST::Identifier
literal : String
literal,
to_s : String
to_s,
token : Drizzle::Token
token,
value : String
value
Constructor methods inherited from class Drizzle::AST::Identifier
new(token, value)
new
Instance methods inherited from class Drizzle::AST::Node
literal : String
literal,
to_s : String
to_s
Constructor Detail
Instance Method Detail
def datatype : Drizzle::AST::Identifier
#
The type that has been given to this identifier. Currently only one typed variables are being handled, no union type handling yet.