Changes in src/Parser/ExpressionNode.cc [de62360d:ea9b9d3]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
rde62360d rea9b9d3 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Sat May 16 13:17:07 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Jun 23 17:46:23201513 // Update Count : 15 211 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Jun 10 14:57:52 2015 13 // Update Count : 151 14 14 // 15 15 … … 252 252 new ConstantExpr( 253 253 Constant( new BasicType( q, BasicType::UnsignedInt ), 254 toString( value.size() + 1 ) ) ), // account for '\0'254 toString( value.size()+1-2 ) ) ), // +1 for '\0' and -2 for '"' 255 255 false, false ); 256 256 return new ConstantExpr( Constant( at, value ), maybeBuild< Expression >( get_argName() ) ); … … 364 364 // the names that users use to define operator functions 365 365 static const char *opFuncName[] = { 366 "", "","",367 "", "",368 // diadic369 "", "", "", "", "?+?", "?-?", "?*?", "?/?", "?%?", "","",370 "?|?", "?&?", "?^?", "", "?<<?", "?>>?", "?<?", "?>?","?<=?",371 "?>=?", "?==?", "?!=?", "?=?", "?*=?", "?/=?", "?%=?", "?+=?","?-=?",372 "?<<=?", "?>>=?", "?&=?", "?^=?", "?|=?", "?[?]", "", "","Range",373 // monadic374 "+?", "-?", "", "*?", "!?", "~?", "++?", "?++", "--?", "?--", "&&"366 "", "", "", 367 "", "", 368 // diadic 369 "", "", "", "", "?+?", "?-?", "?*?", "?/?", "?%?", "", "", 370 "?|?", "?&?", "?^?", "", "?<<?", "?>>?", "?<?", "?>?", "?<=?", 371 "?>=?", "?==?", "?!=?", "?=?", "?*=?", "?/=?", "?%=?", "?+=?", "?-=?", 372 "?<<=?", "?>>=?", "?&=?", "?^=?", "?|=?", "?[?]", "","","Range", 373 // monadic 374 "+?", "-?", "", "*?", "!?", "~?", "++?", "?++", "--?", "?--", "LabAddress" 375 375 }; 376 376
Note:
See TracChangeset
for help on using the changeset viewer.