3 implementations of Signature
ILCompiler.Compiler (3)
Compiler\DependencyAnalysis\AddressTakenMethodNode.cs (1)
35public override MethodSignature Signature => Method.Signature;
Compiler\DependencyAnalysis\JumpStubNode.cs (1)
25public abstract MethodSignature Signature { get; }
parent\parent\Common\Compiler\DependencyAnalysis\INodeWithTypeSignature.cs (1)
17MethodSignature INodeWithTypeSignature.Signature => Method.Signature;
2 references to Signature
ILCompiler.Compiler (2)
parent\parent\Common\Compiler\ObjectWriter\ObjectWriter.cs (1)
421Debug.Assert(codeNode.Signature != null, $"Wasm code node {codeNode.GetType()} has null signature");
parent\parent\Common\JitInterface\WasmLowering.cs (1)
581return GetSignature(node.Signature, GetLoweringFlags(node));