File: lookup.fea

package info (click to toggle)
fonttools 4.61.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,588 kB
  • sloc: python: 145,091; xml: 103; makefile: 24
file content (24 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Three features. In the output, they should all point to the same lookup.

lookup SomeLookup {
    sub f f i by f_f_i;
    sub f i by f_i;
} SomeLookup;

feature tst1 {
    lookup SomeLookup;
} tst1;

feature tst2 {
    lookup SomeLookup;
} tst2;

feature tst3 {
    lookup EmbeddedLookup {
        sub A by A.sc;
    } EmbeddedLookup;
} tst3;

feature tst4 {
    lookup EmbeddedLookup;
} tst4;