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

Add variadic support for templates #324

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

aaronj0
Copy link
Collaborator

@aaronj0 aaronj0 commented Sep 19, 2024

No description provided.

@aaronj0 aaronj0 requested a review from vgvassilev September 19, 2024 11:19
@aaronj0 aaronj0 marked this pull request as draft September 19, 2024 11:19
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

Copy link

codecov bot commented Sep 19, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 75.94%. Comparing base (27847e4) to head (6155f34).
Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #324   +/-   ##
=======================================
  Coverage   75.94%   75.94%           
=======================================
  Files           9        9           
  Lines        3646     3646           
=======================================
  Hits         2769     2769           
  Misses        877      877           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

Copy link
Contributor

@vgvassilev vgvassilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't seem to have tests for the new code.

@aaronj0
Copy link
Collaborator Author

aaronj0 commented Sep 20, 2024

We don't seem to have tests for the new code.

There is an added unittest... It is still a draft though, will update with a case for TemplateArgument::ArgKind::Pack which are the 2 lines missing coverage

@aaronj0 aaronj0 marked this pull request as ready for review December 4, 2024 08:52
Copy link
Contributor

github-actions bot commented Dec 4, 2024

clang-tidy review says "All clean, LGTM! 👍"

TEST(FunctionReflectionTest, InstantiateVariadicFunctionTemplate) {
std::vector<Decl*> Decls;
std::string code = R"(
template<typename... Args> void VariadicFnTemplate(Args... args) {}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we include the example of #305?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The current test mimics the same variadic template, I am extending it to initialize using a template pack which should cover the other branch for codecov

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still worth adding the test from the issue and adding code to support it.

Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

Copy link
Contributor

This PR is stale because it has been open for 90 days with no activity.

@github-actions github-actions bot added the stale label Mar 21, 2025
@aaronj0 aaronj0 removed the stale label Mar 21, 2025
@aaronj0 aaronj0 force-pushed the variadic-support branch from ad55091 to 6155f34 Compare April 3, 2025 15:00
@mcbarton
Copy link
Collaborator

mcbarton commented Apr 3, 2025

@aaronj0 to get past the undefined symbols error with the Emscripten jobs, add the symbols in this file https://github.com/aaronj0/CppInterOp/blob/variadic-support/lib/Interpreter/exports.ld , following the pattern already in the file. Eventually we will work out why these symbols are not being exported, fix it, and remove the file, but for now this is what we are doing when a new llvm or clang symbols is not being exported.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants