Files
UnrealEngine/Engine/Source/Runtime/VerseCompiler/Private/uLang/SemanticAnalyzer/Desugarer.h
2025-05-18 13:04:45 +08: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);
}