Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion compiler/fory_compiler/frontend/fdl/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import warnings
from typing import List, Set, Optional, Tuple
from fory_compiler.ir.validator import ValidationRule

from fory_compiler.ir.ast import (
Schema,
Expand Down Expand Up @@ -77,7 +78,7 @@
"thread_safe_pointer",
"weak_ref",
"java_array",
}
} | {rule.value for rule in ValidationRule}

KNOWN_REF_OPTIONS: Set[str] = {
"weak",
Expand Down
Loading
Loading