add license header

This commit is contained in:
2013-06-02 09:47:27 +02:00
parent 2bc261f344
commit 677965eaba
51 changed files with 307 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ASTElement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ASTVisitor.h"
ASTVisitor::ASTVisitor() {

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/AssignmentExpression.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/BinOp.h"
std::string binOpToString(BinOp op) {

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/BinOpExpression.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/CodeGenVisitor.h"
#include "llvm/Analysis/Verifier.h"
#include <iostream>

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ConstantExpression.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/Expression.h"
Expression::Expression() {

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ExpressionStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ForStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/FunctionCallExpression.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/FunctionDefinition.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/IfStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/LoadExpression.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ParameterList.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/PrintVisitor.h"
#include <iostream>
#include <sstream>

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/RandomForStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/RandomIfStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ReturnStatement.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/Scope.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/Statement.h"
Statement::Statement() {

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/StatementList.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/Type.h"
#include "llvm/DerivedTypes.h"
#include "llvm/LLVMContext.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/ValueList.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include "AST/VariableDefinition.h"
#include "AST/ASTVisitor.h"

View File

@@ -1,3 +1,9 @@
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#include <time.h>
#include <stdlib.h>
#include <stdbool.h>