Kaydet (Commit) f0c92858 authored tarafından Nick Treleaven's avatar Nick Treleaven

Show Haxe enum types in the symbol list.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1886 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 67c2afa9
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
Apply code from blackdog to parse Haxe typedef tags (thanks). Apply code from blackdog to parse Haxe typedef tags (thanks).
Show Haxe typedefs in the symbol list. Show Haxe typedefs in the symbol list.
Add tag_type treeview iter. Add tag_type treeview iter.
* tagmanager/haxe.c:
Show Haxe enum types in the symbol list.
2007-09-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> 2007-09-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
...@@ -47,13 +47,12 @@ typedef enum { ...@@ -47,13 +47,12 @@ typedef enum {
} hxKind; } hxKind;
static kindOption HxKinds [] = { static kindOption HxKinds [] = {
{ TRUE, 'm', "method", "methods" }, { TRUE, 'm', "method", "methods" },
{ TRUE, 'c', "class", "classes" }, { TRUE, 'c', "class", "classes" },
{ TRUE, 'e', "enums", "enumerations" }, { TRUE, 'e', "enum", "enumerations" },
{ TRUE, 'v', "variable", "variables" }, { TRUE, 'v', "variable", "variables" },
{ TRUE, 'i', "interface", "interfaces" }, { TRUE, 'i', "interface", "interfaces" },
{ TRUE, 't', "typedef", "typedefs" }, { TRUE, 't', "typedef", "typedefs" },
}; };
static void findHxTags (void) static void findHxTags (void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment