0
votes
0answers
47 views

How to use semantic predicates?

I'm trying to write a grammar that checks a condition and upon the condition it decides whether it goes for the then part or jump to the else part. The Grammar is as follows: grammar test; @members ...
3
votes
2answers
72 views

Why isn't all the java bytecode initially interpreted to machine code?

I read about Just-in-time compilation (JIT) and as I understood, there are two approaches for this – Interpreter and JIT, both of which interpreting the bytecode at runtime. Why not just ...
0
votes
2answers
54 views

Are there any good libraries for interpreting java language?

In lot of cases there is no need for classes to be explicitly compiled(i.e. running unit tests - I want them to be just runnable, not necessarily to be compiled & packaged). I'm curious if there ...
0
votes
1answer
45 views

Jog java interpreter to return the console output as string

Im trying to make a java interpreter for iphone, however the library which i am using only prints the console output to the NSLog/printf console. I want it to return a std::string which i can convert ...
0
votes
2answers
186 views

How to make own interpreter in Java?

I'm writing Java appication that sends messages on different sites (like spamer). Of course this should contains configs for each site. In different site different logic of send message and so on... I ...
0
votes
4answers
209 views

How to build an interpreter for a small language? [closed]

I'm trying to figure out where to start with this project. Perhaps someone can steer me in the right direction. I am given a small language that I must write an interpreter for. The language consists ...
0
votes
4answers
85 views

Interpreting Java and converting it to another language

I work with a language similar to JavaScript that is used for point-of-sale device programming. This language really s*cks and I'm trying to build some kind of framework in Java that "converts" Java ...
0
votes
1answer
86 views

interpreting conditions written in natural language into Java code

The problem: I want users to be able to write conditions in a simple syntax in a text editor, as in: A?outcome1:(B?outcome2:outcome3) A and B are boolean conditions. So the sentence above means: ...
6
votes
3answers
374 views

Why is java both compiled and interpreted [duplicate]

Possible Duplicate: Is Java a Compiled or an interpreted programming language? Why is Java both compiled and interpreted language? We first compiles the java program using javac(compiling) ...
13
votes
3answers
634 views

Using Interpreter pattern on a Composite structure

I've been asked to make an expression evaluator using Composite, Recursive Descendent Parser and Interpreter. Here's the grammar : <cond> → <termb> [OR <termb>]* ...
2
votes
3answers
153 views

What is a good approach/tool to embed a mini-language in Java app?

I am trying to solve the following problem: I have a Java app (not written by me) whose purpose is to take 2 report files (just comma separated table output), and compare each row and each column of ...
2
votes
3answers
269 views

Will Jvm make compiled byte code into executable file

I read the following articles: http://searchcio-midmarket.techtarget.com/definition/just-in-time-compiler http://javarevisited.blogspot.in/2011/12/jre-jvm-jdk-jit-in-java-programming.html I am now ...
0
votes
1answer
489 views

Writing BASIC interpreter in java - loops and ifs

This paper: http://www.codeproject.com/Articles/345888/How-to-write-a-simple-interpreter-in-JavaScript helped me greatly in terms of engineering parsing and write instructions, however it does not ...
3
votes
1answer
175 views

Jython as in-game console for java game

I love both python and java and I'd love to have console in my game powered by python (jython). Handling input-output from PythonInterpreter is amazingly easy. But right now, I need to access ...
2
votes
2answers
151 views

Statically Typing a Scripting Language in Java

I'm building a scripting language in Java for a game, and I'm currently working on the parser. The language is to be utilized by players/modders/myself to create custom spells and effects. However, ...
2
votes
1answer
81 views

Making a Safari Reader-style application

