Tagged Questions
1
vote
0answers
35 views
JVM Perm Gen / System freeze after capturing a function which is generated in an interpreter run
I am using Scala dynamically embedded, and I thought I was smart to save re-interpretation of bits by capturing them in a Function0 of the host program. Approximately like this:
object Code
def ...
4
votes
1answer
34 views
Make a Scala interpreter oblivious between interpret calls
Is it possible to configure a Scala interpreter (tools.nsc.IMain) so that it "forgets" the previously executed code, whenever I run the next interpret() call?
Normally when it compiles the sources, ...
0
votes
0answers
195 views
Getting a type and class tag / binding a parameterized type in the interpreter
Given a parameterized type:
trait Document[S]
I want to bind an instance of this for an embedded interpreter, e.g.
def test[S](doc: Document[S]) = tools.nsc.interpreter.NamedParam("document", doc)
...
3
votes
0answers
149 views
REPL using IMain, Akka and sbt: get import working
I'm trying to get an interactive shell into my Scala application. I'm using the following system:
Scala 2.10.0
sbt 0.12.2
Akka 2.1.0
sbt-lwjgl-plugin 3.1.4
and the following non-working ...
2
votes
1answer
132 views
Importing class files into the Scala Interpreter IMain
I am trying to use the IMain method from scala's interpreter to run a function that has been converted into a string. However I am unable to import user created classes into the interpreter.
For ...
-2
votes
1answer
235 views
Scala Interpreter [closed]
I'm working on an interpreter in Scala and I need to find a way to assign a variable, a name and a value that can be updated. An example input might look like this
(x = x + 1) // results to: ...
5
votes
1answer
160 views
Enable REPL power user mode (:power) from script
I am trying to dynamically interpret a string as a command in Scala. For this, from what I understand, I need to call intp.interpret("string") (where intp stands for the current interpreter and string ...
3
votes
1answer
509 views
How to run an external file from within the scala interactive interpreter (REPL)?
I have a file with several lines of scala code -- imports, list value assignments, etc. that I often use to initialize some things when using the REPL.
Currently I just open up the file in a text ...
3
votes
1answer
152 views
How to fix terminal when scala interpreter causes invisible text
sometimes after exiting the scala interpreter I get back to my bash shell and all text is invisible. Newlines (returns) from input are not displayed. Below is example output. The first line is the ...
6
votes
3answers
443 views
Brainfuck compiler in scala
Want to make some Domain Specific Language(DSL) for practice, first idea it is to write interpreter or compiler of Brainfuck.
First idea was to override functions such as they will behave as ...
9
votes
1answer
517 views
How to write Scala 2.9 code that will allow dropping into an interpreter
I am not sure how to write code that will allow dropping into an interpreter into Scala 2.9 code. This question is a follow-up to this one, which asked what the Scala equivalent of,
import pdb
...
2
votes
1answer
179 views
Interpreter result type not found despite importing it
I use Scala 2.9.1. I have a simple scala "interpreter":
import scala.tools.nsc.interpreter.IMain
import scala.tools.nsc.interpreter.Results.Result
import scala.tools.nsc.interpreter.Results.Success
...
2
votes
2answers
120 views
Plus not working in Scala interpreter
I am trying to sum a list using fold in the Scala interpreter, but it keeps giving me a strange error. When I type this:
val list = List(1,2,3)
(list :\ 0)(+)
I expect to get 6. However, the ...
1
vote
3answers
108 views
Scala reflection behaves differently on interpreter and compiled code
I have
trait T
class C extends T
compiled to .class files. And the piece of code below to load them:
val loader = ScalaClassLoader fromURLs (/* List[URL] */)
val classB = ...
6
votes
1answer
221 views
scala.tools.nsc.interpreter memory leak
I need to implement a DSL (Domain Specific Language) using Scala, and this DSL will be interpreted in a Scala interpreter (scala.tools.nsc.interpreter). The problem is that the memory used by the ...
3
votes
1answer
185 views
Scala Interpreter: anyway to get the line of a compile error?
I am using the scala interpreter to run some user defined script. for this I use the "IMain" class. Works like a charm except when it comes to report the line where a compile error happen.
To get the ...
9
votes
2answers
1k views
Compile and execute Scala code at runtime
Is is possible to compile and execute scala code as a string at runtime either in Scala or in Java?
My idea is to build a DSL using Scala then let Java programmers use the DSL inside Java.
I heard ...
16
votes
1answer
2k views
Load Scala file into interpreter to use functions?
I have some Scala functions defined in a file, not in a class, and I would like to use them in the Scala interpreter. I know I can say scala filename.scala to simply run the file and exit the ...
1
vote
2answers
334 views
Scala REPL in Eclipse does not see my own classes
I created a Java / Maven project in Eclipse, and added the Scala nature. Eclipse can compile my Scala classes (when they are correct), but if I create a Scala interpreter in the project, I cannot ...
3
votes
2answers
194 views
Is it possible to retrieve Scala's version at runtime form the REPL?
When trying to run some code in online interpreters or with IRC bots, I always wonder which version of Scala they support.
Is there a way to retrieve the version of Scala from within the interpreter?
...
3
votes
1answer
133 views
Is there a way to exit power mode in the Scala interpreter?
I know power mode together with a slew of other options can be enabled in the interpreter with :power. Is there a way to leave power mode and return to a regular user?
Cheers,
Henry Henrinson
2
votes
1answer
262 views
how to check errors happening inside scala interpreter programatically
I am executing scala code snippets using scala.tools.nsc.Interpreter
When the code snippet is correct, everything is fine, but when it is buggy, my code is unable to find out and happily goes on. I ...
12
votes
1answer
1k views
How to call the scala interpreter in a Simple Build Tool project?
my scala program is using the compiler interface from scala.tools.nsc.interpreter.IMain. When I am compiling with scalac, everything works as expected. But when I compile with sbt it still compiles, ...
6
votes
2answers
2k views
scala as scripting language [duplicate]
Possible Duplicate:
“eval” in Scala
I know scala is a compiled language, but I do also know that I can dynamically load classes into the jvm, and I can call the scala compiler ...
1
vote
1answer
308 views
Scala Interpreter for custom DSL leads to memory leaks?
At my current project we are planing to implement special DSL to allow end-user to do workflow customizations. We are considering several ways to do it and one of the them is to use Scala Interpreter ...
2
votes
3answers
387 views
Scala parser combinators, failure on end of line
I am trying to build an interpreter for the Icon programming language, in Scala. Right now I am working on setting up a parser for it.
The code I have written so far is:
package interpreter
import ...
7
votes
2answers
913 views
How to force interpreter show complete stack trace?
Is there any way to force Scala interpreter (started through SBT) to print complete stack trace. By default, less than 10 lines are displayed:
scala> new CacheMonitoringClient
...
4
votes
1answer
754 views
Drop into Scala interpreter during execution of Scala program
I am trying to drop into the Scala interpreter in the middle of my Scala program.
I've seen this very interesting question but it does not seem to be working in Eclipse (3.5.2 + Scala plugin).
I get ...
8
votes
1answer
2k views
dynamically create class in scala, should I use interpreter?
I want to create a class at run-time in Scala. For now, just consider a simple case where I want to make the equivalent of a java bean with some attributes, I only know these attributes at run time.
...
33
votes
2answers
5k views
Drop into interpreter during arbitrary scala code location
I come from a Python background, where at any point in my code I can add
import pdb; pdb.set_trace()
and at runtime I'll be dropped into an interactive interpreter at that spot. Is there an ...
12
votes
2answers
3k views
Printing Unicode from Scala interpreter
When using the scala interpreter (i.e. running the command 'scala' on the commandline), I am not able to print unicode characters correctly. Of course a-z, A-Z, etc. are printed correctly, but for ...
10
votes
4answers
4k views
Include jar file in Scala interpreter
Is it possible to include a jar file run running the Scala interpreter?
My code is working when I compile from scalac:
scalac script.scala -classpath *.jar
But I would like to be able to include a ...
4
votes
7answers
1k views
Writing Interpreters in Python. Is isinstance considered harmful?
I'm porting over the interpreter for a domain specific language I created from Scala to Python. In the process I tried to find a way that way pythonic to emulate the case class feature of Scala that I ...
5
votes
2answers
4k views
How to add external library to the classpath in scala's interpreter?
I'm trying to reference some classes in the Scala Interpreter that were writen and compiled using Eclipse. Eclipse stores compiled Java byte code in a folder {workspace}/myProject/bin. Is there some ...