Commit 1dbc362
committed
feat: 完善代码填充相关内容更新;
1 parent 5de6143 commit 1dbc362
41 files changed
Lines changed: 2573 additions & 806 deletions
File tree
- 3rdparty
- as-debugger
- lang
- zh_CN
- zh_TW
- src
- class
- control
- dialog
- grammar/Snippet
- model
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Submodule WingCodeEdit updated 1 file
- .github/FUNDING.yml+17
- .github/workflows/ci.yml+37
- .github/workflows/tests.yml-18
- .idea/copilot.data.migration.agent.xml+6
- .idea/copilot.data.migration.ask.xml+6
- .idea/copilot.data.migration.ask2agent.xml+6
- .idea/copilot.data.migration.edit.xml+6
- CHANGELOG.md+15
- README.md+6-2
- docs/change_version.md+33
- icons/icons-theme.json+2-1
- package.json+16-4
- server/bnf.txt+5-4
- server/package-lock.json+2.8k-92
- server/package.json+33-22
- server/src/compiler_analyzer/analyzer.ts+120-51
- server/src/compiler_analyzer/constrcutorCall.ts+2-2
- server/src/compiler_analyzer/functionCall.ts+29-23
- server/src/compiler_analyzer/hoist.ts+189-55
- server/src/compiler_analyzer/operatorCall.ts+20-1
- server/src/compiler_analyzer/resolvedType.ts+30-4
- server/src/compiler_analyzer/symbolObject.ts+17-4
- server/src/compiler_analyzer/symbolScope.ts+76-19
- server/src/compiler_analyzer/symbolUtils.ts+37-14
- server/src/compiler_analyzer/typeCast.ts+17-11
- server/src/compiler_analyzer/typeConversion.ts+101-46
- server/src/compiler_analyzer/typeConversionSideEffect.ts+11-3
- server/src/compiler_parser/nodes.ts+21-8
- server/src/compiler_parser/parser.ts+113-20
- server/src/compiler_tokenizer/reservedWord.ts+1-1
- server/src/core/settings.ts+7-2
- server/src/formatter/formatter.ts+28-5
- server/src/inspector/analysisResolver.ts+18-3
- server/src/server.ts-3
- server/src/service/contentChangeApplier.ts+4-2
- server/src/service/fileUtils.ts+46-7
- server/src/services/completion.ts+6-2
- server/src/services/signatureHelp.ts+3-2
- server/test/compiler/analyzer/anyCast.spec.ts+21
- server/test/compiler/analyzer/funcdef.spec.ts+41
- server/test/compiler/analyzer/functionArguments.spec.ts+11
- server/test/compiler/analyzer/globalVariable.spec.ts+9
- server/test/compiler/analyzer/hoist.spec.ts+38
- server/test/compiler/analyzer/include.spec.ts+29
- server/test/compiler/analyzer/indexedPropertyAccessor.spec.ts+55
- server/test/compiler/analyzer/interface.spec.ts+36
- server/test/compiler/analyzer/mixinClass.spec.ts+51
- server/test/compiler/analyzer/multipleInheritance.spec.ts+45
- server/test/compiler/analyzer/usingNamespace.spec.ts+73
- server/test/services/completion/namespace.spec.ts+17
- server/test/services/completion/usingNamespace.spec.ts+40
- server/test/services/definition/classInheritance.spec.ts+11
- server/test/services/definition/constructor.spec.ts+13
- server/test/services/definition/funcdef.spec.ts+57
- server/tsconfig.json+18-14
- server/update_bnf.py+169-64
- snippets.json+7
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
30 | 46 | | |
31 | 47 | | |
32 | 48 | | |
| |||
119 | 135 | | |
120 | 136 | | |
121 | 137 | | |
122 | | - | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
123 | 150 | | |
124 | 151 | | |
125 | 152 | | |
| |||
353 | 380 | | |
354 | 381 | | |
355 | 382 | | |
356 | | - | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
357 | 386 | | |
358 | 387 | | |
359 | 388 | | |
| |||
666 | 695 | | |
667 | 696 | | |
668 | 697 | | |
669 | | - | |
| 698 | + | |
670 | 699 | | |
671 | 700 | | |
672 | 701 | | |
673 | 702 | | |
674 | 703 | | |
675 | | - | |
676 | 704 | | |
677 | 705 | | |
678 | 706 | | |
679 | 707 | | |
680 | 708 | | |
681 | 709 | | |
682 | 710 | | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
683 | 714 | | |
684 | 715 | | |
685 | 716 | | |
686 | | - | |
687 | | - | |
688 | | - | |
689 | | - | |
690 | | - | |
691 | | - | |
692 | | - | |
693 | | - | |
694 | | - | |
695 | | - | |
696 | | - | |
697 | 717 | | |
698 | 718 | | |
699 | 719 | | |
| |||
703 | 723 | | |
704 | 724 | | |
705 | 725 | | |
706 | | - | |
707 | | - | |
708 | | - | |
709 | | - | |
710 | | - | |
711 | | - | |
712 | | - | |
713 | | - | |
714 | | - | |
715 | | - | |
716 | | - | |
717 | | - | |
718 | | - | |
719 | | - | |
720 | | - | |
721 | | - | |
722 | | - | |
723 | | - | |
724 | | - | |
725 | | - | |
726 | | - | |
727 | | - | |
728 | | - | |
729 | | - | |
730 | | - | |
731 | | - | |
732 | | - | |
733 | | - | |
734 | | - | |
735 | | - | |
736 | | - | |
737 | | - | |
738 | | - | |
739 | | - | |
740 | | - | |
741 | | - | |
742 | | - | |
743 | | - | |
744 | | - | |
745 | | - | |
746 | | - | |
747 | | - | |
748 | | - | |
749 | | - | |
750 | | - | |
751 | | - | |
752 | | - | |
753 | | - | |
754 | | - | |
755 | | - | |
| 726 | + | |
| 727 | + | |
| 728 | + | |
| 729 | + | |
| 730 | + | |
| 731 | + | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | + | |
| 741 | + | |
| 742 | + | |
| 743 | + | |
756 | 744 | | |
757 | 745 | | |
758 | 746 | | |
759 | 747 | | |
760 | 748 | | |
761 | 749 | | |
762 | 750 | | |
| 751 | + | |
763 | 752 | | |
764 | 753 | | |
765 | 754 | | |
| |||
Submodule WingPlugin updated 1 file
0 commit comments