38 lines
692 B
C++
38 lines
692 B
C++
/*
|
|||
|
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||
* Copyright 2014, Rene Gollent, [email protected].
|
|||
* Distributed under the terms of the MIT License.
|
|||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#include "SourceLanguage.h"
|
||
|
|
|
||
|
|
|
||
|
|
SourceLanguage::~SourceLanguage()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
SyntaxHighlighter*
|
||
|
|
SourceLanguage::GetSyntaxHighlighter() const
|
||
|
|
{
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|||
|
|
|
||
|
|
status_t
|
||
SourceLanguage::ParseTypeExpression(const BString& expression,
|
|||
TeamTypeInformation* info, Type*& _resultType) const
|
|||
|
|
{
|
||
|
|
return B_NOT_SUPPORTED;
|
||
|
|
}
|
||
|
|||
|
|
|
||
|
|
status_t
|
||
|
|
SourceLanguage::EvaluateExpression(const BString& expression,
|
||
ValueNodeManager* manager, TeamTypeInformation* info,
|
|||
|
|
ExpressionResult*& _resultValue, ValueNode*& _neededNode)
|
||
{
|
|||
|
|
return B_NOT_SUPPORTED;
|
||
|
|
}
|