scrall 0.9.0__py3-none-any.whl → 0.9.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of scrall might be problematic. Click here for more details.
- scrall/__init__.py +1 -1
- scrall/parse/scrall.peg +1 -1
- scrall/parse/visitor.py +5 -8
- {scrall-0.9.0.dist-info → scrall-0.9.2.dist-info}/METADATA +1 -1
- scrall-0.9.2.dist-info/RECORD +14 -0
- scrall-0.9.0.dist-info/RECORD +0 -14
- {scrall-0.9.0.dist-info → scrall-0.9.2.dist-info}/WHEEL +0 -0
- {scrall-0.9.0.dist-info → scrall-0.9.2.dist-info}/entry_points.txt +0 -0
- {scrall-0.9.0.dist-info → scrall-0.9.2.dist-info}/licenses/LICENSE +0 -0
- {scrall-0.9.0.dist-info → scrall-0.9.2.dist-info}/top_level.txt +0 -0
scrall/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "0.9.
|
|
1
|
+
version = "0.9.2"
|
scrall/parse/scrall.peg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
activity = LINEWRAP* execution_unit* EOF
|
|
2
|
-
execution_unit = LINEWRAP* statement_set sequence_token? LINEWRAP
|
|
2
|
+
execution_unit = LINEWRAP* statement_set sequence_token? (SP+ / LINEWRAP*)
|
|
3
3
|
statement_set = SP* sequenced_statement_set / component_statement_set
|
|
4
4
|
sequenced_statement_set = sequence_token* (block / statement)
|
|
5
5
|
component_statement_set = block / LINEWRAP* statement
|
scrall/parse/visitor.py
CHANGED
|
@@ -635,14 +635,6 @@ class ScrallVisitor(PTNodeVisitor):
|
|
|
635
635
|
_logger.info(f" > {result}")
|
|
636
636
|
return result
|
|
637
637
|
|
|
638
|
-
# # Asynch service
|
|
639
|
-
# @classmethod
|
|
640
|
-
# def visit_asynch_service(cls, node, children):
|
|
641
|
-
# """
|
|
642
|
-
# name '.' signal_spec ASYNCH ee
|
|
643
|
-
# """
|
|
644
|
-
# result = Asynch_a(*children)
|
|
645
|
-
|
|
646
638
|
@classmethod
|
|
647
639
|
def visit_signal_action(cls, node, children):
|
|
648
640
|
"""
|
|
@@ -847,6 +839,11 @@ class ScrallVisitor(PTNodeVisitor):
|
|
|
847
839
|
_logger.info(f" > {result}")
|
|
848
840
|
return result
|
|
849
841
|
|
|
842
|
+
@classmethod
|
|
843
|
+
def visit_owner(cls, node, children):
|
|
844
|
+
result = ''.join(children)
|
|
845
|
+
return result
|
|
846
|
+
|
|
850
847
|
@classmethod
|
|
851
848
|
def visit_supplied_params(cls, node, children):
|
|
852
849
|
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
scrall/__init__.py,sha256=9Qn_RtrOPSgPmNhBg0KYV_mCmVK3b_ALyJjjkFpcyFs,17
|
|
2
|
+
scrall/__main__.py,sha256=H5szTQUuBTrnCngyUv3EFj5eQyPY4j0NKf1q8DgK6E8,2187
|
|
3
|
+
scrall/exceptions.py,sha256=QU4mKLs7_ddGIznhh2HUpjb_PdPlxWZMMY_g0ELenSs,1764
|
|
4
|
+
scrall/log.conf,sha256=tERYKbCp9TgdAVTby6A7gUpnjurJKcX1tyAzG3ATORI,933
|
|
5
|
+
scrall/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
scrall/parse/parser.py,sha256=k4SeWMtNzAUtwU_e15frvSL1D5G3RBU_jmLegZbIBnY,5221
|
|
7
|
+
scrall/parse/scrall.peg,sha256=pFfexd7eqb0AgGXYVUGU0XCVZBQ4_e5qjsjAwXiaqP0,7848
|
|
8
|
+
scrall/parse/visitor.py,sha256=BtK3I8tWRuUDTZydeTHnCzw7kdsOCEFDW6Nji5XYcM4,57345
|
|
9
|
+
scrall-0.9.2.dist-info/licenses/LICENSE,sha256=kL0xVrwl2i3Pk9mQXAVAPANCTaLGGOsoXgvqW7TBs20,1072
|
|
10
|
+
scrall-0.9.2.dist-info/METADATA,sha256=ozR2m0Qv0iRRYM7Vyshdv4auIm-zEf1Qrha0Si1xOEg,7208
|
|
11
|
+
scrall-0.9.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
+
scrall-0.9.2.dist-info/entry_points.txt,sha256=2fHG6VXtqSTEZXadsBe7XCFaLm4t3V1pFuqzgWWjBgA,48
|
|
13
|
+
scrall-0.9.2.dist-info/top_level.txt,sha256=SWvpMyNNJlrMWpSsK5RUL40ivQxQpKPbL86VrvNIUAE,7
|
|
14
|
+
scrall-0.9.2.dist-info/RECORD,,
|
scrall-0.9.0.dist-info/RECORD
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
scrall/__init__.py,sha256=7ni7W7n5UEJnErcvudsBga_b_MSjSl1fksPZ58_N4Xk,17
|
|
2
|
-
scrall/__main__.py,sha256=H5szTQUuBTrnCngyUv3EFj5eQyPY4j0NKf1q8DgK6E8,2187
|
|
3
|
-
scrall/exceptions.py,sha256=QU4mKLs7_ddGIznhh2HUpjb_PdPlxWZMMY_g0ELenSs,1764
|
|
4
|
-
scrall/log.conf,sha256=tERYKbCp9TgdAVTby6A7gUpnjurJKcX1tyAzG3ATORI,933
|
|
5
|
-
scrall/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
scrall/parse/parser.py,sha256=k4SeWMtNzAUtwU_e15frvSL1D5G3RBU_jmLegZbIBnY,5221
|
|
7
|
-
scrall/parse/scrall.peg,sha256=uh222Q45owKypYLaX4pCwQjh-pYnkiUAJ3UfsipGw4A,7840
|
|
8
|
-
scrall/parse/visitor.py,sha256=r0Gl8TCcVlRYVqJi26hJYFkAhtQ4TuESP4sr7AQ0lTM,57432
|
|
9
|
-
scrall-0.9.0.dist-info/licenses/LICENSE,sha256=kL0xVrwl2i3Pk9mQXAVAPANCTaLGGOsoXgvqW7TBs20,1072
|
|
10
|
-
scrall-0.9.0.dist-info/METADATA,sha256=5h7itXy8FWAgcOPg7SIRaZftnaxEwu_AFEzbuZB8Jvc,7208
|
|
11
|
-
scrall-0.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
-
scrall-0.9.0.dist-info/entry_points.txt,sha256=2fHG6VXtqSTEZXadsBe7XCFaLm4t3V1pFuqzgWWjBgA,48
|
|
13
|
-
scrall-0.9.0.dist-info/top_level.txt,sha256=SWvpMyNNJlrMWpSsK5RUL40ivQxQpKPbL86VrvNIUAE,7
|
|
14
|
-
scrall-0.9.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|