--- linuxsampler/trunk/src/scriptvm/common.cpp 2019/08/23 11:44:00 3561 +++ linuxsampler/trunk/src/scriptvm/common.cpp 2019/08/23 12:51:58 3562 @@ -181,6 +181,14 @@ return (m_token) ? m_token->isPreprocessor() : false; } + bool VMSourceToken::isMetricPrefix() const { + return (m_token) ? m_token->isMetricPrefix() : false; + } + + bool VMSourceToken::isStdUnit() const { + return (m_token) ? m_token->isStdUnit() : false; + } + bool VMSourceToken::isOther() const { return (m_token) ? m_token->isOther() : true; }