blob: 075a0d5a06c598dca116e7d6d2377ef32aa83286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// slang-ir-lower-com-methods.h
#pragma once
namespace Slang
{
struct IRModule;
class DiagnosticSink;
/// Lower the signature of COM interface methods out of types that
/// cannot appear in a COM interface. For example, String, List, ComPtr, Result all need to be
/// translated.
void lowerComMethods(IRModule* module, DiagnosticSink* sink);
} // namespace Slang
|