UNPKG

435 BMarkdownView Raw
1# Preludes
2
3For some languages, code info can be inferred from the first line after the
4code block. This is called a prelude.
5
6```
7/**
8 * Adds 2 numbers.
9 */
10
11function add(a, b) {
12 ...
13}
14```
15
16```
17tags: internal deprecated
18
19js:
20 types: function method class constant property
21
22 preludes:
23 FNNAME(args) {
24 function FNNAME(args) {
25 ___.FNNAME = function () {
26 ___.prototype.FNNAME = function () {
27```
28
29*(This document is a stub.)*