How to solve an error saying object delimiters is not a member of package scala.util.parsing.combinator.lexical -


i writing parser in scala, part of code follow :

 import scala.util.parsing.combinator.syntactical._  object exprparser extends javatokenparsers {      lexical.delimiters ++= list("+","-","*","/", "^","(",")",",")     ...// rest of code  } 

it gives me following error:

 object delimiters not member of package scala.util.parsing.combinator.lexical 

i have checked many resources , couldn't find source of problem.


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -