- corrected more instances of "OPER_erand" and stuff like that

Mon, 12 May 2014 15:47:40 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 12 May 2014 15:47:40 +0300
changeset 132
4d45b1383246
parent 131
8ae8038b0168
child 133
dbbdb870c835

- corrected more instances of "OPER_erand" and stuff like that

src/expression.cpp file | annotate | diff | comparison | revisions
src/expression.h file | annotate | diff | comparison | revisions
--- a/src/expression.cpp	Mon May 12 14:54:10 2014 +0300
+++ b/src/expression.cpp	Mon May 12 15:47:40 2014 +0300
@@ -68,7 +68,7 @@
 
 // =============================================================================
 //
-// Try to parse an expression symbol (i.e. an operator or OPER_erand or a colon)
+// Try to parse an expression symbol (i.e. an operator or operand or a colon)
 // from the lexer.
 //
 ExpressionSymbol* Expression::parseSymbol()
@@ -256,7 +256,7 @@
 	}
 
 	if (m_type == TYPE_String)
-		error ("Cannot perform OPER_erations on strings");
+		error ("Cannot perform operations on strings");
 
 	bool* verified = new bool[m_symbols.size()];
 	memset (verified, 0, m_symbols.size() * sizeof (decltype (*verified)));
@@ -342,7 +342,7 @@
 			}
 
 			default:
-				error ("WTF operator with %1 OPER_erands", numoperands);
+				error ("WTF operator with %1 operands", numoperands);
 		}
 	}
 
@@ -428,13 +428,13 @@
 			ByteMark* mark1 = buf->addMark (""); // start of "else" case
 			ByteMark* mark2 = buf->addMark (""); // end of expression
 			buf->mergeAndDestroy (b0);
-			buf->writeDWord (DH_IfNotGoto); // if the first OPER_erand (condition)
+			buf->writeDWord (DH_IfNotGoto); // if the first operand (condition)
 			buf->addReference (mark1); // didn't eval true, jump into mark1
-			buf->mergeAndDestroy (b1); // otherwise, perform second OPER_erand (true case)
+			buf->mergeAndDestroy (b1); // otherwise, perform second operand (true case)
 			buf->writeDWord (DH_Goto); // afterwards, jump to the end, which is
 			buf->addReference (mark2); // marked by mark2.
 			buf->adjustMark (mark1); // move mark1 at the end of the true case
-			buf->mergeAndDestroy (b2); // perform third OPER_erand (false case)
+			buf->mergeAndDestroy (b2); // perform third operand (false case)
 			buf->adjustMark (mark2); // move the ending mark2 here
 
 			for (int i = 0; i < 3; ++i)
@@ -527,7 +527,7 @@
 	while ((it = findPrioritizedOperator()) != m_symbols.end())
 	{
 		int i = it - m_symbols.begin();
-		List<SymbolList::Iterator> OPER_erands;
+		List<SymbolList::Iterator> operands;
 		ExpressionOperator* op = static_cast<ExpressionOperator*> (*it);
 		const OperatorInfo* info = &g_Operators[op->id()];
 		int lower, upper; // Boundaries of area to replace
@@ -538,7 +538,7 @@
 			{
 				lower = i;
 				upper = i + 1;
-				OPER_erands << it + 1;
+				operands << it + 1;
 				break;
 			}
 
@@ -546,7 +546,7 @@
 			{
 				lower = i - 1;
 				upper = i + 1;
-				OPER_erands << it - 1
+				operands << it - 1
 				         << it + 1;
 				break;
 			}
@@ -555,7 +555,7 @@
 			{
 				lower = i - 1;
 				upper = i + 3;
-				OPER_erands << it - 1
+				operands << it - 1
 				         << it + 1
 				         << it + 3;
 				break;
@@ -567,7 +567,7 @@
 
 		List<ExpressionValue*> values;
 
-		for (auto it : OPER_erands)
+		for (auto it : operands)
 			values << static_cast<ExpressionValue*> (*it);
 
 		// Note: @op and all of @values are invalid after this call.
--- a/src/expression.h	Mon May 12 14:54:10 2014 +0300
+++ b/src/expression.h	Mon May 12 15:47:40 2014 +0300
@@ -119,7 +119,7 @@
 // =============================================================================
 //
 // This class represents a ":" in the expression. It serves as the colon for the
-// ternary ?: operator. It's not an OPER_erand nor is an operator, nor can we just
+// ternary ?: operator. It's not an operand nor is an operator, nor can we just
 // skip it so it is its own thing here.
 //
 class ExpressionColon final : public ExpressionSymbol

mercurial