| Projects on Google Code | Results 1 - 10 of 140 |
FLAPIE (FLuent API Editor) is an Eclipse plugin, which will help you create an internal DSL in Java.
It is based on the Eclipse Xtext project, which will provide an editor in form of Eclipse plugin and a DSL for creating internal DSLs or fluent APIs for Java using code generation.
The aim of this...
The goal of this project is to (i) develop an implementation of C in Jetbrains MPS (ii) generate C code that runs on Lejos Osek and then (iii) demonstrate the power of domain-specific adaptation of C to make the development for C/Osek/Mindstorms simpler.
===Should DSL implemented in Python===
<p>The goal is to write a *"should"* _DSL_ in Python to be as clear as possible.</p>
<br/>
===should-dsl is at github.com===
<p>Due to DVCS I moved should-dsl to github.com. I will try to maintain both repositories up to date, but the github will be t...
DSL for checking context-free grammar properties implemented using JetBrains MPS
Simple Playground for Me to test My own DSLs.
as a java programmer, to develop a system, mostly we need to create sql by different criterions.
If we introduce hibernate, it provides criterion module to us, and if we introduce ibatis, it provides sql fragments to consist the last sql.
But, how if we don't introduce them? How can we enjoy...
repo for dadeo projects
Terra (means earth) is a domain specific language for specifying Enterprise Softwares and Systems. Wind is the platform underneath the language. The main features are:
* Focus on the domain
* Focus on the business rules, its validation, implementation and test.
* Abstraction and transparenc...
== ModSL ==
===Text-to-diagram UML sketching tool===
The goal of the project is to build a platform-independent UML modeling library for text-to-diagram translation. The domain-specific scripting language used by the core library is designed for simplicity of diagram sketching. The rendering eng...
Allows you to write php code like:
{{{
function test($x,$y){
echo $x;
yield($x,$y);
echo $y;
yield($y,$x);
}
test(1,2)[$a,$b | echo $a*$b];
test(2,3)[$a,$b | $a = $b+$a; echo $b*($a+$b)];
#Or bring it back the other way:
[$a, $b | echo $a*$b](1,2);
#Inline lambdas + d...