Cleanup: move expression parsing for types to SourceLanguage.

This commit is contained in:
Rene Gollent
2012-11-06 12:22:06 +01:00
parent 4235cb3e33
commit 7b74c56650
6 changed files with 120 additions and 90 deletions
@@ -17,3 +17,11 @@ SourceLanguage::GetSyntaxHighlighter() const
{
return NULL;
}
status_t
SourceLanguage::ParseTypeExpression(const BString &expression,
TeamTypeInformation* info, Type*& _resultType) const
{
return B_NOT_SUPPORTED;
}