I've been inspired by Safari's Reader feature, which lets you ignore all content on a webpage except the story (all the text, links, and images which comprise the point of the page, but none of the ...
2
votes
1answer
375 views

A java interpreter written in java [closed]

I'd like to write a Java interpreter, in Java, with the intention of adding some other features to the language. I was wondering if there was already some Java interpreters existing, written in Java, ...
1
vote
1answer
152 views

Do you know of any Java bytecode interpreters?

i am looking for a Java interpreter not a JVM (no JIT) till now i have checked llvm vmkit gij (from gcj) jikesrvm (JVM) Kaffe (JVM) However, as i only need an interpreter i would prefer to find ...
0
votes
2answers
148 views

How to program a command-line and choose the appropriate command to run?

I've got the task to program a kind of commandline in Java. It's meant to tests parts of a compiler. You see a promt an can type commands like "read_source ", "parse", "build_ast", "ast2cfg", ...
0
votes
3answers
273 views

Smalltalk - Can write the Java program in Smalltalk?

I am trying to convert this Java interpreter I wrote for my compiler to a Smalltalk interpreter. Is it possible? If so, what would be a good resources to look at? I am completely new to Smalltalk, ...
0
votes
2answers
243 views

How to implement closures into a LISP interpreter

I'm currently working on a LISP interpreter written in Java. Now I stuck at the closures. I want to enable closures like this: (define a 1000) (define closure (lambda (a) (lambda (b) (+ a b)))) ...
1
vote
1answer
133 views

Interpreter and Datastructure for parsing (String) Equation

I am looking for a interpreter and/or datastructure in Java that can handle strings like: x^2+y^2+z^2 = 1" and interprets it by +, -, = delimiters and later with other operations like ^. This is ...
0
votes
6answers
2k views

Why does java have an interpreter? and not a compiler? [closed]

Iam a newbie to java and was wondering why java have a interpreter and not a compiler? While shifting from c++ to java we come across the differences between these two Compilation process being one ...
1
vote
1answer
95 views

Java Scripting Interpreter

I am thinking about building a project, that in the name of custom expanding (time of execution doesn't really mean too much) and will control arrays of custom objects within the program providing ...
3
votes
1answer
396 views

How to write the java interpreter/lexical analyzer

How to write For 1 data type, integer, and the only identifiers are single letter (i.e. there are only 26 possible identifiers). not case sensitive have white space (blank characters, tab ...
0
votes
2answers
229 views

ANTLRworks creating interpreter from grammar

Hey I have a quick question. I am using ANTLRworks to create an interpreter in Java from a set of grammar. I was going to write it out by hand but then realized I didn't have to because of antlrworks. ...
3
votes
1answer
230 views

Eclipse built-in shell

Does Eclipse come with a built-in interpreter? If not is there anything like IDLE for Python Shell that is lightweight and just works? I have already tried Groovy but I need something that is ...
1
vote
1answer
269 views

Small/toy language compiler/interpreter implemented in Java

I'm looking for a small/toy programming language that is implemented in Java. The implementation should preferably not be much more than around a 1000 lines or so. It might e.g. be a simple imperative ...
0
votes
2answers
348 views

Why does interpreter with JIT produce faster codes than the one without?

I'm still not clear about the concept of compiling byte codes into machine codes by a JIT compiler. I want to know why it produce faster codes v.s a non-JIT interpreter. Can somebody give me a good ...
0
votes
2answers
315 views

Switch or if statements in writing an interpreter in java

Current assignment needs me to write a program to read a file with instructions in a very tiny and basic programming language (behaves a little like FORTRAN) and execute those instructions. Basically ...
2
votes
2answers
199 views

zombie java interpreter after launching applet prevents java console to reappear if relaunched

I have a java application that can be run as a JFrame or as an applet. Launching the applet in the browser adds a new tab in the browser and also makes the Java Console appear. After I close both of ...
3
votes
2answers
200 views

Easily exporting python to someone without the interpreter

Suppose I have a group of people to whom I want to show my python program. I don't want to have to tell them each "Ok, go to the python website, install the interpreter, open IDLE, open my program, ...
1
vote
3answers
106 views

How to test an interpreter using JUnit?

I am writing tests for an interpreter from some programming language in Java using JUnit framework. To this end I've created a large number of test cases most of them containing code snippets in a ...
1
vote
2answers
98 views

How to compile java source from custom ide [closed]

I am making an interpreted language with java......and am also making an IDE for it. I want to know how to compile java source from my IDE and have it run on a console. I have created a simple console ...
3
votes
5answers
2k views

Creating custom interpreter in Java: Where to start from?

Our company uses own (built in here) scripting language for programming, but they would like to create interpreter that will translate this script codes to Java. This scripting language is quite ...
1
vote
0answers
1k views

Problem Running Python Script in Java (Eclipse)

so yesterday I asked a question and I thought I had gotten my answer as everything seemed to work fine. I come back today to try and run my program and find nothing happens, and this time I am not ...
4
votes
1answer
673 views

Using a Python Script in Java (Eclipse)

I've been looking to incorporate a Python Script a friend made for me into a Java application that I am trying to develop. After some trial and error I finally found out about 'Jython' and used the ...
1
vote
1answer
391 views

How to capture output from Beanshell

I've been using BeanShell to interpret simple files that just do some calculations and then output to the console. Thing is, I want to grab the output. Such that from System.out.println("test"); I can ...
23
votes
5answers
3k views

C interpreter written in javascript

Is there any C interpreter written in javascript or java ? I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
3
votes
3answers
923 views

Interactive interpreter for Java

Is there a good interactive interpreter for Java, similar to Scala's? When programming, I like to try small pieces of code to see if they work like I expect before plugging them in to my main ...
3
votes
4answers
564 views

Custom interpreter in java

Hi I want to write a program to be able to parse & execute some files The file consists of some custom commands (I want to be able to define commands and appropriate methods so when program see ...
0
votes
1answer
155 views

java framework for parsing action file

Hi I want to write a program in J2SE that be able to read commands (with their parameters) from some file (Like an XML file) And then do the corresponding procedure on some given data. For example if ...
7
votes
7answers
1k views

There is an interactive interpreter for Java? [closed]

I want to execute java commands interactively from shell: there is a way to do it?
9
votes
5answers
1k views

Why is java bytecode interpreted?

As far as I understand Java compiles to Java bytecode, which can then be interpreted by any machine running Java for its specific CPU. Java uses JIT to interpret the bytecode, and I know it's gotten ...
3
votes
2answers
356 views

jsr223 + writing a script interpreter

OK. ScriptEngine.eval(String string) evaluates a string in its entirety, and ScriptEngine.eval(Reader reader) evaluates the input from a Reader in its entirety. So if I have a file, I can open a ...
0
votes
5answers
494 views

Programming an Interpreter for a Compiler

I'm writing an interpreter for a compiler program in Java. So after checking the source code, syntax and semantics, I want to be able to run the source code, which is the input for my compiler. I'm ...
2
votes
3answers
386 views

Java style FOR loop in a clojure interpeter?

I have a basic interpreter in clojure. Now i need to implement for (initialisation; finish-test; loop-update) { statements } inside my interpreter. I will attach my interpreter code I got so ...
6
votes
4answers
2k views

Java Threads vs OS Threads

Looks like I have messed up with Java Threads/OS Threads and Interpreted language. Before I begin, I do understand that Green Threads are Java Threads where the threading is taken care of by the JVM ...
0
votes
2answers
213 views

Java Command Line? [duplicate]

Possible Duplicate: Java REPL shell Hey, Is there any way to execute Java code (as you type) on a command line? For instance, something like this (command line) java import ARDrone; ...
0
votes
2answers
665 views

Write a simple interpreter, or find one I can use?

I need a very simple interpreter that is written in Java. The language is going to be simple. I just need string operators, like "contains and equals". I need logically AND, OR. Along with ...

1 2