From 7dea5e48d15b0e6bf590838aad3d0787aa9c4c89 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Fri, 22 Sep 2017 12:31:18 -0300 Subject: Formatting --- dice-lang/src/bjc/dicelang/Shunter.java | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/dice-lang/src/bjc/dicelang/Shunter.java b/dice-lang/src/bjc/dicelang/Shunter.java index d9025c1..547f379 100644 --- a/dice-lang/src/bjc/dicelang/Shunter.java +++ b/dice-lang/src/bjc/dicelang/Shunter.java @@ -44,30 +44,31 @@ import bjc.utils.funcdata.IMap; * */ public class Shunter { - // The binary operators and their - // priorities + /* The binary operators and their priorities. */ IMap ops; - /* - * Operators that are right-associative - */ + /* Operators that are right-associative */ Set rightAssoc; - /* - * Operators that aren't associative - */ + /* Operators that aren't associative */ Set notAssoc; - // Unary operators that can only be - // applied to non-operator tokens and yield operator tokens + /* + * Unary operators that can only be applied to non-operator tokens and + * yield operator tokens. + */ Set unaryAdjectives; - // Unary operators that can only be - // applied to operator tokens and yield operator tokens + /* + * Unary operators that can only be applied to operator tokens and yield + * operator tokens. + */ Set unaryAdverbs; - // Unary operators that can only be - // applied to operator tokens and yield data tokens + /* + * Unary operators that can only be applied to operator tokens and yield + * data tokens + */ Set unaryGerunds; /** -- cgit v1.2.3