namespace Lua.CodeAnalysis.Syntax; public enum OperatorPrecedence { /// /// Non-operator token precedence /// NonOperator, /// /// 'or' operator /// Or, /// /// 'and' operator /// And, /// /// Relational operators (<, <=, >, >=, ==, ~=) /// Relational, /// /// Concat operator (..) /// Concat, /// /// Addition and Subtraction (+, -) /// Addition, /// /// Multipilcation, Division and Modulo (*, /, %) /// Multiplication, /// /// Negate, Not, Length (-, 'not', #) /// Unary, /// /// Exponentiation (^) /// Exponentiation, }