We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3faf08 + f380cf6 commit 6b5433fCopy full SHA for 6b5433f
language/go/lib/CallableExpr.gdl
@@ -4,7 +4,7 @@ schema CallableExpr extends Expr {
4
impl CallableExpr {
5
@data_constraint
6
@inline
7
- fn __all__(db: GoDB) -> *CallableExpr {
+ pub fn __all__(db: GoDB) -> *CallableExpr {
8
for (e in Expr(db)) {
9
if (e.isCallorconversionExpr()) {
10
yield CallableExpr {
language/go/lib/Comment.gdl
@@ -4,7 +4,7 @@ schema Comment extends Node {
impl Comment {
- fn __all__(db: GoDB) -> *Comment {
+ pub fn __all__(db: GoDB) -> *Comment {
for (tmp in Node(db)) {
for (c in CommentDO(db)) {
if (tmp.key_eq(c)) {
@@ -22,7 +22,7 @@ schema CommentGroup extends Node {
22
impl CommentGroup {
23
24
25
- fn __all__(db: GoDB) -> *CommentGroup {
+ pub fn __all__(db: GoDB) -> *CommentGroup {
26
27
for (c in CommentGroupDO(db)) {
28
@@ -40,7 +40,7 @@ schema DocComment extends Node {
40
impl DocComment {
41
42
43
- fn __all__(db: GoDB) -> *DocComment {
+ pub fn __all__(db: GoDB) -> *DocComment {
44
45
for (d in DocCommentDO(db)) {
46
if (tmp.key_eq(d)) {
language/go/lib/Declaration.gdl
@@ -4,7 +4,7 @@ schema Decl extends Node {
impl Decl {
- fn __all__(db: GoDB) -> *Decl {
+ pub fn __all__(db: GoDB) -> *Decl {
for (d in DeclDO(db)) {
@@ -107,7 +107,7 @@ schema ConstDecl extends Decl {
107
impl ConstDecl {
108
109
110
- fn __all__(db: GoDB) -> *ConstDecl {
+ pub fn __all__(db: GoDB) -> *ConstDecl {
111
for (tmp in Decl(db)) {
112
113
@@ -127,7 +127,7 @@ schema VarDecl extends Decl {
127
impl VarDecl {
128
129
130
- fn __all__(db: GoDB) -> *VarDecl {
+ pub fn __all__(db: GoDB) -> *VarDecl {
131
132
133
language/go/lib/Expression.gdl
@@ -4,7 +4,7 @@ schema Expr extends Node {
impl Expr {
- fn __all__(db: GoDB) -> *Expr {
+ pub fn __all__(db: GoDB) -> *Expr {
for (e in ExprDO(db)) {
yield Expr {
id : e.oid
language/go/lib/Fields.gdl
@@ -4,7 +4,7 @@ schema Fields extends Node {
impl Fields {
- fn __all__(db: GoDB) -> *Fields {
+ pub fn __all__(db: GoDB) -> *Fields {
for (f in FieldsDO(db)) {
yield Fields {
id : f.oid
language/go/lib/File.gdl
@@ -4,7 +4,7 @@ schema File extends Node {
impl File {
- fn __all__(db: GoDB) -> *File {
+ pub fn __all__(db: GoDB) -> *File {
for (f in FileDO(db)) {
yield File {
@@ -112,7 +112,7 @@ schema GoFile extends File {
impl GoFile {
114
115
- fn __all__(db: GoDB) -> *GoFile {
+ pub fn __all__(db: GoDB) -> *GoFile {
116
for (f in File(db)) {
117
if (f.isGoFile()) {
118
yield GoFile {
language/go/lib/FileData.gdl
@@ -4,7 +4,7 @@ schema FileData extends FileDataDO {
impl FileData {
- fn __all__(db: GoDB) -> *FileData {
+ pub fn __all__(db: GoDB) -> *FileData {
for (tmp in FileDataDO(db)) {
yield FileData {
oid : tmp.oid,
language/go/lib/ForStmt.gdl
@@ -4,7 +4,7 @@ schema ForStmt extends Statement {
impl ForStmt {
- fn __all__(db: GoDB) -> *ForStmt {
+ pub fn __all__(db: GoDB) -> *ForStmt {
for (tmp in Statement(db)) {
for (s in Statement(db)) {
if (tmp = s) {
language/go/lib/Function.gdl
@@ -4,7 +4,7 @@ schema Function extends Node {
impl Function {
- fn __all__(db: GoDB) -> *Function {
+ pub fn __all__(db: GoDB) -> *Function {
for (d in Decl(db)) {
if (d.key_eq(tmp)) {
language/go/lib/Location.gdl
@@ -4,7 +4,7 @@ schema Location extends LocationDO {
impl Location {
- fn __all__(db: GoDB) -> *Location {
+ pub fn __all__(db: GoDB) -> *Location {
for (tmp in LocationDO(db)) {
yield Location {
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments