Top "Code-generation" questions

Topics related to the generation of code as the output of an application, instead of directly writing code by a programmer.

Automatically generate C++ file from header?

I have a bunch of C++ header files with various class and function declarations. So far, when I've been writing …

c++ code-generation
is there a simple compiler for a small language

I am looking for a simple compiler that compiles a simple language, I need it to write a paper about …

parsing code-generation lexical-analysis compiler-construction
C# Source Generator - warning CS8032: An instance of analyzer cannot be created

I'm trying to build a Source Generator. Right now, just the most basic static method that returns "Hello World". The …

c# .net code-generation c#-9.0
How to emit and execute Java bytecode at runtime?

I am writing an interpreter in Java for a domain-specific language with some scripting capabilities. I have already implemented a …

java jvm code-generation bytecode compiler-construction
Best practices for Axis2 with Maven

I'm a novice both to Maven and Axis2. My project consists of three modules: client, interface and server. Service is …

maven code-generation axis2
Creating a function object from a string

Question: Is there a way to make a function object in python using strings? Info: I'm working on a project …

python code-generation python-2.x function-object
zip(list1, list2) in Jinja2?

I'm doing code generation in Jinja2 and I frequently want to iterate through two lists together (i.e. variables names …

python code-generation jinja2
Using multiple WSDLs with Axis2 wsdl2code Maven plugin

I'm creating a client with Maven2 that uses several web services. I'm restricted to using Axis2 or other framework supporting …

java maven code-generation axis2 wsdl2code
Why does Visual Studio use xchg ax,ax

I was looking through the disassmbly of my program (because it crashed), and noticed lots of xchg ax, ax I …

assembly code-generation x86-64
How to use a dynamic CSV delimiter with FileHelpers?

Question: I need to read a CSV file. I use the FileHelpers library to achieve this. The problem is I …

c# .net csv code-generation filehelpers