top
|
up
|
prev
|
next
AttributeNotUniqueException Class
Definition at line
62
of
Attribute.hpp
Constructors
AttributeNotUniqueException
(
const
std::string& message_,
const
Span& span_,
const
Span& prevSpan_)
Member Functions
const
Span
&
GetSpan
()
const
const
Span
&
PrevSpan
()
const
Member Variables
Span
prevSpan
Span
span
Constructor Details
AttributeNotUniqueException Constructor
sngcm::ast::AttributeNotUniqueException::AttributeNotUniqueException(
const
std::string& message_,
const
Span& span_,
const
Span& prevSpan_)
Definition at line
113
of
Attribute.cpp
:
113
:
std
::
runtime_error
(
message_
)
,
span
(
span_
)
,
prevSpan
(
prevSpan_
)
114
{
115
}
Member Function Details
GetSpan Member Function
const
Span
& sngcm::ast::AttributeNotUniqueException::GetSpan()
const
Definition at line
66
of
Attribute.hpp
:
66
{
return
span
;
}
PrevSpan Member Function
const
Span
& sngcm::ast::AttributeNotUniqueException::PrevSpan()
const
Definition at line
67
of
Attribute.hpp
:
67
{
return
prevSpan
;
}
top
|
up
|
prev
|
next