Skip to content
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

Enable depsuasage plugin for go and javascript #22

Merged
merged 4 commits into from
Mar 3, 2025

Conversation

OmkarPh
Copy link
Member

@OmkarPh OmkarPh commented Feb 27, 2025

@OmkarPh OmkarPh requested a review from abhisek February 27, 2025 10:18
core/language.go Outdated
// LanguageResolvers define the minimum contract for a language
// implementation to resolve language specific concerns
// such as imports, functions, etc.
type LanguageResolvers interface {
// ResolveImports returns a list of import statements
// identified from the parse tree
ResolveImports(tree ParseTree) ([]*ast.ImportNode, error)

// ResolveImportContents returns the contents of an import
ResolveImportContents(importNode *ast.ImportNode) (ImportContents, error)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets not introduce this because its not a core language concern. As discussion in #21 (comment)

Let us leave it on client code to decide how to deal with a language specific import name. For Go, the language specific import names include double quotes.

@OmkarPh OmkarPh force-pushed the feat/45-depsuasage-go-js branch from f2d32c4 to 850a077 Compare February 28, 2025 04:45
@OmkarPh OmkarPh requested a review from abhisek March 1, 2025 15:00
core/language.go Outdated
// ImportContents represents the contents of an import node
// It represents the ready to use content of import nodes which may
// exhibit different forms in different languages
type ImportContents struct {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should avoid introducing this as a core language concern. It will introduce ambiguity wrt. ImportNode. If this is required, we can move this to helpers.

}
}

func isIgnoredNode(node *sitter.Node, treeLanguage *core.Language, data *[]byte) bool {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should have a test case for this because there are parsing and decisions involved.

@OmkarPh OmkarPh requested a review from abhisek March 3, 2025 07:30
@abhisek abhisek merged commit bb66646 into main Mar 3, 2025
5 checks passed
@abhisek abhisek deleted the feat/45-depsuasage-go-js branch March 3, 2025 08:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants