mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-07-13 20:00:56 -04:00
23 lines
376 B
C#
23 lines
376 B
C#
namespace ScriptConverter.Parser
|
|
{
|
|
enum PrecedenceValue
|
|
{
|
|
Invalid,
|
|
Assignment,
|
|
Ternary,
|
|
LogicalOr,
|
|
LogicalAnd,
|
|
BitwiseOr,
|
|
BitwiseXor,
|
|
BitwiseAnd,
|
|
Equality,
|
|
Relational,
|
|
BitwiseShift,
|
|
Additive,
|
|
Multiplicative,
|
|
Cast,
|
|
Prefix,
|
|
Suffix
|
|
}
|
|
}
|