@@ -1914,8 +1914,8 @@ object Parsers {
1914
1914
if (in.token == RPAREN ) Nil else patterns()
1915
1915
1916
1916
1917
- /** ArgumentPatterns ::= `(' [Patterns] `)'
1918
- * | `(' [Patterns `,' ] Pattern2 `:' `_' `*' ')
1917
+ /** ArgumentPatterns ::= ‘(’ [Patterns] ‘)’
1918
+ * | ‘(’ [Patterns ‘,’ ] Pattern2 ‘:’ ‘_’ ‘*’ ‘)’
1919
1919
*/
1920
1920
def argumentPatterns (): List [Tree ] =
1921
1921
inParens(patternsOpt())
@@ -2065,18 +2065,18 @@ object Parsers {
2065
2065
2066
2066
/* -------- PARAMETERS ------------------------------------------- */
2067
2067
2068
- /** ClsTypeParamClause::= `[' ClsTypeParam {`,' ClsTypeParam} `]'
2069
- * ClsTypeParam ::= {Annotation} [`+' | `-' ]
2068
+ /** ClsTypeParamClause::= ‘[’ ClsTypeParam {‘,’ ClsTypeParam} ‘]’
2069
+ * ClsTypeParam ::= {Annotation} [‘+’ | ‘-’ ]
2070
2070
* id [HkTypeParamClause] TypeParamBounds
2071
2071
*
2072
- * DefTypeParamClause::= `[' DefTypeParam {`,' DefTypeParam} `]'
2072
+ * DefTypeParamClause::= ‘[’ DefTypeParam {‘,’ DefTypeParam} ‘]’
2073
2073
* DefTypeParam ::= {Annotation} id [HkTypeParamClause] TypeParamBounds
2074
2074
*
2075
- * TypTypeParamCaluse::= `[' TypTypeParam {`,' TypTypeParam} `]'
2075
+ * TypTypeParamCaluse::= ‘[’ TypTypeParam {‘,’ TypTypeParam} ‘]’
2076
2076
* TypTypeParam ::= {Annotation} id [HkTypePamClause] TypeBounds
2077
2077
*
2078
- * HkTypeParamClause ::= `[' HkTypeParam {`,' HkTypeParam} `]'
2079
- * HkTypeParam ::= {Annotation} ['+' | `-' ] (id [HkTypePamClause] | _' ) TypeBounds
2078
+ * HkTypeParamClause ::= ‘[’ HkTypeParam {‘,’ HkTypeParam} ‘]’
2079
+ * HkTypeParam ::= {Annotation} [‘+’ | ‘-’ ] (id [HkTypePamClause] | ‘_’ ) TypeBounds
2080
2080
*/
2081
2081
def typeParamClause (ownerKind : ParamOwner .Value ): List [TypeDef ] = inBrackets {
2082
2082
def typeParam (): TypeDef = {
@@ -2557,8 +2557,8 @@ object Parsers {
2557
2557
}
2558
2558
}
2559
2559
2560
- /** TmplDef ::= ([` case' ] ‘class’ | trait’) ClassDef
2561
- * | [` case'] ` object' ObjectDef
2560
+ /** TmplDef ::= ([‘ case’ ] ‘class’ | ‘ trait’) ClassDef
2561
+ * | [‘ case’] ‘ object’ ObjectDef
2562
2562
* | ‘enum’ EnumDef
2563
2563
* | ‘instance’ InstanceDef
2564
2564
*/
0 commit comments