Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
421 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "uLang/Common/Containers/SharedPointer.h"
#include "uLang/Common/Text/Symbol.h"
#include "uLang/Diagnostics/Diagnostics.h"
#include "uLang/Semantics/Expression.h"
#include "uLang/Syntax/VstNode.h"
namespace uLang
{
TSRef<CAstProject> DesugarVstToAst(const Verse::Vst::Project& VstProject, CSymbolTable& Symbols, CDiagnostics& Diagnostics);
}