Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
7answers
535 views

Do you know of a language with Static Type checking where Code is Data?

Can you name language with Static Type checking(like Java) and where Code is Data(like in LISP)? I mean both things in one language.
10
votes
3answers
504 views

Why are most S-Expression languages dynamically typed?

How come most Lisps and Schemes are dynamically typed? Does static typing not mix with some of their common features?
8
votes
4answers
177 views

Is there something similar to Nokogiri for parsing Ruby code?

Nokogiri is awesome. I can do things like #css('.bla') which will return the first matching element. Right now we need to do some parsing of Ruby source code - finding all methods within a class etc. ...
6
votes
3answers
615 views

How do I manipulate parse trees?

I've been playing around with natural language parse trees and manipulating them in various ways. I've been using Stanford's Tregex and Tsurgeon tools but the code is a mess and doesn't fit in well ...
6
votes
1answer
884 views

Building Lisp/Scheme-like parse tree with flex/bison

I was trying to parse simple Lisp/scheme-like code E.g. (func a (b c d) ) and build a tree from it, I could do the parsing in C without using bison (i.e, using only flex to return tokens and ...
6
votes
3answers
793 views

Write C as s-expressions

I want to write C in s-expressions and use compile-time macros. Does anybody know of anything that does this? It should translate the s-expressions into standard C.
5
votes
1answer
447 views

Parsing S-Expressions in Python

Are there any python modules available for parsing and manipulating symbolic expressions in Python similar to how Lisp expressions are evaluated?
3
votes
2answers
129 views

XML, S-Expressions, and overlapping scope… What's it called?

I was reading XML is not S-Expressions. XML scoping is kind of strict, as are S-expressions. And in every programming language I've seen, you can't have the following: <b>BOLD <i>BOTH ...
2
votes
3answers
127 views

What tools exist for parsing Javascript and reading the results in Javascript or Ruby?

I'd like to do some code-analysis of Javascript. I'd prefer to operate on ASTs or S-Expressions. It's certainly possible that the V8 engine builds this, though I can't seem to find any documentation ...
2
votes
4answers
182 views

Emacs: how to evaluate the smallest s-expression the cursor is in, or the following s-expression

What is a good way to evaluate the (+ 100 (+ 100 100)) part in (+ (+ 1 2) (+ 100 (+ 100 100))) ? For now, I do it by C-x C-e, which means I need to locate the ending parenthesis, which is ...
2
votes
1answer
386 views

Org-Mode table to s-expressions

I would like to export from Org-Mode tables to s-expressions. | first | second | thrid | |--------+--------+--------| | value1 | value2 | value3 | | value4 | value5 | value6 | Would turn into: ...
2
votes
2answers
142 views

what is the difference between a syntax and s-expressions

what is the main differences between syntax language and s-expressions language ? does using s-expressions affects compiling time (in the parsing process) or does it bring any advantage to the ...
1
vote
3answers
96 views

S-expression idioms

I am interested in S-expressions, but I still don't have the right idioms in mind. Imagine a VLSI component, characterized by a name and a list of typed ports. What is preferable : (component name ...
1
vote
2answers
93 views

With clojure read/read-string function, how do i read in a .clj file to a list of objects

As titled, If I do (read-string (slurp "somefile")) This will only give me the first object in the file, meaning if "somefile" is as below: (a obj) (b obj) Then I only get (a obj) as the ...
1
vote
1answer
256 views

Parsing and building S-Expressions using Sets and binary search tree

This is pseudo homework (it's extra credit). I've got a BST which is an index of words that point to the lines (stored somewhere else) that contain the words. I need to implement a way to search ...
1
vote
1answer
147 views

Bug in s-expr printing function

To practice my Haskell skills, I'm following the Write Yourself a Scheme tutorial. I've implemented a parser for s-expressions, but I'm having trouble with the printing function. When I run the ...
1
vote
2answers
160 views

Can this image processing code be optimised to use less memory?

I have a python function that takes a string s-expression like "(add (sub 10 5) 5)", where "add" and "sub" are actually image processing functions, and evaluates and creates the image represented in ...
1
vote
2answers
130 views

Clojure Application Data Exchange

I would like to move data back and fourth between clojure applications. Application settings and some state information. I can not decide between using xml or s-expressions, what do you think pros ...
0
votes
1answer
37 views

How to build AST by S-expression in Ruby?

I have no idea how to build S-exp. I want to do it, because I need to build AST for my langauge. At the beginning I used RubyParser to parse it to sexp then code gen. But it must be ruby's subset I ...
0
votes
2answers
42 views

Looking for tools on Sexp expressions in Ruby

I am a recent fan of s-exp expressions in Ruby. I discovered Sexpistol parser for instance. Are you using other dedicated tools around them (schemas etc ) ? Thx JCLL
0
votes
1answer
180 views

Can Haskell match on S-Expression like match of Racket?

I just started to learn Haskell three days ago, aiming for a interpreter for some custom-ed semantics in Haskell. I have the Racket implementation of the interpreter, the match matching on the ...
0
votes
3answers
208 views

Help parsing S-Expression

I'm trying to make a simple drawing program that reads in translate (rect 10 10 10 10) 50 50. What I'm trying to do is split it so that the 50 50 goes with the translate and the rect keeps all the ...
0
votes
4answers
180 views

Parsing s-expressions with PHP

Well, I need to parse 2 textfiles. 1 named Item.txt and one named Message.txt They are configuration files for a game server, Item contains a line for each item in the game, and Message has Item ...
0
votes
2answers
2k views

How to evaluate an expression in prefix notation

I am trying to evaluate a list that represents an expression in prefix notation. Here is an example of such a list: [+, [sin, 3], [- 10 5]] What is the best way to evaluate the value of the list
0
votes
4answers
442 views

Parsing Lisp S-Expressions with known schema in C#

I'm working with a service that provides data as a Lisp-like S-Expression string. This data is arriving thick and fast, and I want to churn through it as quickly as possible, ideally directly on the ...