S-expressions are a notation for nested list or tree-structured data, popularized by [tag:lisp] programming language
1
vote
1answer
55 views
How can I unserialize a s-exp then seralize it and avoid upper-casing?
I am supposed to read a complex s-expression tree, modify some nodes and save it somewhere.
It appears that in process the 'read function is "modifying" the input. For instance in a simple example: ...
4
votes
1answer
122 views
How to safely read untrusted Clojure code?
(def evil-code (str "(" (slurp "/mnt/src/git/clj/clojure/src/clj/clojure/core.clj") ")" ))
(def r (read-string evil-code ))
Works, but unsafe
(def r (clojure.edn/read-string evil-code))
...
1
vote
2answers
130 views
Lazy list s-expression matrix in smalltalk
So I have a class to create in smalltalk called LazyMatrix. The class only has 1 instance variable and cannot be a subclass of anything but Object. The instance variable of LazyMatrix is called block ...
0
votes
1answer
110 views
Java LISP implementation almost working [closed]
package PJ2;
import java.util.*;
public class SimpleLispExpressionEvaluator
{
// Current input Lisp expression
private String inputExpr;
// Main expression stack & current operation ...
2
votes
2answers
196 views
S-Expressions parsing
I ran into this question earlier today:
Example Input: I ran into Joe and Jill and then we went shopping
Example Output: [TOP [S [S [NP [PRP I]] [VP [VBD ran] [PP [IN into] [NP [NNP Joe] [CC ...
7
votes
2answers
183 views
Is there a C# utility for matching patterns in (syntactic parse) trees?
I'm working on a Natural Language Processing (NLP) project in which I use a syntactic parser to create a syntactic parse tree out of a given sentence.
Example Input: I ran into Joe and Jill and then ...
0
votes
1answer
87 views
Ruby Lisp scanner not running [closed]
Below is the following code that I have written in Ruby that is supposed to prompt a user to enter an expression it which it scans each character and returns each character stating the type of ...
4
votes
1answer
55 views
OCaml sexplib, how to define custom to_sexplib function?
I'm using with sexp syntax to generate s-exp functions automagically.
The problem is data structures I'm printing with sexplib have some recursive pointers and printing will end up with stack ...
5
votes
1answer
159 views
Visualize s-expressions in real-time
I want to write Lisp/Scheme/Clojure code like this
(map inc (range 0 5))
And have it visualized somewhat like this
map -- inc
\\
range -- 0
\
-- 5
I want to ...
0
votes
1answer
143 views
Lisp S-Expressions and Lists Length/Size
I am trying to write a function using Common Lisp functions only that will count how many s-expressions are in an s-expression. For example:
((x = y)(z = 1)) ;; returns 2
and
((x - y)) ;; returns ...
1
vote
5answers
236 views
Flat evaluation of Lisp s-expressions
I'm trying to figure out how I could implement Lisp evaluation
non-recursive. My C based evaluator is Minimal Lisp file l1.c. However
several functions there recurse into eval again: eval, apply,
...
6
votes
3answers
186 views
Do any lisps have a s-expression as their head, e.g. ((f 2) 3 4)? If not, why?
Do any lisps support nested s-expression on their head? For example
((f 2) 3 4)
for which (f 2) presumably evaluates to a function/macro to apply on 3 4.
Is it possible to have a lisp supporting ...
5
votes
1answer
109 views
How can sexplib be used with functor types like Map?
Sexplib's syntax extension makes serialization and deserialization of arbitrary user-defined data structures easy in OCaml. It is generally done by adding a with sexp annotation to the end of a type ...
4
votes
2answers
253 views
Common lisp: is there a less painful way to input math expressions?
I enjoy common lisp, but sometimes it is really painful to input simple math expressions like
a(8b^2+1)+4bc(4b^2+1)
(Sure I can convert this, but it is kind of slow, I write (+ () ()) first, and ...
1
vote
1answer
70 views
Usage of ruby_parser, AST in prior 1.8.7 and S-expression in ruby?
Recently I am converting the ror project that uses ParseTree in ruby 1.8.7 to ruby 1.9.3
Figured out that ParseTree cannot work with 1.9.3, Searched for it in bunch of googlers, still stuck with some ...
0
votes
2answers
126 views
Difference between sexp and list in Emacs?
In Emacs there are commands to move cursor across expressions delimited in parentheses (or any brackets), namely forward-sexp, backward-sexp, forward-list and backward-list. In Lisp and any other code ...
2
votes
2answers
237 views
building s-expression with boost::proto
I'm trying to build s-expression objects using boost::proto with the following terminals:
typedef proto::terminal< const char* >::type string_term_t;
typedef proto::terminal< ...
5
votes
2answers
141 views
Search and replace on variable name within S-Expression (lexical scope)?
Using emacs with Paredit enabled. How can I search through a LISP (Clojure) S-expression and rename a variable? I'd like to do it within the current S-expression instead of globally.
0
votes
1answer
134 views
What is syntax expression?
I read in the book "Land of Lisp", the author mentions syntax expression. Does that mean the ability to express syntax as a form of data? Is this the same as S-expression (symbolic expression)?
3
votes
2answers
215 views
Parsing S-expressions with arbitrary delimiters in LISP
(I'm new enough to Lisp not to know how to do this, but familiar enough to know there just must be a simple way.)
I was intrigued by an article that I read recently which advocated storing log files ...
4
votes
3answers
355 views
Correct way of parsing S-expressions in OOP
I am looking for a way to implement an S-expression reader (to be used later on with both an Scheme interpreter and a compiler), but I've been asking myself how (if at all) I should write an AST for ...
1
vote
3answers
237 views
What is the disadvantage of list as a universal data type representation?
Lisp programmers tend to use lists to represent all other data types.
However, I have heard that lists are not a good universal representation for data types.
What are the disadvantage of lists ...
2
votes
4answers
174 views
What are improper lists for?
This is a follow-up of my previous question: Why do we need nil? Clearly, proper lists are used most of the time. But what is the purpose of an improper list?
4
votes
2answers
198 views
Why do we need `nil`?
I do not see why we need nil [1] when to cons a sequence (so-called proper list) of items. It seems to me we can achieve the same goal by using the so-called improper list (cons-ed pairs without an ...
0
votes
2answers
178 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 ...
3
votes
3answers
172 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
3answers
244 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 ) ?
2
votes
2answers
392 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 ...
9
votes
4answers
473 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. ...
0
votes
1answer
309 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
445 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 ...
1
vote
1answer
479 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
173 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 ...
0
votes
4answers
276 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 ...
2
votes
3answers
321 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 ...
7
votes
3answers
1k 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 ...
4
votes
2answers
253 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 ...
1
vote
2answers
204 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 ...
3
votes
3answers
7k 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
8
votes
1answer
1k 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?
9
votes
1answer
2k 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 ...
14
votes
7answers
890 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.
1
vote
5answers
965 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 ...
15
votes
3answers
717 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?
2
votes
4answers
230 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 ...
3
votes
1answer
512 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:
...
6
votes
3answers
1k 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.
3
votes
2answers
186 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
2answers
154 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 ...
