File tree Expand file tree Collapse file tree 1 file changed +16
-13
lines changed Expand file tree Collapse file tree 1 file changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -120,19 +120,22 @@ show_handle(object) = false
120
120
function simple_repr (T)
121
121
repr = string (T. name. name)
122
122
parameters = T. parameters
123
- p_string = " "
124
- if length (parameters) > 0
125
- p = parameters[1 ]
126
- if p isa DataType
127
- p_string = simple_repr (p)
128
- elseif p isa Symbol
129
- p_string = string (" :" , p)
130
- end
131
- if length (parameters) > 1
132
- p_string *= " ,…"
133
- end
134
- end
135
- isempty (p_string) || (repr *= " {" * p_string* " }" )
123
+
124
+ # # add abbreviated type parameters:
125
+ # p_string = ""
126
+ # if length(parameters) > 0
127
+ # p = parameters[1]
128
+ # if p isa DataType
129
+ # p_string = simple_repr(p)
130
+ # elseif p isa Symbol
131
+ # p_string = string(":", p)
132
+ # end
133
+ # if length(parameters) > 1
134
+ # p_string *= ",…"
135
+ # end
136
+ # end
137
+ # isempty(p_string) || (repr *= "{"*p_string*"}")
138
+
136
139
return repr
137
140
end
138
141
You can’t perform that action at this time.
0 commit comments