mirror of https://github.com/OpenTTD/OpenTTD
(svn r23396) -Fix: squirrel export script did not ignore Doxygen blocks, causing funny results in some corner cases
parent
739c315243
commit
c3026bc601
|
@ -102,6 +102,20 @@ BEGIN {
|
||||||
gsub("^" tolower(api) "_", "script_", filename)
|
gsub("^" tolower(api) "_", "script_", filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Ignore special doxygen blocks
|
||||||
|
/^#ifndef DOXYGEN_API/ { doxygen_skip = "next"; next; }
|
||||||
|
/^#ifdef DOXYGEN_API/ { doxygen_skip = "true"; next; }
|
||||||
|
/^#endif \/\* DOXYGEN_API \*\// { doxygen_skip = "false"; next; }
|
||||||
|
/^#else/ {
|
||||||
|
if (doxygen_skip == "next") {
|
||||||
|
doxygen_skip = "true";
|
||||||
|
} else {
|
||||||
|
doxygen_skip = "false";
|
||||||
|
}
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
{ if (doxygen_skip == "true") next }
|
||||||
|
|
||||||
/^([ ]*)\* @api/ {
|
/^([ ]*)\* @api/ {
|
||||||
if (api == "Template") {
|
if (api == "Template") {
|
||||||
api_selected = "true"
|
api_selected = "true"
|
||||||
|
@ -169,20 +183,6 @@ BEGIN {
|
||||||
/^( *)protected/ { if (cls_level == 1) public = "false"; next; }
|
/^( *)protected/ { if (cls_level == 1) public = "false"; next; }
|
||||||
/^( *)private/ { if (cls_level == 1) public = "false"; next; }
|
/^( *)private/ { if (cls_level == 1) public = "false"; next; }
|
||||||
|
|
||||||
# Ignore special doxygen blocks
|
|
||||||
/^#ifndef DOXYGEN_API/ { doxygen_skip = "next"; next; }
|
|
||||||
/^#ifdef DOXYGEN_API/ { doxygen_skip = "true"; next; }
|
|
||||||
/^#endif \/\* DOXYGEN_API \*\// { doxygen_skip = "false"; next; }
|
|
||||||
/^#else/ {
|
|
||||||
if (doxygen_skip == "next") {
|
|
||||||
doxygen_skip = "true";
|
|
||||||
} else {
|
|
||||||
doxygen_skip = "false";
|
|
||||||
}
|
|
||||||
next;
|
|
||||||
}
|
|
||||||
{ if (doxygen_skip == "true") next }
|
|
||||||
|
|
||||||
# Ignore the comments
|
# Ignore the comments
|
||||||
/^#/ { next; }
|
/^#/ { next; }
|
||||||
/\/\*.*\*\// { comment = "false"; next; }
|
/\/\*.*\*\// { comment = "false"; next; }
|
||||||
|
|
Loading…
Reference in New Issue