Skip to content

[22972] Support sequences in IDL Parser #5763

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

Merged
merged 6 commits into from
Apr 23, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ struct string_type : seq<kw_string, opt<string_size>> {};
struct wide_string_type : seq<kw_wstring, opt<wstring_size>> {};
struct map_type;
struct type_spec;
struct sequence_size : opt<collection_size> {};
struct sequence_type : seq<kw_sequence, open_ang_bracket, type_spec, sequence_size, close_ang_bracket> {};
struct sequence_size : collection_size {};
struct sequence_type : seq<kw_sequence, open_ang_bracket, type_spec, opt<sequence_size>, close_ang_bracket> {};
struct template_type_spec : sor<map_type, sequence_type, string_type, wide_string_type, fixed_pt_type> {};
struct simple_type_spec : sor<base_type_spec, scoped_name> {};
struct type_spec : seq<opt<ws>, sor<template_type_spec, simple_type_spec>, opt<ws>> {};
Expand Down
Loading
Loading