mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
fix: overload resolution bug
This commit is contained in:
parent
66352ddd3a
commit
21d5f22ca8
5 changed files with 30 additions and 1 deletions
|
@ -6,9 +6,12 @@ legend = pyimport "../legend"
|
|||
.style = pyimport "../style"
|
||||
figure = pyimport "../figure"
|
||||
axes = pyimport "../axes"
|
||||
image = pyimport "../image"
|
||||
|
||||
.plot!: (*args: Obj, scaleX := Bool, scaleY := Bool) => [Obj; _]
|
||||
.imshow!: (X: Obj, cmap := Str, interpolation := Str) => image.AxesImage!
|
||||
.show!: () => NoneType
|
||||
.text!: (x: Float, y: Float, s: Str, fontdict := {Str: Obj}, fontsize := Nat) => text.Text
|
||||
.title!: (title: Str) => text.Text
|
||||
.xlabel!: (label: Str) => text.Text
|
||||
.ylabel!: (label: Str) => text.Text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue