-
Notifications
You must be signed in to change notification settings - Fork 1
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
Conversation
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) |
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.
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.
Signed-off-by: Omkar Phansopkar <[email protected]>
f2d32c4
to
850a077
Compare
Signed-off-by: Omkar Phansopkar <[email protected]>
Signed-off-by: Omkar Phansopkar <[email protected]>
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 { |
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.
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 { |
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.
Should have a test case for this because there are parsing and decisions involved.
Signed-off-by: Omkar Phansopkar <[email protected]>
Pre-requisite for https://github.com/safedep/malysis/issues/42