Compare commits

..

No commits in common. "0d96efd4d8c2ecaff0ff727f4f3c07eae67f1d6c" and "5102d2567654357b69e9b4432859243c2e77f7a9" have entirely different histories.

12 changed files with 17 additions and 202 deletions

View File

@ -23,20 +23,13 @@
- Include the original tokens in the AST
## v0.0.15
- [ ] Replace all panics with actual errors
- [ ] Remove all old codegen
- [ ] Test codegen
- [ ] Begin work on the code formatter
## v0.0.14
- [x] Define a minimal PHP AST
- [x] Transform THP AST into PHP AST
- [x] Implement minimal codegen for the PHP AST
- [x] Finish the workflow for a hello world
- [ ] Define a minimal PHP AST
- [ ] Transform THP AST into PHP AST
- [ ] Implement minimal codegen for the PHP AST
- [ ] Remove old codegen
- [ ] Finish the workflow for a hello world
## v0.0.13

View File

@ -1,6 +1,6 @@
[package]
name = "thp"
version = "0.0.14"
version = "0.0.13"
edition = "2021"

View File

@ -1,5 +1,5 @@
use crate::lexic::get_tokens;
use std::io::{self, BufRead};
use crate::lexic::get_tokens;
pub fn tokenize_command(_options: Vec<String>) -> Result<(), ()> {
// Get the input from stdin
@ -8,10 +8,12 @@ pub fn tokenize_command(_options: Vec<String>) -> Result<(), ()> {
let mut lines = Vec::new();
for line in stdin.lock().lines() {
match line {
Ok(line) => lines.push(line),
Ok(line) => {
lines.push(line)
}
Err(reason) => {
eprintln!("Error reading input: {}", reason);
return Err(());
return Err(())
}
}
}

View File

@ -1,5 +1,5 @@
// TODO: These are for the THP AST. Eventually replace this
// with the PHP AST
use crate::syntax::ast::ModuleAST;
mod binding;
mod block;
mod expression;
@ -9,15 +9,13 @@ mod module_ast;
mod statement;
mod top_level_construct;
mod php;
/// Trait that the AST and its nodes implement to support transformation to PHP
pub trait Transpilable {
trait Transpilable {
/// Transforms this struct into PHP
fn transpile(&self) -> String;
}
/// Transforms an AST to its representation in PHP
pub fn codegen<'a>(ast: &'a impl Transpilable) -> String {
pub fn codegen<'a>(ast: &'a ModuleAST) -> String {
ast.transpile()
}

View File

@ -1,50 +0,0 @@
use std::os::linux::raw::stat;
use crate::php_ast::{PhpAst, PhpExpression, PhpStatement};
use super::Transpilable;
impl Transpilable for PhpAst<'_> {
fn transpile(&self) -> String {
let mut fragments = vec![String::from("<?php\n")];
for statement in self.statements.iter() {
fragments.push(statement.transpile());
}
fragments.join("")
}
}
impl Transpilable for PhpStatement<'_> {
fn transpile(&self) -> String {
match self {
PhpStatement::PhpEchoStatement(expr_list) => {
let expressions_vec = expr_list.expressions
.iter()
.map(|e| e.transpile())
.collect::<Vec<_>>();
let expressions_str = if expressions_vec.is_empty() {
"\"\"".into()
} else {
expressions_vec.join(", ")
};
format!("echo {};", expressions_str)
}
}
}
}
impl Transpilable for PhpExpression<'_> {
fn transpile(&self) -> String {
match self {
PhpExpression::String(value) => {
format!("{}", value)
}
}
}
}

View File

@ -1,20 +1,3 @@
// Follows https://phplang.org/spec/19-grammar.html#syntactic-grammar
pub mod transformers;
/// Represents `statement-list` on the grammar
pub struct PhpAst<'a> {
pub statements: Vec<PhpStatement<'a>>,
}
pub enum PhpStatement<'a> {
PhpEchoStatement(PhpExpressionList<'a>),
}
pub struct PhpExpressionList<'a> {
pub expressions: Vec<PhpExpression<'a>>,
}
pub enum PhpExpression<'a> {
String(&'a String),
}
struct PhpAst {}

View File

