Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GDScript : mark xtag bit for implicitClass xtags #3717

Merged
merged 3 commits into from
May 12, 2023

Conversation

masatake
Copy link
Member

No description provided.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
The original isExtrasFieldAvailable() had a bug.
It verifies only (tag->extraDynamic != NULL) to detect
a tag has dynamic extras or not. With this logic,
isExtrasFieldAvailable() returns true even when all bits
in extraDynamic are 0. The condition should be

  (tag->extraDynamic != NULL) && anyBitIsSet (tag->extraDynamic)

.

isTagExtra() uses a condition.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
@masatake masatake added this to the 6.2 milestone May 12, 2023
@codecov
Copy link

codecov bot commented May 12, 2023

Codecov Report

Patch coverage: 94.73% and project coverage change: -0.02 ⚠️

Comparison is base (6b06565) 82.99% compared to head (af3b00d) 82.98%.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #3717      +/-   ##
==========================================
- Coverage   82.99%   82.98%   -0.02%     
==========================================
  Files         226      226              
  Lines       54972    54978       +6     
==========================================
- Hits        45626    45625       -1     
- Misses       9346     9353       +7     
Impacted Files Coverage Δ
parsers/gdscript.c 89.88% <94.44%> (+0.06%) ⬆️
main/field.c 92.70% <100.00%> (-0.04%) ⬇️

... and 1 file with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@masatake masatake changed the title Gdscript : mark xtag bit for implicitClass xtags GDScript : mark xtag bit for implicitClass xtags May 12, 2023
@masatake masatake modified the milestones: 6.2, 6.1 May 12, 2023
@masatake masatake merged commit cc36e4f into universal-ctags:master May 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant