简体   繁体   中英

How can I generate my own ScalaSig?

I've dynamically defined a Scala class, but in order to use it "properly" it needs to have a ScalaSig.

So, how might I generate a ScalaSig outside of normal compilation? Perhaps from a tree? Maybe like:

val tb = runtimeMirror(getClass.getClassLoader).mkToolBox()
val classDef = """class MyRecord(x: String)"""
val tree = showRaw(tb.parse(classDef))

But where does the pickler come in?

Thanks for any advice -Julian

Artisanal-Pickle-Maker will reproduce a Scala pickled signature byte-for-byte (see restrictions).

Tapping into the compiler's pickler phase, as well as reuse of the Pickler 's code, proved too challenging, so instead I used PickleBuffer , ShowPickled and a whole lotta diff -y to figure out how to generate arbitrary pickled Scala sigs.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM