blob: ef2ece9c8d0da671cfe434ebaaadc706a6ec9259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "../core/slang-basic.h"
#include "slang-ast-all.h"
#include "slang-compiler.h"
#include "slang-syntax.h"
#include "slang-workspace-version.h"
#include "slang.h"
namespace Slang
{
List<LanguageServerProtocol::DocumentSymbol> getDocumentSymbols(
Linkage* linkage,
Module* module,
UnownedStringSlice fileName,
DocumentVersion* doc);
} // namespace Slang
|