Comment 1 for bug 779132

Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Fixed in SVN trunk.

Example output :

object QEscapedWords {
  def as(variable: String) = new QEscapedWords(variable)

  val escapedWords = as("escapedWords")
}

class QEscapedWords(cl: Class[_ <: EscapedWords], md: PathMetadata[_]) extends EntityPathImpl[EscapedWords](cl, md) {
  def this(variable: String) = this(classOf[EscapedWords], forVariable(variable))

  def this(parent: Path[_], variable: String) = this(classOf[EscapedWords], forProperty(parent, variable))

  val `object` = createString("object")

  val type$ = createString("type")

  val `val` = createString("val")

  val `var` = createString("var")

}