Removed struct keyword

This commit is contained in:
2025-04-04 13:32:55 +02:00
parent 9302eaef2f
commit 863fb7de5a
18 changed files with 44 additions and 40 deletions

View File

@ -1,7 +1,7 @@
import mem import mem
import sys import sys
struct Point { Point {
x int x int
y int y int
} }

View File

@ -1,11 +1,11 @@
struct sockaddr_in { sockaddr_in {
sin_family int16 sin_family int16
sin_port int16 sin_port int16
sin_addr int64 sin_addr int64
sin_zero int64 sin_zero int64
} }
struct timespec { timespec {
seconds int64 seconds int64
nanoseconds int64 nanoseconds int64
} }

View File

@ -1,7 +1,7 @@
struct sockaddr_in_bsd { sockaddr_in_bsd {
sin_len int8 sin_len int8
sin_family int8 sin_family int8
sin_port int16 sin_port int16
sin_addr int64 sin_addr int64
sin_zero int64 sin_zero int64
} }

View File

@ -3,11 +3,10 @@ package errors
var ( var (
EmptySwitch = &Base{"Empty switch"} EmptySwitch = &Base{"Empty switch"}
ExpectedConstName = &Base{"Expected a name for the const group"} ExpectedConstName = &Base{"Expected a name for the const group"}
ExpectedFunctionParameters = &Base{"Expected function parameters"} InvalidDefinition = &Base{"Invalid definition"}
ExpectedFunctionDefinition = &Base{"Expected function definition"} ExpectedFunctionDefinition = &Base{"Expected function definition"}
ExpectedIfBeforeElse = &Base{"Expected an 'if' block before 'else'"} ExpectedIfBeforeElse = &Base{"Expected an 'if' block before 'else'"}
ExpectedPackageName = &Base{"Expected package name"} ExpectedPackageName = &Base{"Expected package name"}
ExpectedStructName = &Base{"Expected struct name"}
ExpectedDLLName = &Base{"Expected DLL name"} ExpectedDLLName = &Base{"Expected DLL name"}
InvalidNumber = &Base{"Invalid number"} InvalidNumber = &Base{"Invalid number"}
InvalidCondition = &Base{"Invalid condition"} InvalidCondition = &Base{"Invalid condition"}

View File

@ -31,12 +31,29 @@ func (s *Scanner) scanFile(path string, pkg string) error {
switch tokens[i].Kind { switch tokens[i].Kind {
case token.NewLine: case token.NewLine:
case token.Comment: case token.Comment:
case token.Identifier:
if i+1 >= len(tokens) {
return errors.New(errors.InvalidDefinition, file, tokens[i].End())
}
next := tokens[i+1]
switch next.Kind {
case token.GroupStart:
i, err = s.scanFunction(file, tokens, i)
case token.BlockStart:
i, err = s.scanStruct(file, tokens, i)
case token.GroupEnd:
return errors.New(errors.MissingGroupStart, file, next.Position)
case token.BlockEnd:
return errors.New(errors.MissingBlockStart, file, next.Position)
case token.Invalid:
return errors.New(&errors.InvalidCharacter{Character: next.Text(file.Bytes)}, file, next.Position)
default:
return errors.New(errors.InvalidDefinition, file, next.Position)
}
case token.Import: case token.Import:
i, err = s.scanImport(file, tokens, i) i, err = s.scanImport(file, tokens, i)
case token.Struct:
i, err = s.scanStruct(file, tokens, i)
case token.Identifier:
i, err = s.scanFunction(file, tokens, i)
case token.Extern: case token.Extern:
i, err = s.scanExtern(file, tokens, i) i, err = s.scanExtern(file, tokens, i)
case token.Const: case token.Const:

View File

@ -60,7 +60,7 @@ func scanFunctionSignature(file *fs.File, tokens token.List, i int, delimiter to
} }
if paramsStart == -1 { if paramsStart == -1 {
return nil, i, errors.New(errors.ExpectedFunctionParameters, file, tokens[i].Position) return nil, i, errors.New(errors.InvalidDefinition, file, tokens[i].Position)
} }
return nil, i, nil return nil, i, nil
@ -71,7 +71,7 @@ func scanFunctionSignature(file *fs.File, tokens token.List, i int, delimiter to
continue continue
} }
return nil, i, errors.New(errors.ExpectedFunctionParameters, file, tokens[i].Position) return nil, i, errors.New(errors.InvalidDefinition, file, tokens[i].Position)
} }
// Return type // Return type

View File

@ -9,12 +9,6 @@ import (
// scanStruct scans a struct. // scanStruct scans a struct.
func (s *Scanner) scanStruct(file *fs.File, tokens token.List, i int) (int, error) { func (s *Scanner) scanStruct(file *fs.File, tokens token.List, i int) (int, error) {
i++
if tokens[i].Kind != token.Identifier {
return i, errors.New(errors.ExpectedStructName, file, tokens[i].Position)
}
structName := tokens[i].Text(file.Bytes) structName := tokens[i].Text(file.Bytes)
structure := types.NewStruct(file.Package, structName) structure := types.NewStruct(file.Package, structName)

View File

@ -74,7 +74,6 @@ const (
Import // import Import // import
Loop // loop Loop // loop
Return // return Return // return
Struct // struct
Switch // switch Switch // switch
___END_KEYWORDS___ // </keywords> ___END_KEYWORDS___ // </keywords>
) )

View File

@ -25,7 +25,7 @@ func TestFunction(t *testing.T) {
} }
func TestKeyword(t *testing.T) { func TestKeyword(t *testing.T) {
tokens := token.Tokenize([]byte("assert const else extern if import for loop return struct switch")) tokens := token.Tokenize([]byte("assert const else extern if import for loop return switch"))
expected := []token.Kind{ expected := []token.Kind{
token.Assert, token.Assert,
@ -37,7 +37,6 @@ func TestKeyword(t *testing.T) {
token.For, token.For,
token.Loop, token.Loop,
token.Return, token.Return,
token.Struct,
token.Switch, token.Switch,
token.EOF, token.EOF,
} }

View File

@ -31,8 +31,6 @@ func identifier(tokens List, buffer []byte, i Position) (List, Position) {
kind = Loop kind = Loop
case "return": case "return":
kind = Return kind = Return
case "struct":
kind = Struct
case "switch": case "switch":
kind = Switch kind = Switch
} }

View File

@ -1 +0,0 @@
struct{}

View File

@ -1,4 +1,4 @@
struct A {} A {}
main() { main() {
a := new(A) a := new(A)

View File

@ -17,12 +17,11 @@ var errs = []struct {
{"EmptySwitch.q", errors.EmptySwitch}, {"EmptySwitch.q", errors.EmptySwitch},
{"ExpectedDLLName.q", errors.ExpectedDLLName}, {"ExpectedDLLName.q", errors.ExpectedDLLName},
{"ExpectedFunctionDefinition.q", errors.ExpectedFunctionDefinition}, {"ExpectedFunctionDefinition.q", errors.ExpectedFunctionDefinition},
{"ExpectedFunctionParameters.q", errors.ExpectedFunctionParameters},
{"ExpectedIfBeforeElse.q", errors.ExpectedIfBeforeElse}, {"ExpectedIfBeforeElse.q", errors.ExpectedIfBeforeElse},
{"ExpectedIfBeforeElse2.q", errors.ExpectedIfBeforeElse}, {"ExpectedIfBeforeElse2.q", errors.ExpectedIfBeforeElse},
{"ExpectedStructName.q", errors.ExpectedStructName},
{"ExpectedPackageName.q", errors.ExpectedPackageName}, {"ExpectedPackageName.q", errors.ExpectedPackageName},
{"InvalidCondition.q", errors.InvalidCondition}, {"InvalidCondition.q", errors.InvalidCondition},
{"InvalidDefinition.q", errors.InvalidDefinition},
{"InvalidInstructionCall.q", &errors.InvalidInstruction{Instruction: "sys.write"}}, {"InvalidInstructionCall.q", &errors.InvalidInstruction{Instruction: "sys.write"}},
{"InvalidInstructionExpression.q", &errors.InvalidInstruction{Instruction: "2+3"}}, {"InvalidInstructionExpression.q", &errors.InvalidInstruction{Instruction: "2+3"}},
{"InvalidInstructionIdentifier.q", &errors.InvalidInstruction{Instruction: "abc"}}, {"InvalidInstructionIdentifier.q", &errors.InvalidInstruction{Instruction: "abc"}},

View File

@ -24,12 +24,12 @@ main() {
assert b.y == 4 assert b.y == 4
} }
struct Allocator { Allocator {
block *any block *any
current int current int
} }
struct Point { Point {
x int x int
y int y int
} }

View File

@ -1,6 +1,6 @@
import sys import sys
struct Struct { Struct {
func *any func *any
} }

View File

@ -3,6 +3,6 @@ main() {
c.value += 16 c.value += 16
} }
struct Counter { Counter {
value int value int
} }

View File

@ -1,4 +1,4 @@
struct Point { Point {
x int x int
y int y int
} }