Problem This code reads a .cs source file in the bin folder and parses the C# code in it. The […]
Tag: compiler
JavaCC Android port User Interface (Activity) class
Problem I have been working on a port of JavaCC for Android. It is mainly an interface. I needed only […]
Runtime compiler for getting/setting runtime property values
Problem I’ve been playing about with runtime compilation to allow me to get/set runtime property values in C#, and so […]
Using a compiler specified on the command line or automatically detected
Problem Here is part of my build system. guessCompilers :: Options -> IO Options guessCompilers options = foldl (>>=) (return […]
Abstract syntax tree for simple Lisp-like interpreter
Problem A week or so ago, I wrote a binary expression calculator with the hope of better understanding how interpreters […]
Build script for an operating system written in C++
Problem I recently started following the James M Kernel Dev tutorials and was able to create an operating system in […]
Compiler Tokenizer implementation in C# – follow-up
Problem I have posted this question 2 days ago and got amazing feedback on it. Hands back to the keyboard, […]
Adding numbers of any type
Problem I’m writing an interpreter, and I’m designing the abstract syntax tree currently. Right now, I’m trying to figure out […]
Lexer for C# source code
Problem This code reads a .cs source file in the bin folder and parses the C# code in it. The […]