From a4c14b87e55ac65debfa287ab357ad9a75954d6e Mon Sep 17 00:00:00 2001 From: Vassil Vassilev Date: Mon, 28 Oct 2013 22:13:39 -0500 Subject: [PATCH] Rename interface with more meaningful name. --- lib/MetaProcessor/MetaLexer.cpp | 2 +- lib/MetaProcessor/MetaLexer.h | 2 +- lib/MetaProcessor/MetaParser.cpp | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/MetaProcessor/MetaLexer.cpp b/lib/MetaProcessor/MetaLexer.cpp index 29e40b49..5b3c83ea 100644 --- a/lib/MetaProcessor/MetaLexer.cpp +++ b/lib/MetaProcessor/MetaLexer.cpp @@ -15,7 +15,7 @@ namespace cling { return llvm::StringRef(bufStart, getLength()); } - bool Token::getConstant() const { + bool Token::getConstantAsBool() const { assert(kind == tok::constant && "Not a constant"); return *bufStart == '1'; } diff --git a/lib/MetaProcessor/MetaLexer.h b/lib/MetaProcessor/MetaLexer.h index 48ed861b..74bede0d 100644 --- a/lib/MetaProcessor/MetaLexer.h +++ b/lib/MetaProcessor/MetaLexer.h @@ -60,7 +60,7 @@ namespace cling { bool is(tok::TokenKind K) const { return kind == K; } llvm::StringRef getIdent() const; - bool getConstant() const; + bool getConstantAsBool() const; }; class MetaLexer { diff --git a/lib/MetaProcessor/MetaParser.cpp b/lib/MetaProcessor/MetaParser.cpp index c0949215..7e34954e 100644 --- a/lib/MetaProcessor/MetaParser.cpp +++ b/lib/MetaProcessor/MetaParser.cpp @@ -248,7 +248,7 @@ namespace cling { consumeToken(); skipWhitespace(); if (getCurTok().is(tok::constant)) - mode = (MetaSema::SwitchMode)getCurTok().getConstant(); + mode = (MetaSema::SwitchMode)getCurTok().getConstantAsBool(); m_Actions->actOnrawInputCommand(mode); return true; } @@ -262,7 +262,7 @@ namespace cling { consumeToken(); skipWhitespace(); if (getCurTok().is(tok::constant)) - mode = (MetaSema::SwitchMode)getCurTok().getConstant(); + mode = (MetaSema::SwitchMode)getCurTok().getConstantAsBool(); m_Actions->actOnprintASTCommand(mode); return true; } @@ -276,7 +276,7 @@ namespace cling { consumeToken(); skipWhitespace(); if (getCurTok().is(tok::constant)) - mode = (MetaSema::SwitchMode)getCurTok().getConstant(); + mode = (MetaSema::SwitchMode)getCurTok().getConstantAsBool(); m_Actions->actOnprintIRCommand(mode); return true; } @@ -332,7 +332,7 @@ namespace cling { consumeToken(); skipWhitespace(); if (getCurTok().is(tok::constant)) - mode = (MetaSema::SwitchMode)getCurTok().getConstant(); + mode = (MetaSema::SwitchMode)getCurTok().getConstantAsBool(); m_Actions->actOndynamicExtensionsCommand(mode); return true; }