This page is no longer maintained — Please continue to the home page at www.scala-lang.org

"Symbol value X not found" using scala.utils.continuations

No replies
Kai Meder
Joined: 2009-04-29,
User offline. Last seen 42 years 45 weeks ago.

Hello

I regulary get the following error when compiling code with the CPS-plugin:

symbol value readSync$2 does not exist in
dataflow.nio.Socket$$anonfun$processRead$1.apply


flow {
while (xxx) {
val readSync = new Variable[Boolean]
dispatcher.register(sockCh, Read, onReadable(readSync))
val readDone = readSync() // <-- SYMBOL NOT FOUND ERROR
}
}

flow is essentially a reset-wrapper. "onReadable(readSync)" will execute
the continuation, which gets shifted/suspended by readSync()

Any ideas? I get sooo many assertion-failures and "Symbol not Found"
errors while compiling with the CPS-Plugin. There is no hint where to
look at, the source-file causing the errors is not even mentioned :(
The CPS-Plugin is a really *great* extension to the language but during
development it is a big PITA.

Thanks, Kai

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland