[interp] Small fixes (#11667)
[mono-project.git] / mono / metadata / method-builder-internals.h
blobc18c81f153534622c325e308a6deaf2b0335a852
1 /**
2 * \file
3 * Copyright 2018 Microsoft
4 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
5 */
6 #ifndef __MONO_METHOD_BUILDER_INTERNALS_H__
7 #define __MONO_METHOD_BUILDER_INTERNALS_H__
9 #include "config.h"
10 #include <mono/metadata/class.h>
11 #include <mono/metadata/object-internals.h>
12 #include <mono/metadata/class-internals.h>
13 #include <mono/metadata/opcodes.h>
14 #include <mono/metadata/reflection.h>
15 #include <mono/metadata/method-builder.h>
17 /* noilgen version */
18 struct _MonoMethodBuilder {
19 MonoMethod *method;
20 gchar *name;
21 gboolean no_dup_name;
24 #endif