...

Text file src/github.com/alecthomas/chroma/v2/lexers/testdata/python/test_decorators.actual

Documentation: github.com/alecthomas/chroma/v2/lexers/testdata/python

     1@decorator1
     2def foo():
     3    print("foo")
     4
     5@decorator2.member
     6def bar():
     7    print("bar")
     8
     9@decorator3 . member(param=1)
    10def baz():
    11    print("baz")
    12
    13@decorator4 . member1 .member2 (param=1)
    14def bat():
    15    print("bat")

View as plain text