fix wrong git ignore

This commit is contained in:
Adrian Zürcher
2025-12-15 17:44:00 +01:00
parent ed9f31bb96
commit 8f313c00f0
126 changed files with 70589 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
package cmap
type cmapObject interface {
}
type cmapName struct {
Name string
}
type cmapOperand struct {
Operand string
}
type cmapHexString struct {
numBytes int // original number of bytes in the raw representation
b []byte
}
type cmapString struct {
String string
}
type cmapArray struct {
Array []cmapObject
}
type cmapDict struct {
Dict map[string]cmapObject
}
type cmapFloat struct {
val float64
}
type cmapInt struct {
val int64
}
func makeDict() cmapDict {
d := cmapDict{}
d.Dict = map[string]cmapObject{}
return d
}