Skip to content

Commit 0e23dac

Browse files
committed
fix: default visibility of the property should be public
1 parent 71bb27a commit 0e23dac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/emmylua_code_analysis/src/db_index/property

crates/emmylua_code_analysis/src/db_index/property/property.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ impl Default for LuaCommonProperty {
2828
impl LuaCommonProperty {
2929
pub fn new() -> Self {
3030
Self {
31-
visibility: VisibilityKind::Internal,
31+
visibility: VisibilityKind::Public,
3232
description: None,
3333
source: None,
3434
deprecated: None,

0 commit comments

Comments
 (0)