aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
diff options
context:
space:
mode:
authorJyotman Singh <jyotman@getvoodoo.in>2016-10-23 15:47:12 +0530
committerJyotman Singh <jyotman@getvoodoo.in>2016-10-23 15:47:12 +0530
commit65f7ea93f0ffcdc1cef7779b1ff0c95506994ccf (patch)
tree92d693723cb06338fa8dbff03b1165f1f46d4e42 /src/dotty/tools/dotc/reporting/diagnostic/messages.scala
parent0e3b4aaac845a88abad12e75ca0421a66752dd61 (diff)
downloaddotty-65f7ea93f0ffcdc1cef7779b1ff0c95506994ccf.tar.gz
dotty-65f7ea93f0ffcdc1cef7779b1ff0c95506994ccf.tar.bz2
dotty-65f7ea93f0ffcdc1cef7779b1ff0c95506994ccf.zip
Add explanation for "illegal start of simple expression"
Diffstat (limited to 'src/dotty/tools/dotc/reporting/diagnostic/messages.scala')
-rw-r--r--src/dotty/tools/dotc/reporting/diagnostic/messages.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
index ce60d053a..59ed5fb83 100644
--- a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
+++ b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
@@ -482,4 +482,22 @@ object messages {
|but an uninitialized var definition
""".stripMargin
}
+
+ case class IllegalStartSimpleExpr(illegalToken: String)(implicit ctx: Context) extends Message(17) {
+ val kind = "Syntax"
+ val msg = "illegal start of simple expression"
+ val explanation = {
+ hl"""|An expression yields a value. In the case of the simple expression, this error
+ |commonly occurs when there's a missing parenthesis or brace. The reason being
+ |that a simple expression is one of the following:
+ |
+ |- Block
+ |- Expression in parenthesis
+ |- Identifier
+ |- Object creation
+ |- Literal
+ |
+ |which cannot start with ${Red(illegalToken)}.""".stripMargin
+ }
+ }
}