2023-02-08 04:27:55 +08:00
|
|
|
"""
|
2023-02-08 20:30:05 +08:00
|
|
|
File: extract_code_jsts.py
|
2023-02-08 04:27:55 +08:00
|
|
|
Created Time: 2023-02-07
|
|
|
|
Author: Krahets (krahets@163.com)
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
import glob
|
|
|
|
import sys, os.path as osp
|
|
|
|
sys.path.append(osp.dirname(osp.dirname(osp.dirname(osp.abspath(__file__)))))
|
|
|
|
from docs.utils.extract_code_java import ExtractCodeBlocksJava
|
|
|
|
|
|
|
|
|
|
|
|
class ExtractCodeBlocksJSTS(ExtractCodeBlocksJava):
|
|
|
|
def __init__(self) -> None:
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
# Pattern to match function names and class names
|
2023-02-08 19:45:06 +08:00
|
|
|
self.func_pattern = r'(\s*)(function|private|public|)\s*(\S*)\(.*\)(:|)\s*(.*)\s+{\s*\n'
|
2023-02-08 20:30:05 +08:00
|
|
|
self.class_pattern = r'(public|)\s*class\s+(\w+)\s*\{'
|
2023-02-08 04:27:55 +08:00
|
|
|
|
2023-02-08 19:45:06 +08:00
|
|
|
self.func_pattern_keys = ["total", "ind", "prefix", "label", ":", "return"]
|
2023-02-08 20:30:05 +08:00
|
|
|
self.class_pattern_keys = ["total", "scope", "label"]
|