11 files changed,
18 insertions(+),
18 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2026-05-23 17:52:23 +0300
Authored at:
2026-05-14 18:36:36 +0300
Change ID:
tqwnxlxvtsuqxtqryoqrnmwklktmyrql
Parent:
e586ae2
M
journal/lexer/lexer_test.go
··· 3 3 import ( 4 4 "testing" 5 5 6 - "github.com/olexsmir/ledger-tools/internal/testutil/golden" 7 - "github.com/olexsmir/ledger-tools/journal/token" 6 + "olexsmir.xyz/clerk/internal/testutil/golden" 7 + "olexsmir.xyz/clerk/journal/token" 8 8 ) 9 9 10 10 func TestLexer(t *testing.T) {
M
journal/loader.go
··· 7 7 "slices" 8 8 "strings" 9 9 10 - "github.com/olexsmir/ledger-tools/journal/ast" 11 - "github.com/olexsmir/ledger-tools/journal/lexer" 12 - "github.com/olexsmir/ledger-tools/journal/parser" 10 + "olexsmir.xyz/clerk/journal/ast" 11 + "olexsmir.xyz/clerk/journal/lexer" 12 + "olexsmir.xyz/clerk/journal/parser" 13 13 ) 14 14 15 15 type ParsedFile struct {
M
journal/parser/parser.go
··· 5 5 "strconv" 6 6 "strings" 7 7 8 - "github.com/olexsmir/ledger-tools/journal/ast" 9 - "github.com/olexsmir/ledger-tools/journal/lexer" 10 - "github.com/olexsmir/ledger-tools/journal/token" 8 + "olexsmir.xyz/clerk/journal/ast" 9 + "olexsmir.xyz/clerk/journal/lexer" 10 + "olexsmir.xyz/clerk/journal/token" 11 11 "github.com/shopspring/decimal" 12 12 ) 13 13
M
journal/parser/parser_test.go
··· 3 3 import ( 4 4 "testing" 5 5 6 - "github.com/olexsmir/ledger-tools/internal/testutil/golden" 7 - "github.com/olexsmir/ledger-tools/journal/ast" 8 - "github.com/olexsmir/ledger-tools/journal/lexer" 6 + "olexsmir.xyz/clerk/internal/testutil/golden" 7 + "olexsmir.xyz/clerk/journal/ast" 8 + "olexsmir.xyz/clerk/journal/lexer" 9 9 ) 10 10 11 11 func TestParser_ParseFile(t *testing.T) {