The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
44 views

How to obtain Symbol of term defined by ValDef tree?

Simple question about Scala macros: Having a ValDef AST, I want to get the Symbol associated with val or var defined by this tree. I couldn't find a way to do this. Unfortunately ValDef tree itself ...
1
vote
0answers
44 views

Scala macros and Eclipse - how to get JDBC jar on classpath for macro expansion

I'm experimenting with Scala macros, and I'm using Eclipse and the ScalaIDE plugin. Following this question and answer, I created a separate Eclipse project for the macros. That worked, but then I ...
3
votes
1answer
131 views

Scala macros assign param of deconstructed function

I'm currently playing around a bit with macros and maybe this is a bad idea anyway, but here's my problem: I have the following macro: def using[A <: { def close(): Unit }, B](resource: A)(f: A ...
2
votes
1answer
98 views

How do I combine Type Programming with Scala Macros

I would like to use a macro that uses a type defined by the "type" keyword. How do I reference it? My starting code is import scala.reflect.macros.Context import scala.language.experimental.macros ...
0
votes
1answer
76 views

How do I get a scala macro to replace a method call

How do I get a scala macro to replace a method call? My goal is to create a trait called ToStringAdder. Supposing I have an object x with this trait, then when I call x.add(any) I want the macro to ...
3
votes
2answers
73 views

How to debug Scala Macros using Eclipse

I am trying to set a breakpoint in a Scala Macro implementation using the Eclipse IDE and failing Firstly: Scala Macros Rock! Up to now I have preferred Clojure to Scala, but with macros I'm no ...
1
vote
1answer
49 views

How can I reify a Symbol in order to pass it into runtime?

Macro contexts in Scala come with two handy methods: reifyType and reifyTree which essentially generate code that, when executed at runtime, will return the Type or Tree being reified. I wonder if ...
1
vote
1answer
44 views

How to reliably compare Symbols when using reflection or macros?

How can I reliably compare two Symbols for equality in scala macro or when using reflection? Is it guaranteed that when two Symbol objects represent the same symbol (the same class, the same local ...
3
votes
1answer
48 views

How to check if WeakTypeTag or Type represents concrete type?

How do I check if WeakTypeTag or Type represents concrete type? This would be especially useful in macros, where I could use it to raise compilation error when type given by the user is not concrete: ...
1
vote
1answer
73 views

Implicit macros not found in Scala 2.10.1?

It seems like the implicit keyword doesn't work when applied to macro defs. For example, take the following code: // Compilation unit A: case class Foo[A] // end A. // Compilation unit B: implicit ...
2
votes
1answer
88 views

Using macros to create well-typed instances at compile-time

I want to be able to create well-typed instance with a macro based on some class names. For example I want to be able to create a Long instance like so: def fromName[T](typeName: String) = macro ...
0
votes
1answer
88 views

Calling instance method in macro implementation for selectDynamic

I'd like to use Sample#cap(String) in the following macro implementation for selectDynamic. Is it possible? // macro implementation import scala.language.experimental.macros import ...
0
votes
0answers
48 views

Imports and wildcard imports of Symbols in Scala

I have a list of Symbols representing packages, objects and classes and want to import them in a macro context. For classes and objects, this would mean a wildcard import and for classes it would ...
8
votes
2answers
180 views

How to distinguish compiler-inferred implicit conversion from explicitly invoked one?

Let's imagine passing these two equivalent expressions to a Scala macro: with compiler-inferred implicit conversion: 1+"foo" with explicitly invoked implicit conversion: any2stringadd(1)+"foo" Is ...
6
votes
1answer
112 views

Is it possible to implement something akin to Scala's @BeanProperty with macros?

I would like to create an annotation or trait that adds methods to an object at compile time dynamically, based on existing fields. Although I'm interested in something at the class-level, I'd also ...
4
votes
1answer
177 views

Is it possible to access the symbol table in a macro?

For example, to get all values, and their types, accessible at the macro's call site? Or at least just the values from the current class? E.g.: class A { val v1 = 10 var v2 = "2" def m { ...
3
votes
1answer
104 views

Extracting a Symbol from a return value of a function

Using macros I want to get a general solution for referring to Symbols of fields and subfields of a case class data tree. Inspired by this gist, I've created a following skeleton: import ...
5
votes
2answers
94 views

Scala untyped macro in infix position

In response to this question, I've been having a go at implementing a Haskell-style 'where' expression in Scala using the macro-paradise branch. The code is available at scala-where. I can now write ...
0
votes
0answers
131 views

Scala macros and code generation

Given the simple example source I need to be able to create a copy constructor and implicit conversion method. Can somebody please advice how to achieve this with Scala 2.10 and new macros feature? ...
4
votes
1answer
146 views

Using Scala's Macros to enforce type equality

I've been experimenting with MacroParadise (here and here), as well a few other newer features. Today while using TypeTags, I came to the realization that I can now do something like this to enforce ...
0
votes
0answers
88 views

How to import pipe delimited text file into openoffice?

I have plain file like the next Johh|120,5|Barcelona Mary|200,1|Paris Jose|90,2|NY I would like to create a Macro that reads the file and put every line in 1 Cell. After that I will split it to 3 ...
0
votes
1answer
51 views

enhanced assert scala macro

I’ve come across some annoying problems when using asserts where there is either no good information available: why did it fails, and what the assert was about the assert information is buried under ...
1
vote
0answers
42 views

simple scala macro

I would like to have a scala macro that does the following: When I write: myCreateCityMacro("paris") myCreateCityMacro("vallorbe") I would like to get: val paris = new City("paris") val vallorbe = ...
0
votes
2answers
87 views

Universal copy function as a Macro

I'd really like to use case classes' copy feature in my project, but unfortunately I also need inheritance, which doesn't work well with case classes. So, I'm wondering if it's possible to write a ...
15
votes
2answers
500 views

Where can I learn about constructing AST's for Scala macros?

Where I can learn how to construct the AST's that Scala's macros generate? The Scaladoc isn't as helpful as I'd like. For example: abstract def Apply(sym: Universe.Symbol, args: Universe.Tree*): ...
2
votes
1answer
76 views

Is it possible to (re)bind the receiver inside a block of code?

Problem This question is motivated by trying to find a solution for this question. Assume that you would like to construct a hierarchical structure by using the following syntax: root { subA { ...
1
vote
0answers
92 views

Macro to map “items” to their type parameterized “containers” — large compiler error

Suppose I have a trait for "items" and another trait for "containers" of those items: sealed trait Item case class Marble() extends Item case class Book() extends Item sealed trait Container[Item] ...
2
votes
2answers
96 views

How to replace a subtree with some other tree?

In Scala macro, I want to do something like this: I have a Tree (possibly large). Now I want to find a subtree of this tree that has some concrete form, e.g. Apply(_, _). And now I want to create a ...
2
votes
1answer
82 views

How to generate a static member and add it to a class within a type macro?

I would like to add a static field (named bar in this example) to a class (named Foo) with a type macro (named Static). This is how I'm currently trying to do it: Macro import ...
7
votes
0answers
247 views

Getting a structural type with an anonymous class's methods from a macro

Suppose we want to write a macro that defines an anonymous class with some type members or methods, and then creates an instance of that class that's statically typed as a structural type with those ...
2
votes
0answers
55 views

Using reify outside of a macro definition [duplicate]

Possible Duplicate: What’s the easiest way to use reify (get an AST of) an expression in Scala? Inside of a macro definition, I can use c.reify on the Context parameter to turn an ...
7
votes
2answers
241 views

Introspect argument passed to a Scala macro

I would like to program a Scala macro that takes an instance of a case class as argument. All objects that can be passed to the macro have to implement a specific marker trait. The following snippet ...
2
votes
1answer
78 views

get calling class

I want to get the calling class of a macro, but my code does not work: def __CLASS__(c: Context) = { import c.universe._ c.enclosingClass match { case ClassDef(mods, name, tparams, impl) ...
0
votes
1answer
46 views

get calling function with more hierarchical depth

The following code gets the calling function (like C _ _ FUNC _ _): def __func__(c: Context) = { import c.universe._ c.enclosingMethod match { case DefDef(mods, name, tparams, ...
2
votes
1answer
300 views

Can I use Scala Macros to internalise an external DSL?

I would like to implement an external DSL such as SQL in Scala using Macros. I have already seen papers on how to implement internal DSLs with Scala. Also, I've recently written an article about how ...
67
votes
1answer
1k views

Documenting Scala 2.10 macros

I'll start with an example. Here's an equivalent of List.fill for tuples as a macro in Scala 2.10: import scala.language.experimental.macros import scala.reflect.macros.Context object TupleExample { ...
3
votes
2answers
377 views

How to get constructor argument names using Scala-Macros

Is there a way to get parameter names of a given constructor using scala-macros? Thanks
1
vote
2answers
345 views

How can I create an instance of a Case Class with constructor arguments with no Parameters in Scala?

I'm making a Scala app that sets by reflection field values. This works OK. However, in order to set field values I need a created instance. If I have a class with an empty constructor, I can do this ...
9
votes
2answers
1k views

How to use Type calculated in Scala Macro in a reify clause?

I've been working with Scala Macros and have the following code in the macro: val fieldMemberType = fieldMember.typeSignatureIn(objectType) match { case NullaryMethodType(tpe) => tpe ...
6
votes
2answers
241 views

Creating a method definition tree from a method symbol and a body

Is there a convenient way to turn a MethodSymbol into the left-hand side of a method definition tree (i.e., a DefDef) in Scala 2.10? For example, suppose I want to create a macro that will take an ...
3
votes
1answer
142 views

Compiling Scala 2.10-RC3 macros in sbt project

I am using SBT for my project, and I decided to add macros to it recently. So I followed the examples in this project: ...
17
votes
1answer
539 views

Static return type of Scala macros

So I've got this macro: import language.experimental.macros import scala.reflect.macros.Context class Foo class Bar extends Foo { def launchMissiles = "launching" } object FooExample { def foo: ...
9
votes
1answer
273 views

Checking for varargs type ascription in Scala macros

Suppose I have this macro: import language.experimental.macros import scala.reflect.macros.Context object FooExample { def foo[A](xs: A*): Int = macro foo_impl[A] def foo_impl[A](c: Context)(xs: ...
1
vote
2answers
319 views

scala macros: Add function to class

I'm new to scala macros and I'm using scala 2.10.0-RC3. I want to write a macro that adds a function to a class. Usage example: trait MyTrait { def addF = macro { /*add "def f = 3" to class*/ } } ...
2
votes
2answers
145 views

Do macros make naturally chained comparisons possible in Scala?

Scala does not provide chained comparisons as Python does: // Python: 0 < x <= 3 // Scala: 0 < x && x <= 3 Will Scala 2.10 with the new macro feature enable the programmer write ...
11
votes
2answers
500 views

Howto model named parameters in method invocations with Scala macros?

There are use cases where it is useful to create a copy of an object which is an instance of a case class of a set of case classes, which have a specific value in common. For example let's consider ...
2
votes
4answers
482 views

Scala: Boilerplate-free pimping

I make extensive use of the Pimp my Library pattern, and I'd like to remove the boilerplate. For example, say I have some trait PrettyPrint: trait PrettyPrint { def prettyPrint: String } If I want ...
6
votes
1answer
265 views

How do I refer to enclosing “this” in a Scala macro?

The following macro, extracted from a larger example, is supposed to create a tree with nothing but a reference to this: def echoThisImpl(c:Context): c.Expr[Any] = { import c.universe._ val ...
5
votes
1answer
176 views

Scala: Equivalence of path-dependent types

How do I get around with equivalence of two path-dependent types that I know are the same but the compiler does not? Using Scala 2.10.0 M7 I am trying to convert an AST from one universe to another. ...
1
vote
2answers
138 views

Hiding closure boilerplate with macros?

Given an example closure, which in this case returns the number of words in a string (with an additional arbitrary operator). val myfunc = (s: String) => Option(s).map(_.split(" ").size).filter(_ ...

1 2