https://github.com/shader-slang/slang
Raw File
Tip revision: 768e62f6c7541439e2edc18dad5fb3846d2e05f9 authored by Yong He on 10 October 2022, 22:59:45 UTC
Support multi-level break + single-return conversion + general inline. (#2436)
Tip revision: 768e62f
slang-language-server-document-symbols.h
#pragma once

#include "../../slang.h"
#include "../core/slang-basic.h"
#include "slang-ast-all.h"
#include "slang-syntax.h"
#include "slang-compiler.h"
#include "slang-workspace-version.h"

namespace Slang
{
List<LanguageServerProtocol::DocumentSymbol> getDocumentSymbols(
    Linkage* linkage, Module* module, UnownedStringSlice fileName, DocumentVersion* doc);
} // namespace Slang
back to top