MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / decodeFunction

Function decodeFunction

scintilla/include/Face.py:10–16  ·  view source on GitHub ↗
(featureVal)

Source from the content-addressed store, hash-verified

8 return line
9
10def decodeFunction(featureVal):
11 retType, rest = featureVal.split(" ", 1)
12 nameIdent, params = rest.split("(")
13 name, value = nameIdent.split("=")
14 params, rest = params.split(")")
15 param1, param2 = params.split(",")
16 return retType, name, value, param1, param2
17
18def decodeEvent(featureVal):
19 retType, rest = featureVal.split(" ", 1)

Callers 1

ReadFromFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected