pkg/domain/core_domain/code_import.go

Summary

Maintainability
A
0 mins
Test Coverage
package core_domain

type CodeImport struct {
    Source     string
    AsName     string
    ImportName string
    UsageName  []string
    Scope      string // function, method or class
}

func NewJImport(str string) CodeImport {
    return CodeImport{
        Source: str,
    }
}