Skip to content

Commit 5ee83c9

Browse files
authored
Merge pull request #894 from smucclaw/thomasgorissen/fix-mixfix-track-result-codelens
Thomasgorissen/fix mixfix track result codelens
2 parents ead9820 + cfad99b commit 5ee83c9

36 files changed

Lines changed: 270 additions & 160 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
build
55
.continue
66
.claude/settings.local.json
7+
.claude/*.lock
78
# Build Outputs
89
## Built Visual Studio Code Extensions
910
.cabal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ L4 has been piloted with organizations in both public and private sectors:
103103
## Community
104104

105105
- **[Discord](https://discord.gg/Q7a7NSEdNy)** — chat with the community
106-
- **[GitHub Issues](https://github.com/smucclaw/l4-ide/issues)** — report bugs, request features
106+
- **[GitHub Issues](https://github.com/legalese/l4-ide/issues)** — report bugs, request features
107107
- **[Legalese](https://legalese.com)** — professional implementation services
108108

109109
L4 is published under the [Apache-2.0 License](LICENSE).

doc/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,16 @@ Understand the "why" behind L4:
115115
## Community & Support
116116

117117
- **[Discord](https://discord.gg/Q7a7NSEdNy)** - Chat with the community
118-
- **[GitHub Issues](https://github.com/smucclaw/l4-ide/issues)** - Report bugs, request features
118+
- **[GitHub Issues](https://github.com/legalese/l4-ide/issues)** - Report bugs, request features
119119
- **[Legalese Services](https://legalese.com)** - Professional implementation services
120120

121121
---
122122

123123
## Developer Resources
124124

125-
- **[Latest Stable Build](https://github.com/smucclaw/l4-ide/releases)** - [![L4-IDE](https://img.shields.io/github/v/release/smucclaw/l4-ide?color=brightgreen&logo=github&label=L4-IDE)](https://github.com/smucclaw/l4-ide/releases/latest)
126-
- **[L4 IDE Repository](https://github.com/smucclaw/l4-ide)** - Open-Source code
125+
- **[Latest Stable Build](https://github.com/legalese/l4-ide/releases)** - [![L4-IDE](https://img.shields.io/github/v/release/smucclaw/l4-ide?color=brightgreen&logo=github&label=L4-IDE)](https://github.com/legalese/l4-ide/releases/latest)
126+
- **[L4 IDE Repository](https://github.com/legalese/l4-ide)** - Open-Source code
127127

128128
---
129129

130-
L4 is published under the [Apache-2.0 License](https://github.com/smucclaw/l4-ide/blob/main/LICENSE).
130+
L4 is published under the [Apache-2.0 License](https://github.com/legalese/l4-ide/blob/main/LICENSE).

doc/courses/foundation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ Additional examples in the repository:
141141

142142
- **Stuck?** Check the [Reference](../../reference/README.md) for syntax details
143143
- **Confused?** Read [Concepts](../../concepts/README.md) for deeper explanations
144-
- **Bug?** Report via [GitHub Issues](https://github.com/smucclaw/l4-ide/issues)
144+
- **Bug?** Report via [GitHub Issues](https://github.com/legalese/l4-ide/issues)

doc/reference/GLOSSARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,4 +359,4 @@ Metadata annotations for documentation and generation.
359359
- **[Courses](../courses/README.md)** - Learning paths
360360
- **[Tutorials](../tutorials/README.md)** - Task-oriented guides
361361
- **[Concepts](../concepts/README.md)** - Understanding L4's design
362-
- **[Specifications](https://github.com/smucclaw/l4-ide/tree/main/specs)** - Technical specifications
362+
- **[Specifications](https://github.com/legalese/l4-ide/tree/main/specs)** - Technical specifications

doc/reference/libraries/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ L4 ships with a set of core libraries that provide essential functions for commo
44

55
## Overview
66

7-
Core libraries are located in the [jl4-core/libraries/](https://github.com/smucclaw/l4-ide/tree/main/jl4-core/libraries) directory:
7+
Core libraries are located in the [jl4-core/libraries/](https://github.com/legalese/l4-ide/tree/main/jl4-core/libraries) directory:
88

99
- **[prelude](prelude.md)** - Standard functions (automatically imported)
1010
- **[daydate](daydate.md)** - Date calculations and temporal logic
@@ -249,4 +249,4 @@ Legal entity types, identity documents, and capacity checks. Key functions: `age
249249
- **[GLOSSARY](../GLOSSARY.md)** - Language feature index
250250
- **[Types](../types/README.md)** - Type system documentation
251251
- **[IMPORT keyword](IMPORT.md)** - IMPORT keyword details
252-
- **[Specs](https://github.com/smucclaw/l4-ide/tree/main/specs)** - Technical specifications
252+
- **[Specs](https://github.com/legalese/l4-ide/tree/main/specs)** - Technical specifications

doc/reference/libraries/actus.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Import with `IMPORT actus` to get all modules, or import individual modules sele
88

99
| File | Purpose |
1010
| ------------------------------------------------------------------------------------------------------ | ----------------------------------------- |
11-
| [actus.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus.l4) | Main entry point (re-exports all modules) |
12-
| [actus-core.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-core.l4) | Core types (contract types, roles, enums) |
13-
| [actus-terms.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-terms.l4) | Contract term definitions |
14-
| [actus-state.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-state.l4) | Contract state variables |
15-
| [actus-events.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-events.l4) | Event types and operations |
16-
| [actus-daycount.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-daycount.l4) | Day count conventions and year fractions |
17-
| [actus-schedule.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus-schedule.l4) | Schedule generation |
11+
| [actus.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus.l4) | Main entry point (re-exports all modules) |
12+
| [actus-core.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-core.l4) | Core types (contract types, roles, enums) |
13+
| [actus-terms.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-terms.l4) | Contract term definitions |
14+
| [actus-state.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-state.l4) | Contract state variables |
15+
| [actus-events.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-events.l4) | Event types and operations |
16+
| [actus-daycount.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-daycount.l4) | Day count conventions and year fractions |
17+
| [actus-schedule.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus-schedule.l4) | Schedule generation |
1818

1919
### Core Types (`actus-core`)
2020

@@ -113,4 +113,4 @@ Import with `IMPORT actus` to get all modules, or import individual modules sele
113113

114114
- `` `net cash flow` `` — sum all cash flows from a list of events
115115

116-
**See the [actus.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/actus.l4) source and sub-modules for full details.**
116+
**See the [actus.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/actus.l4) source and sub-modules for full details.**

doc/reference/libraries/currency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Can be imported into L4 files with `IMPORT currency`.
55

66
### Location
77

8-
[jl4-core/libraries/currency.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/currency.l4)
8+
[jl4-core/libraries/currency.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/currency.l4)
99

1010
### Features
1111

doc/reference/libraries/date-compat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Backwards compatibility layer for legacy DATE syntax. Import with `IMPORT date-c
44

55
### Location
66

7-
[jl4-core/libraries/date-compat.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/date-compat.l4)
7+
[jl4-core/libraries/date-compat.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/date-compat.l4)
88

99
### Purpose
1010

doc/reference/libraries/datetime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Can be imported into L4 files with `IMPORT datetime`. Automatically imports `day
55

66
### Location
77

8-
[jl4-core/libraries/datetime.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/datetime.l4)
8+
[jl4-core/libraries/datetime.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/datetime.l4)
99

1010
### Prerequisites
1111

@@ -91,4 +91,4 @@ All number-based constructors accept an optional trailing `tz` (STRING) for expl
9191

9292
[datetime-example.l4](datetime-example.l4)
9393

94-
**See [datetime.l4](https://github.com/smucclaw/l4-ide/blob/main/jl4-core/libraries/datetime.l4) source for all functions.**
94+
**See [datetime.l4](https://github.com/legalese/l4-ide/blob/main/jl4-core/libraries/datetime.l4) source for all functions.**

0 commit comments

Comments
 (0)