mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 01:06:28 +08:00
6dc21691ed
unify the coding style.
23 lines
772 B
Python
23 lines
772 B
Python
"""
|
|
File: extract_code_jsts.py
|
|
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
|
|
self.func_pattern = r'(\s*)(function|private|public|)\s*(\S*)\(.*\)(:|)\s*(.*)\s+{\s*\n'
|
|
self.class_pattern = r'(public|)\s*class\s+(\w+)\s*\{'
|
|
|
|
self.func_pattern_keys = ["total", "ind", "prefix", "label", ":", "return"]
|
|
self.class_pattern_keys = ["total", "scope", "label"]
|