Actions
Task #3500
closedДобавить поддержку операций Verilog
Start date:
09/27/2012
Due date:
% Done:
100%
Estimated time:
Detected in build:
svn
Published in build:
0.2
Description
//============================================================================= // Operator Priorities | Binary Operators //============================================================================= // ?: | conditional_operator //----------------------------------------------------------------------------- // || | logical_or_operator //----------------------------------------------------------------------------- // && | logical_and_operator //----------------------------------------------------------------------------- // | ~| | bitwise_or_operator //----------------------------------------------------------------------------- // ^ ^~ ~^ | bitwise_xor_operator //----------------------------------------------------------------------------- // & ~& | bitwise_and_operator //----------------------------------------------------------------------------- // == != === != | equality_operator //----------------------------------------------------------------------------- // < <= > >= | compare_operator //----------------------------------------------------------------------------- // << >> <<< >>> | shift_operator //----------------------------------------------------------------------------- // + - | additive_operator //----------------------------------------------------------------------------- // * / % | multiplicative_operator //----------------------------------------------------------------------------- // ** | power_operator //============================================================================= // Operator Priorities | Unary Operators //============================================================================= // ! | unary_operator //----------------------------------------------------------------------------- // ~ | ... //----------------------------------------------------------------------------- // & | ... //----------------------------------------------------------------------------- // ~& | ... //----------------------------------------------------------------------------- // | | ... //----------------------------------------------------------------------------- // ~| | ... //----------------------------------------------------------------------------- // ^ | ... //----------------------------------------------------------------------------- // ~^ ^~ | ... //----------------------------------------------------------------------------- // + | ... //----------------------------------------------------------------------------- // - | ... //=============================================================================
Actions