cwtools / cwtools-vscode

A VS Code extension providing language server support for paradox script files using cwtools
Other
88 stars 12 forks source link

Event graph view #7

Open tboby opened 4 years ago

tboby commented 4 years ago

Features:

Proposed graph return structure

type GraphDataItem = 
{
    id : string
    displayName : string option
    documentation : string option
    references : string list
    location : range option
    details : Map<string, string list> option
}