88ad4e6c24
- Add tests for the following diagnostics: GD0101, GD0102, GD0103, GD0104, GD0105, GD0106, GD0107. - Fix GD0101 not being reported any more (was filtering static classes before reporting). - Fix GD0107 not preventing `Node` members from being exported from not-`Node` types.
18 lines
969 B
C#
18 lines
969 B
C#
namespace Godot.SourceGenerators
|
|
{
|
|
public static class GodotClasses
|
|
{
|
|
public const string GodotObject = "Godot.GodotObject";
|
|
public const string Node = "Godot.Node";
|
|
public const string AssemblyHasScriptsAttr = "Godot.AssemblyHasScriptsAttribute";
|
|
public const string ExportAttr = "Godot.ExportAttribute";
|
|
public const string ExportCategoryAttr = "Godot.ExportCategoryAttribute";
|
|
public const string ExportGroupAttr = "Godot.ExportGroupAttribute";
|
|
public const string ExportSubgroupAttr = "Godot.ExportSubgroupAttribute";
|
|
public const string SignalAttr = "Godot.SignalAttribute";
|
|
public const string MustBeVariantAttr = "Godot.MustBeVariantAttribute";
|
|
public const string GodotClassNameAttr = "Godot.GodotClassNameAttribute";
|
|
public const string GlobalClassAttr = "Godot.GlobalClassAttribute";
|
|
public const string SystemFlagsAttr = "System.FlagsAttribute";
|
|
}
|
|
}
|