An interpreter is a program that executes, i.e. performs, instructions written in a programming language. The tag [interpreter] should be applied to questions concerning the programming of interpreters or for questions about the detailed inner workings of interpreters.

learn more… | top users | synonyms

1
vote
0answers
29 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 ...
0
votes
3answers
38 views

C++ Writing an Interpreter - determining loops target for break statement c++

I am writing a simple program interpreter in c++. When I am building the internal representation of the program and I get a break statement, how do I determine the encompassing loops target location? ...
3
votes
1answer
30 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, ...
-1
votes
0answers
23 views

Purpose of Virtual Machine in an Interpreter - Answered [closed]

I am writing an interpreter for a simple programming language in c++. Does the virtual machine, where the statements are stored, actually take care of the execution phase? Or does the interpreter take ...
2
votes
3answers
178 views

Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]

Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
0
votes
1answer
17 views

Display twig code written in a twig file

I am writting a tutorial and need to display some twig code... Problem: I'm writting that twig code on a twig view, so I need to find some way to write it raw, without interpretation. Currently, I am ...
2
votes
1answer
57 views

PostScript execution of nested procedures

(I'm back with yet another question :-) ) Given the following PostScript code: /riverside { 5 pop } def /star { 6 pop 2 {riverside} repeat } def star I'm wondering how nested procedures should be ...
0
votes
0answers
30 views

Choosing Python3.3 interpreter in Eclipse problems

I am new to Eclipse & PyDev (on Ubuntu 13.04) and want to try Python3.3 programming. But I cannot choose python3.3 iterpreter, - I try to choose it in usr\lib\python3.3 , but: - when I try to ...
5
votes
3answers
189 views

Can I compile the code on the fly in Delphi and execute it?

Is it possible to generate an array of bytes and then have Windows execute it like a normal code? Say we have some assembly code: inc ecx which is part of a program. After we compile with Nasm we ...
0
votes
1answer
34 views

Why numbers can't be used for variable's first character?

I'm just wondering why most(maybe all) interpreter/compiler does not allow numeric character at the beginning of a variable? My guess is that when a number is parsed after a white space or operator, ...
2
votes
1answer
40 views

PostScript current graphics state implementation

I have a question concerning the current graphics state and the Graphics State Stack in PostScript. In my code I now have a Stack which represents the current graphics state. When I initialise my ...
0
votes
0answers
45 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 ...
0
votes
0answers
14 views

Scala nsc Interpreter does not know surrounding classes

Why is the interpreter (IMain) in the following code not aware of the 'surrounding' trait Speaker ? package net.entelijan.shuck import java.io.PrintWriter import ...
0
votes
1answer
32 views

How does one use the read function in Scheme? I know how it works syntactically, but the console doesn't let me enter values

I think I'm confused about how Scheme works with user input. I want to just read some values from the console that the user inputs as the script runs. For example, if I wanted to add a user's value ...
1
vote
2answers
104 views

Avoiding C++ polymorphism

I recently created my own scripting language. My code structures are heavily based on polymorphism. (I'm not really sure about how is this called. I've got a virtual function and then I derive the ...
0
votes
1answer
24 views

Structuring a JavaScript app using a modular approach

I am trying to write a javaScript application that is of sufficient size that modularity is probably a good idea. I am using the famous inherit function to enable objects to inherit from constructors ...
0
votes
1answer
7 views

Is choosing an interpreter the same thing as choosing a version of python?

Newbie programmer here: I have python 2.7 and 3.3 installed on my machine (windows 7). Is selecting an interpreter the same thing as telling your computer which version of python you want to run? ...
0
votes
0answers
19 views

How does an interpretor handle functon calls?

I came across this question --> In program A, a set of lines of code is repeated 10 times; In program B, the same set of code is put in a function and the function is called 10 times Which ...
0
votes
0answers
27 views

What language to use for a simple interpreter running on the web? [closed]

I'm trying to develop a small simple language to do some basic stuff. The code will be run server-side and interpreted into another language. What kind of language should I be looking at in terms of ...
0
votes
1answer
42 views

How to get mmap'ed memory to sync to the file?

I'm building a memory manager for my postscript interpreter and I want it to be able to suspend sessions to disk and resume a saved session. I designed it using an anonymous mmap and everything ...
3
votes
3answers
53 views

Python Interpreter Mode - What are some ways to explore Python's modules and its usage

While inside the Python Interpreter: What are some ways to learn about the packages I have? >>> man sys File "<stdin>", line 1 man sys ^ SyntaxError: invalid syntax ...
0
votes
2answers
67 views

php URL interpreting - can't make custom 404 page loaded

according to the codes below: if the url entered by hand is: http://www.mydomain.com/nonexistingpage then according to CODE 2; $_GET['page'] == 'nonexistingpage' so $sayfa value is assigned as ...
0
votes
1answer
69 views

Compiling my scripting language

I have developed a frame work for a scripting language and I am trying to make a compiler for it to output onto a certain file a custom Hex code to be read by an interpreter for applications such as ...
4
votes
3answers
233 views

Garbage collection issue in an interpreter implemented in C

I'm working on a hobby compiler/interpreter for a toy procedural language and I've implemented most of the features I set out to explore except for a good garbage collection algorithm (similar to this ...
3
votes
2answers
71 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
1answer
29 views

Interpret user entered dates in JavaScript

I was looking for a convenient method to take a date entered by a user and do the following: 1) Determine if the Date entered is valid, and if it is valid, return an object with: 2) A JavaScript ...
2
votes
2answers
148 views

Modern interpreter code in c++?

I'm looking for simple interpreter code written in c++. Ideally, it would be for something no more complex than an expression evaluator with variable assignment (for the memory management code). My ...
2
votes
1answer
209 views

How to best add element to array at arbitrary index in PHP?

How can I write a solution for which the current PHP interpreter (5.4) is smart enough to simply do about 3-5 copies instead of a full on item-by-item array sort? Note, I know a few methods to ...
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
69 views

Stack automatically modifying when it shouldn't

I'm implementing a Prolog interpreter in OCaml. The problem I'm having is in the main function. I'm essentially trying to store my interpreter stack within a function call, and modify a copy of this ...
1
vote
0answers
32 views

write a REPL: where to start?

I learned Ruby and Scala, and they both have a great REPLs. The interactive tools help me a lot when learning a language. Recently I'm learning Haxe and found it doesn't have a real REPL(just a ...
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 ...
1
vote
0answers
51 views

Error when configuring Python interpreter for PyDev in Eclipse

I just recently installed the PyDev 2.6 plugin for Eclipse (I run Eclipse SDK 4.2.1) and when I try to configure the Python interpreter to the path: > C:\Python27\python.exe , it gives me an "Error ...
2
votes
1answer
59 views

Scheme - Can a Double-Quote Delimit a Number?

I'm currently implementing a web-based Scheme environment for the kicks and giggles. Whilst implementing the parser, I stumbled across an oddity: some Scheme implementations state that a number's ...
3
votes
3answers
100 views

Is there any way to create a high level language interpreter implmented in hardware?

Some random thoughts caught me and I just cannot get it out. I am thinking since morden processors are just interpreters for different kinds of assembly languages, is there anyway to create some ...
5
votes
5answers
130 views

Does a browser truly read JavaScript line by line OR does it make multiple passes?

I understand that JavaScript is interpreted and not compiled. No problem there. However, I keep reading here that JavaScript is executed "on the fly" and that lines are read one at a time. This ...
0
votes
2answers
78 views

Python console in Eclipse

I'm unable to run a python console inside Eclipse. I've downloaded Pydev, set up an interpreter and a PYTHONPATH and imported a project, a Django project. I set up the project as a Django one and then ...
0
votes
0answers
154 views

Writing an interpreter in C++

I'm working on a C++ project which should do following operations: Open a .txt file which contains list of strings (for example String1: "Hi,name_1_is,;Ondrej,age24;year,,88;") with optional ...
1
vote
2answers
75 views

php - Unsuccesful url RewriteRules, .htaccess and/or url interpreting set-up

My issue is I have an unsuccesfull .htaccess & url interpreting set-up and I hope to get help because I couldn't solve my issue on my own. my symptoms I have no problem with my sole index.php ...
2
votes
1answer
52 views

Why the id of an object would change depending on the line in the python shell

This questions is just out of curiosity. While I was reading the python's object model documentation, I decided to experiment a little with the id of a class method and found this behavior: Python ...
1
vote
2answers
136 views

How can I import a .so module in PyPy?

I am green to PyPy, and I use PyPy1.9 to interpret my Python code. As you know, the CPython interpreter can import a module packaged in a .so file, which is compiled from C/C++ codes. But PyPy1.9 ...
1
vote
0answers
81 views

Where to start on a server-side interpreter

I am experienced in php and python and have slight experience in C#. I have crated a compiler in python and now would like to work on a server-side language. However, I don't want to crate a compiler ...
2
votes
2answers
204 views

HTML: Change background color of individual characters in textarea?

I'm making a brainfuck interpreter (brainfuck is a programming language consisting of 8 symbols, those are ,.+-<>[] ) Is there a way to color the background of individual characters in a HTML ...
0
votes
1answer
137 views

Executing LLVM IR during runtime on Windows

During some research across the internet and Stackoverflow the only example on how to execute IR code during runtime was this one on SO. I have now compiled llvm and clang with Visual Studio 2012 and ...
3
votes
2answers
115 views

Haskell - help simplifying a function with advanced type features

I'm writing an interpreter for a dynamically typed language in Haskell. Like most dynamically typed language interpreters, my program is also needs to check types in runtime. One of the most used ...
0
votes
1answer
53 views

Apply operators to two objects without 'dynamic'

Context: I am writing an interpreter for a simple language, for users to have play around with and have fun. It will run as a mod to a game. The reason I can't use dynamic is because the game runs in ...
0
votes
1answer
43 views

Is there a way to check if a given string, when run with eval() actually can run in the python interpreter?

I have a list of strings and i figured there might be a way for the parent program to tell if one of these child programs compiled successfully in the python interpreter when using eval() instead of ...
2
votes
0answers
61 views

Mathematics of interpretation [closed]

My programming languages textbook explains how interpreters work by providing Scheme programs. For example, there is a procedure that determines whether a variable falls within the scope of an ...
1
vote
0answers
150 views

Is there a Javascript LLVM IR bitcode interpreter?

I'm trying to run an existing C project in a browser without relying on addons/plugins/etc. Sources are 3MB, resulting compiled bitcode (llvm-link) is 3.5M. When running the bitcode with lli the ...
0
votes
5answers
39 views

How does the interpreter know when a double quoted variable ends?

I'm using this code which works: $this->path_medium = $this->PICTURES . "$this->file_hash-2.jpg"; However, I need to update it, as it is not very readable; $this->file_hash is a ...

1 2 3 4 5 17