main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 16 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
509 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var map = require('../common/map.js');
|
---|
4 | var _null = require('../common/null.js');
|
---|
5 | var seq = require('../common/seq.js');
|
---|
6 | var string = require('../common/string.js');
|
---|
7 | var bool = require('./bool.js');
|
---|
8 | var float = require('./float.js');
|
---|
9 | var int = require('./int.js');
|
---|
10 |
|
---|
11 | const schema = [
|
---|
12 | map.map,
|
---|
13 | seq.seq,
|
---|
14 | string.string,
|
---|
15 | _null.nullTag,
|
---|
16 | bool.boolTag,
|
---|
17 | int.intOct,
|
---|
18 | int.int,
|
---|
19 | int.intHex,
|
---|
20 | float.floatNaN,
|
---|
21 | float.floatExp,
|
---|
22 | float.float
|
---|
23 | ];
|
---|
24 |
|
---|
25 | exports.schema = schema;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.