MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / LanguageParams

Class LanguageParams

code2flow/engine.py:51–57  ·  view source on GitHub ↗

Shallow structure to make storing language-specific parameters cleaner

Source from the content-addressed store, hash-verified

49
50
51class LanguageParams():
52 """
53 Shallow structure to make storing language-specific parameters cleaner
54 """
55 def __init__(self, source_type='script', ruby_version='27'):
56 self.source_type = source_type
57 self.ruby_version = ruby_version
58
59
60class SubsetParams():

Callers 3

test_allFunction · 0.90
code2flowFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_allFunction · 0.72