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 sys
struct Point {
Point {
x int
y int
}

View File

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

View File

@ -1,4 +1,4 @@
struct sockaddr_in_bsd {
sockaddr_in_bsd {
sin_len int8
sin_family int8
sin_port int16

View File

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

View File

@ -31,12 +31,29 @@ func (s *Scanner) scanFile(path string, pkg string) error {
switch tokens[i].Kind {
case token.NewLine:
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:
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:
i, err = s.scanExtern(file, tokens, i)
case token.Const:

View File

@ -60,7 +60,7 @@ func scanFunctionSignature(file *fs.File, tokens token.List, i int, delimiter to
}
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
@ -71,7 +71,7 @@ func scanFunctionSignature(file *fs.File, tokens token.List, i int, delimiter to
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

View File

@ -9,12 +9,6 @@ import (
// scanStruct scans a struct.
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)
structure := types.NewStruct(file.Package, structName)

View File

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

View File

@ -25,7 +25,7 @@ func TestFunction(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{
token.Assert,
@ -37,7 +37,6 @@ func TestKeyword(t *testing.T) {
token.For,
token.Loop,
token.Return,
token.Struct,
token.Switch,
token.EOF,
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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