@@ -25,7 +25,7 @@ Compile-time errors are detected during the code compilation phase, indicating s
2525** Error Message** :
2626```
2727Error E001: Undeclared identifier 'X'
28- --> main.nexa :15:5
28+ --> main.nx :15:5
2929 |
303015 | result = UnknownAgent.run(input);
3131 | ^^^^^^^^^^^^^ 'UnknownAgent' not found
@@ -58,7 +58,7 @@ result = WeatherBot.run(input);
5858** Error Message** :
5959```
6060Error E002: Type mismatch
61- --> main.nexa :23:20
61+ --> main.nx :23:20
6262 |
636323 | protocol Report { score: "number" }
6464 | ^^^^^ expected 'number', found 'string'
@@ -89,7 +89,7 @@ protocol Report {
8989** Error Message** :
9090```
9191Error E003: Missing required property 'role'
92- --> main.nexa :10:1
92+ --> main.nx :10:1
9393 |
949410 | agent MyAgent {
9595 | ^^^^^^^^^^^^^ 'role' property is required
@@ -122,7 +122,7 @@ agent MyAgent {
122122** Error Message** :
123123```
124124Error E004: Syntax error
125- --> main.nexa :5:1
125+ --> main.nx :5:1
126126 |
1271275 | agent { }
128128 | ^^^^^^^^ Expected IDENTIFIER after 'agent'
@@ -142,7 +142,7 @@ Error E004: Syntax error
142142** Error Message** :
143143```
144144Error E005: Duplicate declaration 'MyAgent'
145- --> main.nexa :20:1
145+ --> main.nx :20:1
146146 |
14714720 | agent MyAgent { ... }
148148 | ^^^^^^^^^^^^^ 'MyAgent' already declared
@@ -250,7 +250,7 @@ match user_input {
250250** Error Message** :
251251```
252252ContractViolation(requires:deterministic, message="amount must be positive")
253- --> transfer.nexa :5
253+ --> transfer.nx :5
254254```
255255
256256** Cause** :
@@ -285,7 +285,7 @@ flow review(code: string) -> Report
285285** Error Message** :
286286```
287287ContractViolation(ensures:semantic, message="result must include actionable feedback")
288- --> review.nexa :8
288+ --> review.nx :8
289289```
290290
291291** Cause** :
@@ -317,7 +317,7 @@ ContractViolation(invariant:deterministic, message="state must be idle or runnin
317317** Error Message** :
318318```
319319TypeViolation: Expected Int, got String
320- --> main.nexa :10
320+ --> main.nx :10
321321 |
32232210 | let x: Int = "hello"
323323 | ^^^^^^^ Type mismatch
@@ -344,7 +344,7 @@ let y: String = "hello" // ✅ Correct
344344** Error Message** :
345345```
346346TypeWarning: Expected Int, got String (mode: warn)
347- --> main.nexa :10
347+ --> main.nx :10
348348```
349349
350350** Cause** :
0 commit comments