@ -1,16 +0,0 @@
use super::super::PhpExpression;
use crate::syntax::ast::Expression;
use super::PHPTransformable;
/// Transforms a THP expression into a PHP expression
impl<'a> PHPTransformable<'a> for Expression<'_> {
type Item = PhpExpression<'a>;
fn into_php_ast(&'a self) -> Self::Item {
match self {
Expression::String(value) => PhpExpression::String(value),
_ => todo!("transformation for expression: {:?}", self),
}
}
}

View File

@ -1,10 +0,0 @@
pub mod expression;
pub mod module_ast;
pub mod statement;
/// Implemented by AST nodes that can be transformed to PHP
pub trait PHPTransformable<'a> {
type Item;
fn into_php_ast(&'a self) -> Self::Item;
}

View File

@ -1,61 +0,0 @@
use super::super::PhpAst;
use crate::php_ast::{PhpExpression, PhpExpressionList, PhpStatement};
use crate::syntax::ast::{Expression, ModuleAST, ModuleMembers};
use super::PHPTransformable;
/// Transforms a THP AST into a PHP AST
impl<'a> PHPTransformable<'a> for ModuleAST<'_> {
type Item = PhpAst<'a>;
fn into_php_ast(&'a self) -> Self::Item {
let mut php_statements = Vec::<PhpStatement>::new();
for production in self.productions.iter() {
match production {
ModuleMembers::Stmt(stmt) => {
php_statements.push(stmt.into_php_ast());
}
ModuleMembers::Expr(expr) => {
// TODO: This should be done by the Expression transformer
match expr {
Expression::FunctionCall(fc) => {
let function_expr: &Expression = &*fc.function;
match function_expr {
Expression::Identifier(id) if *id == "print" => {
// transform to print() expression
// no parameters supported
// transform parameters, expect them all to be strings
let mut expressions = Vec::<PhpExpression>::new();
for e in fc.arguments.arguments.iter() {
match e {
Expression::String(v) => {
expressions.push(PhpExpression::String(v))
},
_ => panic!("Non string expressions not supported")
}
}
php_statements.push(PhpStatement::PhpEchoStatement(PhpExpressionList {
expressions
}));
},
_ => todo!("Not implemented: AST transformation for function call that is not an identifier")
}
}
_ => {
todo!("not implemented: AST transform for expression {:?}", expr)
}
}
}
}
}
PhpAst {
statements: php_statements,
}
}
}

View File

@ -1,15 +0,0 @@
use super::super::PhpStatement;
use crate::syntax::ast::Statement;
use super::PHPTransformable;
/// Transforms a THP expression into a PHP expression
impl<'a> PHPTransformable<'a> for Statement<'_> {
type Item = PhpStatement<'a>;
fn into_php_ast(&'a self) -> Self::Item {
match self {
_ => todo!("transformation for statement: {:?}", self),
}
}
}

View File

@ -2,7 +2,6 @@ use std::io::{self, Write};
use colored::Colorize;
use crate::codegen::Transpilable;
use crate::error_handling::PrintableError;
use crate::lexic::token::Token;
@ -10,8 +9,6 @@ use super::codegen;
use super::lexic;
use super::syntax;
use crate::php_ast::transformers::PHPTransformable;
/// Executes Lexical analysis, handles errors and calls build_ast for the next phase
fn compile(input: &String) {
let tokens = lexic::get_tokens(input);
@ -35,9 +32,7 @@ fn build_ast(input: &String, tokens: Vec<Token>) {
match ast {
Ok(ast) => {
/*
let res1 = crate::semantic::check_semantics(&ast);
TODO: Disabled to test the PHP codegen. Reenable
match res1 {
Ok(_) => {}
Err(reason) => {
@ -47,10 +42,8 @@ fn build_ast(input: &String, tokens: Vec<Token>) {
return;
}
}
*/
let php_ast = ast.into_php_ast();
let js_code = php_ast.transpile();
let js_code = codegen::codegen(&ast);
println!("{}", js_code)
}
Err(reason) => {

View File

@ -62,8 +62,6 @@ pub struct Parameter<'a> {
pub enum Expression<'a> {
Int(&'a String),
Float(&'a String),
// TODO: Specify if this contains or not the original quotes ""
// TODO: After this fix where neccesary
String(&'a String),
Boolean(bool),
Identifier(&'a String),