Skip to content

Commit

Permalink
Refactor parser compilation units into specific components (GH-29676)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogsal committed Nov 21, 2021
1 parent f7638dd commit c9c4444
Show file tree
Hide file tree
Showing 10 changed files with 1,909 additions and 1,869 deletions.
2 changes: 2 additions & 0 deletions Makefile.pre.in
Expand Up @@ -331,6 +331,8 @@ LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@

PEGEN_OBJS= \
Parser/pegen.o \
Parser/pegen_errors.o \
Parser/action_helpers.o \
Parser/parser.o \
Parser/string_parser.o \
Parser/peg_api.o
Expand Down
2 changes: 2 additions & 0 deletions PCbuild/_freeze_module.vcxproj
Expand Up @@ -163,6 +163,8 @@
<ClCompile Include="..\Parser\parser.c" />
<ClCompile Include="..\Parser\peg_api.c" />
<ClCompile Include="..\Parser\pegen.c" />
<ClCompile Include="..\Parser\pegen_errors.c" />
<ClCompile Include="..\Parser\action_helpers.c" />
<ClCompile Include="..\Parser\string_parser.c" />
<ClCompile Include="..\Parser\token.c" />
<ClCompile Include="..\Parser\tokenizer.c" />
Expand Down
2 changes: 2 additions & 0 deletions PCbuild/pythoncore.vcxproj
Expand Up @@ -433,6 +433,8 @@
<ClCompile Include="..\Parser\tokenizer.c" />
<ClCompile Include="..\Parser\token.c" />
<ClCompile Include="..\Parser\pegen.c" />
<ClCompile Include="..\Parser\pegen_errors.c" />
<ClCompile Include="..\Parser\action_helpers.c" />
<ClCompile Include="..\Parser\parser.c" />
<ClCompile Include="..\Parser\string_parser.c" />
<ClCompile Include="..\Parser\peg_api.c" />
Expand Down
6 changes: 6 additions & 0 deletions PCbuild/pythoncore.vcxproj.filters
Expand Up @@ -1205,6 +1205,12 @@
<ClCompile Include="..\Parser\pegen.c">
<Filter>Parser</Filter>
</ClCompile>
<ClCompile Include="..\Parser\pegen_errors.c">
<Filter>Parser</Filter>
</ClCompile>
<ClCompile Include="..\Parser\action_helpers.c">
<Filter>Parser</Filter>
</ClCompile>
<ClCompile Include="..\Parser\peg_api.c">
<Filter>Parser</Filter>
</ClCompile>
Expand Down

0 comments on commit c9c4444

Please sign in to comment.