-
Notifications
You must be signed in to change notification settings - Fork 3
Release/1.6.0 #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release/1.6.0 #26
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| export { registerTools } from './tools.js'; | ||
| export type { ToolsRegistryOptions } from './tools.js'; | ||
| export type { ToolsRegistryOptions, ToolName } from './tools.js'; | ||
| export { default as Parser } from './parser.js'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -381,5 +381,73 @@ class Parser { | |||||
| }); | ||||||
| } | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
| * Looks up source code context for a specific line and column position | ||||||
| * @param line - 1-based line number in the compiled code | ||||||
| * @param column - Column number in the compiled code | ||||||
| * @param sourceMapUrl - URL of the source map file | ||||||
| * @param contextLines - Number of context lines to include (default: 5) | ||||||
| * @returns Context snippet or null if not found | ||||||
| */ | ||||||
| public async lookupContext(line: number, column: number, sourceMapUrl: string, contextLines: number = 5) { | ||||||
| validateUrl(sourceMapUrl); | ||||||
| await this.init(); | ||||||
|
|
||||||
| try { | ||||||
| const sourceMapContent = await this.fetchSourceMapContent(sourceMapUrl); | ||||||
| // Use the high-level lookup_context function directly | ||||||
| const result = sourceMapParser.lookup_context(sourceMapContent, line, column, contextLines); | ||||||
|
|
||||||
| return result; | ||||||
| } catch (error) { | ||||||
| throw new Error("lookup context error: " + (error instanceof Error ? error.message : error), { | ||||||
| cause: error, | ||||||
| }); | ||||||
| } | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
| * Unpacks all source files and their content from a source map | ||||||
| * @param sourceMapUrl - URL of the source map file | ||||||
| * @returns Object containing all source files with their content | ||||||
| */ | ||||||
| public async unpackSources(sourceMapUrl: string) { | ||||||
| validateUrl(sourceMapUrl); | ||||||
|
|
||||||
| try { | ||||||
| const sourceMapContent = await this.fetchSourceMapContent(sourceMapUrl); | ||||||
| const sourceMap = JSON.parse(sourceMapContent); | ||||||
|
|
||||||
| if (!sourceMap.sources || !Array.isArray(sourceMap.sources)) { | ||||||
| throw new Error("Invalid source map: missing or invalid sources array"); | ||||||
| } | ||||||
|
|
||||||
| const result: Record<string, string | null> = {}; | ||||||
|
|
||||||
| // Extract sources from sourcesContent if available | ||||||
| if (sourceMap.sourcesContent && Array.isArray(sourceMap.sourcesContent)) { | ||||||
| sourceMap.sources.forEach((source: string, index: number) => { | ||||||
| result[source] = sourceMap.sourcesContent[index] || null; | ||||||
| }); | ||||||
| } else { | ||||||
| // If no sourcesContent, list sources with null content | ||||||
| sourceMap.sources.forEach((source: string) => { | ||||||
| result[source] = null; | ||||||
| }); | ||||||
| } | ||||||
|
|
||||||
| return { | ||||||
| sources: result, | ||||||
| sourceRoot: sourceMap.sourceRoot || null, | ||||||
| file: sourceMap.file || null, | ||||||
| totalSources: sourceMap.sources.length | ||||||
| }; | ||||||
| } catch (error) { | ||||||
| throw new Error("unpack sources error: " + (error instanceof Error ? error.message : error), { | ||||||
|
||||||
| throw new Error("unpack sources error: " + (error instanceof Error ? error.message : error), { | |
| throw new Error("Failed to unpack source map sources: " + (error instanceof Error ? error.message : error), { |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error message 'lookup context error:' should be more descriptive. Consider using 'Failed to lookup source context:' to better indicate what operation failed.