| 211 | } |
| 212 | |
| 213 | type baseObject struct { |
| 214 | class string |
| 215 | val *Object |
| 216 | prototype *Object |
| 217 | extensible bool |
| 218 | |
| 219 | values map[unistring.String]Value |
| 220 | propNames []unistring.String |
| 221 | |
| 222 | lastSortedPropLen, idxPropCount int |
| 223 | |
| 224 | symValues *orderedMap |
| 225 | |
| 226 | privateElements map[*privateEnvType]*privateElements |
| 227 | } |
| 228 | |
| 229 | type guardedObject struct { |
| 230 | baseObject |
nothing calls this directly
no outgoing calls
no test coverage detected