v/vlib/v/ast/ast.v

175 lines
2.2 KiB
V
Raw Normal View History

2019-12-22 02:34:37 +01:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module ast
import (
v.token
2019-12-27 08:52:20 +01:00
v.types
2019-12-22 02:34:37 +01:00
)
struct Foo {}
2019-12-28 09:43:22 +01:00
pub type Expr = BinaryExpr | UnaryExpr | IfExpr | StringLiteral | IntegerLiteral | FloatLiteral |
VarDecl | FnDecl | Return
2019-12-22 02:34:37 +01:00
2019-12-28 09:43:22 +01:00
pub type Stmt = Foo // VarDecl
2019-12-26 11:21:41 +01:00
pub struct IntegerLiteral {
pub:
val int
}
2019-12-24 18:54:43 +01:00
2019-12-27 10:03:29 +01:00
pub struct FloatLiteral {
pub:
2019-12-28 09:43:22 +01:00
// val f64
2019-12-27 10:03:29 +01:00
val string
}
2019-12-24 18:54:43 +01:00
pub struct StringLiteral {
pub:
val string
}
2019-12-22 02:34:37 +01:00
2019-12-28 11:02:06 +01:00
// module declaration
pub struct Module {
pub:
2019-12-28 09:43:22 +01:00
name string
path string
expr Expr
}
// import statement
pub struct Import {
pub:
2019-12-28 09:43:22 +01:00
name string
expr Expr
// imports map[string]string
}
2019-12-27 13:57:49 +01:00
pub struct FnDecl {
pub:
name string
2019-12-28 09:43:22 +01:00
// stmts []Stmt
2019-12-27 13:57:49 +01:00
exprs []Expr
2019-12-28 09:43:22 +01:00
typ types.Type
2019-12-27 13:57:49 +01:00
}
pub struct Return {
pub:
expr Expr
}
2019-12-22 02:34:37 +01:00
/*
pub enum Expr {
Binary(BinaryExpr)
If(IfExpr)
Integer(IntegerExpr)
}
*/
2019-12-24 18:54:43 +01:00
/*
2019-12-22 02:34:37 +01:00
pub struct Stmt {
pos int
//end int
}
2019-12-24 18:54:43 +01:00
*/
2019-12-28 09:43:22 +01:00
2019-12-24 18:54:43 +01:00
pub struct VarDecl {
pub:
name string
expr Expr
2019-12-28 09:43:22 +01:00
typ types.Type
2019-12-24 18:54:43 +01:00
}
pub struct Program {
pub:
exprs []Expr
2019-12-28 09:43:22 +01:00
// stmts []Stmt
2019-12-24 18:54:43 +01:00
}
2019-12-22 02:34:37 +01:00
// A single identifier
struct Ident {
tok_kind token.TokenKind
2019-12-28 09:43:22 +01:00
value string
2019-12-22 02:34:37 +01:00
}
pub struct BinaryExpr {
pub:
tok_kind token.TokenKind
2019-12-28 09:43:22 +01:00
// op BinaryOp
op token.TokenKind
left Expr
// left_type Type
right Expr
// right_type Type
2019-12-22 02:34:37 +01:00
}
pub struct UnaryExpr {
pub:
2019-12-28 09:43:22 +01:00
// tok_kind token.TokenKind
// op BinaryOp
op token.TokenKind
left Expr
}
2019-12-22 02:34:37 +01:00
struct IfExpr {
tok_kind token.TokenKind
2019-12-28 09:43:22 +01:00
cond Expr
body []Stmt
else_ []Stmt
2019-12-22 02:34:37 +01:00
}
struct ReturnStmt {
2019-12-28 09:43:22 +01:00
tok_kind token.TokenKind // or pos
results []Expr
2019-12-22 02:34:37 +01:00
}
// string representaiton of expr
pub fn (x Expr) str() string {
match x {
BinaryExpr {
return '(${it.left.str()} $it.op.str() ${it.right.str()})'
}
UnaryExpr {
return it.left.str() + it.op.str()
}
IntegerLiteral {
return it.val.str()
}
IntegerLiteral {
return '"$it.val"'
}
2019-12-28 09:43:22 +01:00
else {
return ''
}
}
2019-12-22 02:34:37 +01:00
}
/*
enum BinaryOp {
sum
difference
product
quotient
remainder
bitwise_and
bitwise_or
bitwise_xor
left_shift
right_shift
equality
inequality
less_than
less_than_or_equal
more_than
more_than_or_equal
in_check
//These are suffixed with `bool` to prevent conflict with the keyword `or`
and_bool
or_bool
}
*/