46 lines
1.9 KiB
Plaintext
46 lines
1.9 KiB
Plaintext
include _util-fns
|
|
// From ts/glossary.jade, the folder ts/latest/_fragments is generated which contains a bunch of partial files.
|
|
// These partials comprise the glossary,a subset of these partials should be used to generate the glossary for
|
|
// __dart__ under BASICS.
|
|
!=partial('../../ts/latest/_fragments/glossary-intro')
|
|
!=partial('../../ts/latest/_fragments/glossary-a-2')
|
|
!=partial('../../ts/latest/_fragments/glossary-b-c')
|
|
!=partial('../../ts/latest/_fragments/glossary-d1')
|
|
!=partial('../../ts/latest/_fragments/glossary-d2')
|
|
!=partial('../../ts/latest/_fragments/glossary-e1')
|
|
!=partial('../../ts/latest/_fragments/glossary-e2')
|
|
!=partial('../../ts/latest/_fragments/glossary-f-l')
|
|
!=partial('../../ts/latest/_fragments/glossary-m1')
|
|
//!=partial('../../ts/latest/_fragments/glossary-m2') not needed in dart
|
|
!=partial('../../ts/latest/_fragments/glossary-n-s-1')
|
|
|
|
:marked
|
|
## snake_case
|
|
.l-sub-section
|
|
:marked
|
|
The practice of writing compound words or phrases such that each word is separated by an underscore (`_`).
|
|
|
|
Library and file names are often spelled in snake_case. Examples include: `angular2_tour_of_heroes` and `app_component.dart`.
|
|
|
|
This form is also known as **underscore case**.
|
|
|
|
!=partial('../../ts/latest/_fragments/glossary-n-s-2')
|
|
!=partial('../../ts/latest/_fragments/glossary-t1')
|
|
//!=partial('../../ts/latest/_fragments/glossary-t2') notneeded in dart
|
|
!=partial('../../ts/latest/_fragments/glossary-u-z')
|
|
|
|
// NOTE: (ericjim): I am almost certain these lines are doing nothing,
|
|
// so instead I use `!=partial` to include the glossary fragments.
|
|
//+includeShared('{ts}', 'intro')
|
|
//+includeShared('{ts}', 'a2')
|
|
//+includeShared('{ts}', 'b-c')
|
|
//+includeShared('{ts}', 'd1')
|
|
//+includeShared('{ts}', 'd2')
|
|
//+includeShared('{ts}', 'e1')
|
|
//+includeShared('{ts}', 'e2')
|
|
//+includeShared('{ts}', 'f-l')
|
|
//+includeShared('{ts}', 'm1')
|
|
//+includeShared('{ts}', 'n-s')
|
|
//+includeShared('{ts}', 't1')
|
|
//+includeShared('{ts}', 'u-z')
|