@razdolbai/merls 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -96,6 +96,7 @@ async function runSemanticTokensTest() {
96
96
  });
97
97
  const result = semanticTokensResponse.result;
98
98
  strict_1.default.ok(Array.isArray(result.data), "Expected data to be an array");
99
+ console.log(result.data);
99
100
  strict_1.default.ok(result.data.length > 0, "Expected non-empty semantic tokens array");
100
101
  }
101
102
  finally {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razdolbai/merls",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Language server for Merlin-style 6502 assembly.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -120,7 +120,7 @@ export async function runSemanticTokensTest(): Promise<void> {
120
120
 
121
121
  const result = semanticTokensResponse.result as { data: number[] };
122
122
  assert.ok(Array.isArray(result.data), "Expected data to be an array");
123
- assert.ok(result.data.length > 0, "Expected non-empty semantic tokens array");
123
+ console.log(result.data); assert.ok(result.data.length > 0, "Expected non-empty semantic tokens array");
124
124
 
125
125
  } finally {
126
126
  child.kill();