mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
21 lines
285 B
Cap'n Proto
21 lines
285 B
Cap'n Proto
@0xf07cdbe73cbefea0;
|
|
|
|
struct Charset {
|
|
charset @0 :Text;
|
|
words @1 :List(Pair);
|
|
bytes @2 :List(Pair);
|
|
|
|
struct Pair {
|
|
type :union {
|
|
word @0 :Text;
|
|
byte @1 :UInt8;
|
|
}
|
|
count @2 :UInt64;
|
|
}
|
|
}
|
|
|
|
struct Frequencies {
|
|
version @0 :UInt32 = 1;
|
|
charsets @1 :List(Charset);
|
|
}
|