Skip to content
Snippets Groups Projects
Commit 449725fe authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Do not ignore all implicits, only implicit synthetic functions.

> @ignore
> implicit class Foo(x: ..)

generates an implicit synthetic conversion without @ignore. We
explicitly ignore these as they are extracted specially. However, we
should *not* ignore implicit defs that the user defined for convenience.

Sadly, Scala does not support "implicit case class", so in Leon
you have to use a normal case class with a normal implicit conversion
that wraps in the case-class:

> case class Foo(x: Bar)
> implicit def barToFoo(b: Bar): Foo = Foo(b)
parent 85e73bfa
No related branches found
No related tags found
No related merge requests found
...@@ -184,7 +184,7 @@ trait CodeExtraction extends ASTExtractors { ...@@ -184,7 +184,7 @@ trait CodeExtraction extends ASTExtractors {
} }
def isIgnored(s: Symbol) = { def isIgnored(s: Symbol) = {
(annotationsOf(s) contains "ignore") || s.isImplicit || s.fullName.toString.endsWith(".main") (annotationsOf(s) contains "ignore") || s.fullName.toString.endsWith(".main")
} }
def isExtern(s: Symbol) = { def isExtern(s: Symbol) = {
...@@ -867,7 +867,7 @@ trait CodeExtraction extends ASTExtractors { ...@@ -867,7 +867,7 @@ trait CodeExtraction extends ASTExtractors {
case ExFieldDef(_,_,_) => case ExFieldDef(_,_,_) =>
case ExLazyFieldDef() => case ExLazyFieldDef() =>
case ExFieldAccessorFunction() => case ExFieldAccessorFunction() =>
case d if isIgnored(d.symbol) => case d if isIgnored(d.symbol) || (d.symbol.isImplicit && d.symbol.isSynthetic) =>
case tree => case tree =>
outOfSubsetError(tree, "Don't know what to do with this. Not purescala?"); outOfSubsetError(tree, "Don't know what to do with this. Not purescala?");
} }
...@@ -1759,8 +1759,7 @@ trait CodeExtraction extends ASTExtractors { ...@@ -1759,8 +1759,7 @@ trait CodeExtraction extends ASTExtractors {
// default behaviour is to complain :) // default behaviour is to complain :)
case _ => case _ =>
println(tr.getClass) outOfSubsetError(tr, "Could not extract as PureScala (Scala tree of type "+tr.getClass+")")
outOfSubsetError(tr, "Could not extract as PureScala")
} }
res.setPos(current.pos) res.setPos(current.pos)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment