8000 Refactor parser compilation units into specific components (GH-29676) · python/cpython@c9c4444 · GitHub
[go: up one dir, main page]

Skip to content

Commit c9c4444

Browse files
authored
Refactor parser compilation units into specific components (GH-29676)
1 parent f7638dd commit c9c4444

File tree

10 files changed

+1909
-1869
lines changed

10 files changed

+1909
-1869
lines changed

Makefile.pre.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,8 @@ LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
331331

332332
PEGEN_OBJS= \
333333
Parser/pegen.o \
334+
Parser/pegen_errors.o \
335+
Parser/action_helpers.o \
334336
Parser/parser.o \
335337
Parser/string_parser.o \
336338
Parser/peg_api.o

PCbuild/_freeze_module.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@
163163
<ClCompile Include="..\Parser\parser.c" />
164164
<ClCompile Include="..\Parser\peg_api.c" />
165165
<ClCompile Include="..\Parser\pegen.c" />
166+
<ClCompile Include="..\Parser\pegen_errors.c" />
167+
<ClCompile Include="..\Parser\action_helpers.c" />
166168
<ClCompile Include="..\Parser\string_parser.c" />
167169
<ClCompile Include="..\Parser\token.c" />
168170
<ClCompile Include="..\Parser\tokenizer.c" />

PCbuild/pythoncore.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,8 @@
433433
<ClCompile Include="..\Parser\tokenizer.c" />
434434
<ClCompile Include="..\Parser\token.c" />
435435
<ClCompile Include="..\Parser\pegen.c" />
436+
<ClCompile Include="..\Parser\pegen_errors.c" />
437+
<ClCompile Include="..\Parser\action_helpers.c" />
436438
<ClCompile Include="..\Parser\parser.c" />
437439
<ClCompile Include="..\Parser\string_parser.c" />
438440
<ClCompile Include="..\Parser\peg_api.c" />

PCbuild/pythoncore.vcxproj.filters

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,6 +1205,12 @@
12051205
<ClCompile Include="..\Parser\pegen.c">
12061206
<Filter>Parser</Filter>
12071207
</ClCompile>
1208+
<ClCompile Include="..\Parser\pegen_errors.c">
1209+
<Filter>Parser</Filter>
1210+
</ClCompile>
1211+
<ClCompile Include="..\Parser\action_helpers.c">
1212+
<Filter>Parser</Filter>
1213+
</ClCompile>
12081214
<ClCompile Include="..\Parser\peg_api.c">
12091215
<Filter>Parser</Filter>
12101216
</ClCompile>

0 commit comments

Comments
 (0)
0