javascript

package
v0.16.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 15, 2026 License: AGPL-3.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsTestFile

func IsTestFile(filePath string) bool

IsTestFile reports whether the given JavaScript/JSX/MJS/CJS path is a test file.

func ResolveJavaScriptImportPath

func ResolveJavaScriptImportPath(sourceFile, importPath string, suppliedFiles map[string]bool) []string

ResolveJavaScriptImportPath resolves a JavaScript import path to possible file paths

func ResolveJavaScriptProjectImports

func ResolveJavaScriptProjectImports(
	absPath string,
	filePath string,
	ext string,
	suppliedFiles map[string]bool,
	contentReader vcs.ContentReader,
) ([]string, error)

Types

type ExternalImport

type ExternalImport struct {
	// contains filtered or unexported fields
}

ExternalImport represents an external npm package import

func (ExternalImport) IsTypeOnly

func (e ExternalImport) IsTypeOnly() bool

func (ExternalImport) Path

func (e ExternalImport) Path() string

type InternalImport

type InternalImport struct {
	// contains filtered or unexported fields
}

InternalImport represents an internal project file import (./, ../)

func (InternalImport) IsTypeOnly

func (i InternalImport) IsTypeOnly() bool

func (InternalImport) Path

func (i InternalImport) Path() string

type JavaScriptImport

type JavaScriptImport interface {
	Path() string
	IsTypeOnly() bool
}

JavaScriptImport represents an import in a JavaScript/JSX file (type-only imports are always false for standard JavaScript).

func JavaScriptImports

func JavaScriptImports(filePath string) ([]JavaScriptImport, error)

JavaScriptImports parses a JavaScript/JSX file and returns its imports

func ParseJavaScriptImports

func ParseJavaScriptImports(sourceCode []byte, isJSX bool) ([]JavaScriptImport, error)

ParseJavaScriptImports parses JavaScript source code and extracts imports

type Module

type Module struct{}

func (Module) Extensions

func (Module) Extensions() []string

func (Module) IsTestFile

func (Module) IsTestFile(filePath string, _ vcs.ContentReader) bool

func (Module) Maturity

func (Module) Maturity() moduleapi.MaturityLevel

func (Module) Name

func (Module) Name() string

func (Module) NewResolver

func (Module) NewResolver(ctx *moduleapi.Context, contentReader vcs.ContentReader) moduleapi.Resolver

type NodeBuiltinImport

type NodeBuiltinImport struct {
	// contains filtered or unexported fields
}

NodeBuiltinImport represents a Node.js built-in module import (fs, path, http, node:fs)

func (NodeBuiltinImport) IsTypeOnly

func (n NodeBuiltinImport) IsTypeOnly() bool

func (NodeBuiltinImport) Path

func (n NodeBuiltinImport) Path() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL