1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
|
# ast
--
import "github.com/robertkrimen/otto/ast"
Package ast declares types representing a JavaScript AST.
### Warning
The parser and AST interfaces are still works-in-progress (particularly where
node types are concerned) and may change in the future.
## Usage
#### type ArrayLiteral
```go
type ArrayLiteral struct {
LeftBracket file.Idx
RightBracket file.Idx
Value []Expression
}
```
#### func (*ArrayLiteral) Idx0
```go
func (self *ArrayLiteral) Idx0() file.Idx
```
#### func (*ArrayLiteral) Idx1
```go
func (self *ArrayLiteral) Idx1() file.Idx
```
#### type AssignExpression
```go
type AssignExpression struct {
Operator token.Token
Left Expression
Right Expression
}
```
#### func (*AssignExpression) Idx0
```go
func (self *AssignExpression) Idx0() file.Idx
```
#### func (*AssignExpression) Idx1
```go
func (self *AssignExpression) Idx1() file.Idx
```
#### type BadExpression
```go
type BadExpression struct {
From file.Idx
To file.Idx
}
```
#### func (*BadExpression) Idx0
```go
func (self *BadExpression) Idx0() file.Idx
```
#### func (*BadExpression) Idx1
```go
func (self *BadExpression) Idx1() file.Idx
```
#### type BadStatement
```go
type BadStatement struct {
From file.Idx
To file.Idx
}
```
#### func (*BadStatement) Idx0
```go
func (self *BadStatement) Idx0() file.Idx
```
#### func (*BadStatement) Idx1
```go
func (self *BadStatement) Idx1() file.Idx
```
#### type BinaryExpression
```go
type BinaryExpression struct {
Operator token.Token
Left Expression
Right Expression
Comparison bool
}
```
#### func (*BinaryExpression) Idx0
```go
func (self *BinaryExpression) Idx0() file.Idx
```
#### func (*BinaryExpression) Idx1
```go
func (self *BinaryExpression) Idx1() file.Idx
```
#### type BlockStatement
```go
type BlockStatement struct {
LeftBrace file.Idx
List []Statement
RightBrace file.Idx
}
```
#### func (*BlockStatement) Idx0
```go
func (self *BlockStatement) Idx0() file.Idx
```
#### func (*BlockStatement) Idx1
```go
func (self *BlockStatement) Idx1() file.Idx
```
#### type BooleanLiteral
```go
type BooleanLiteral struct {
Idx file.Idx
Literal string
Value bool
}
```
#### func (*BooleanLiteral) Idx0
```go
func (self *BooleanLiteral) Idx0() file.Idx
```
#### func (*BooleanLiteral) Idx1
```go
func (self *BooleanLiteral) Idx1() file.Idx
```
#### type BracketExpression
```go
type BracketExpression struct {
Left Expression
Member Expression
LeftBracket file.Idx
RightBracket file.Idx
}
```
#### func (*BracketExpression) Idx0
```go
func (self *BracketExpression) Idx0() file.Idx
```
#### func (*BracketExpression) Idx1
```go
func (self *BracketExpression) Idx1() file.Idx
```
#### type BranchStatement
```go
type BranchStatement struct {
Idx file.Idx
Token token.Token
Label *Identifier
}
```
#### func (*BranchStatement) Idx0
```go
func (self *BranchStatement) Idx0() file.Idx
```
#### func (*BranchStatement) Idx1
```go
func (self *BranchStatement) Idx1() file.Idx
```
#### type CallExpression
```go
type CallExpression struct {
Callee Expression
LeftParenthesis file.Idx
ArgumentList []Expression
RightParenthesis file.Idx
}
```
#### func (*CallExpression) Idx0
```go
func (self *CallExpression) Idx0() file.Idx
```
#### func (*CallExpression) Idx1
```go
func (self *CallExpression) Idx1() file.Idx
```
#### type CaseStatement
```go
type CaseStatement struct {
Case file.Idx
Test Expression
Consequent []Statement
}
```
#### func (*CaseStatement) Idx0
```go
func (self *CaseStatement) Idx0() file.Idx
```
#### func (*CaseStatement) Idx1
```go
func (self *CaseStatement) Idx1() file.Idx
```
#### type CatchStatement
```go
type CatchStatement struct {
Catch file.Idx
Parameter *Identifier
Body Statement
}
```
#### func (*CatchStatement) Idx0
```go
func (self *CatchStatement) Idx0() file.Idx
```
#### func (*CatchStatement) Idx1
```go
func (self *CatchStatement) Idx1() file.Idx
```
#### type ConditionalExpression
```go
type ConditionalExpression struct {
Test Expression
Consequent Expression
Alternate Expression
}
```
#### func (*ConditionalExpression) Idx0
```go
func (self *ConditionalExpression) Idx0() file.Idx
```
#### func (*ConditionalExpression) Idx1
```go
func (self *ConditionalExpression) Idx1() file.Idx
```
#### type DebuggerStatement
```go
type DebuggerStatement struct {
Debugger file.Idx
}
```
#### func (*DebuggerStatement) Idx0
```go
func (self *DebuggerStatement) Idx0() file.Idx
```
#### func (*DebuggerStatement) Idx1
```go
func (self *DebuggerStatement) Idx1() file.Idx
```
#### type Declaration
```go
type Declaration interface {
// contains filtered or unexported methods
}
```
All declaration nodes implement the Declaration interface.
#### type DoWhileStatement
```go
type DoWhileStatement struct {
Do file.Idx
Test Expression
Body Statement
}
```
#### func (*DoWhileStatement) Idx0
```go
func (self *DoWhileStatement) Idx0() file.Idx
```
#### func (*DoWhileStatement) Idx1
```go
func (self *DoWhileStatement) Idx1() file.Idx
```
#### type DotExpression
```go
type DotExpression struct {
Left Expression
Identifier Identifier
}
```
#### func (*DotExpression) Idx0
```go
func (self *DotExpression) Idx0() file.Idx
```
#### func (*DotExpression) Idx1
```go
func (self *DotExpression) Idx1() file.Idx
```
#### type EmptyStatement
```go
type EmptyStatement struct {
Semicolon file.Idx
}
```
#### func (*EmptyStatement) Idx0
```go
func (self *EmptyStatement) Idx0() file.Idx
```
#### func (*EmptyStatement) Idx1
```go
func (self *EmptyStatement) Idx1() file.Idx
```
#### type Expression
```go
type Expression interface {
Node
// contains filtered or unexported methods
}
```
All expression nodes implement the Expression interface.
#### type ExpressionStatement
```go
type ExpressionStatement struct {
Expression Expression
}
```
#### func (*ExpressionStatement) Idx0
```go
func (self *ExpressionStatement) Idx0() file.Idx
```
#### func (*ExpressionStatement) Idx1
```go
func (self *ExpressionStatement) Idx1() file.Idx
```
#### type ForInStatement
```go
type ForInStatement struct {
For file.Idx
Into Expression
Source Expression
Body Statement
}
```
#### func (*ForInStatement) Idx0
```go
func (self *ForInStatement) Idx0() file.Idx
```
#### func (*ForInStatement) Idx1
```go
func (self *ForInStatement) Idx1() file.Idx
```
#### type ForStatement
```go
type ForStatement struct {
For file.Idx
Initializer Expression
Update Expression
Test Expression
Body Statement
}
```
#### func (*ForStatement) Idx0
```go
func (self *ForStatement) Idx0() file.Idx
```
#### func (*ForStatement) Idx1
```go
func (self *ForStatement) Idx1() file.Idx
```
#### type FunctionDeclaration
```go
type FunctionDeclaration struct {
Function *FunctionLiteral
}
```
#### type FunctionLiteral
```go
type FunctionLiteral struct {
Function file.Idx
Name *Identifier
ParameterList *ParameterList
Body Statement
Source string
DeclarationList []Declaration
}
```
#### func (*FunctionLiteral) Idx0
```go
func (self *FunctionLiteral) Idx0() file.Idx
```
#### func (*FunctionLiteral) Idx1
```go
func (self *FunctionLiteral) Idx1() file.Idx
```
#### type Identifier
```go
type Identifier struct {
Name string
Idx file.Idx
}
```
#### func (*Identifier) Idx0
```go
func (self *Identifier) Idx0() file.Idx
```
#### func (*Identifier) Idx1
```go
func (self *Identifier) Idx1() file.Idx
```
#### type IfStatement
```go
type IfStatement struct {
If file.Idx
Test Expression
Consequent Statement
Alternate Statement
}
```
#### func (*IfStatement) Idx0
```go
func (self *IfStatement) Idx0() file.Idx
```
#### func (*IfStatement) Idx1
```go
func (self *IfStatement) Idx1() file.Idx
```
#### type LabelledStatement
```go
type LabelledStatement struct {
Label *Identifier
Colon file.Idx
Statement Statement
}
```
#### func (*LabelledStatement) Idx0
```go
func (self *LabelledStatement) Idx0() file.Idx
```
#### func (*LabelledStatement) Idx1
```go
func (self *LabelledStatement) Idx1() file.Idx
```
#### type NewExpression
```go
type NewExpression struct {
New file.Idx
Callee Expression
LeftParenthesis file.Idx
ArgumentList []Expression
RightParenthesis file.Idx
}
```
#### func (*NewExpression) Idx0
```go
func (self *NewExpression) Idx0() file.Idx
```
#### func (*NewExpression) Idx1
```go
func (self *NewExpression) Idx1() file.Idx
```
#### type Node
```go
type Node interface {
Idx0() file.Idx // The index of the first character belonging to the node
Idx1() file.Idx // The index of the first character immediately after the node
}
```
All nodes implement the Node interface.
#### type NullLiteral
```go
type NullLiteral struct {
Idx file.Idx
Literal string
}
```
#### func (*NullLiteral) Idx0
```go
func (self *NullLiteral) Idx0() file.Idx
```
#### func (*NullLiteral) Idx1
```go
func (self *NullLiteral) Idx1() file.Idx
```
#### type NumberLiteral
```go
type NumberLiteral struct {
Idx file.Idx
Literal string
Value interface{}
}
```
#### func (*NumberLiteral) Idx0
```go
func (self *NumberLiteral) Idx0() file.Idx
```
#### func (*NumberLiteral) Idx1
```go
func (self *NumberLiteral) Idx1() file.Idx
```
#### type ObjectLiteral
```go
type ObjectLiteral struct {
LeftBrace file.Idx
RightBrace file.Idx
Value []Property
}
```
#### func (*ObjectLiteral) Idx0
```go
func (self *ObjectLiteral) Idx0() file.Idx
```
#### func (*ObjectLiteral) Idx1
```go
func (self *ObjectLiteral) Idx1() file.Idx
```
#### type ParameterList
```go
type ParameterList struct {
Opening file.Idx
List []*Identifier
Closing file.Idx
}
```
#### type Program
```go
type Program struct {
Body []Statement
DeclarationList []Declaration
File *file.File
}
```
#### func (*Program) Idx0
```go
func (self *Program) Idx0() file.Idx
```
#### func (*Program) Idx1
```go
func (self *Program) Idx1() file.Idx
```
#### type Property
```go
type Property struct {
Key string
Kind string
Value Expression
}
```
#### type RegExpLiteral
```go
type RegExpLiteral struct {
Idx file.Idx
Literal string
Pattern string
Flags string
Value string
}
```
#### func (*RegExpLiteral) Idx0
```go
func (self *RegExpLiteral) Idx0() file.Idx
```
#### func (*RegExpLiteral) Idx1
```go
func (self *RegExpLiteral) Idx1() file.Idx
```
#### type ReturnStatement
```go
type ReturnStatement struct {
Return file.Idx
Argument Expression
}
```
#### func (*ReturnStatement) Idx0
```go
func (self *ReturnStatement) Idx0() file.Idx
```
#### func (*ReturnStatement) Idx1
```go
func (self *ReturnStatement) Idx1() file.Idx
```
#### type SequenceExpression
```go
type SequenceExpression struct {
Sequence []Expression
}
```
#### func (*SequenceExpression) Idx0
```go
func (self *SequenceExpression) Idx0() file.Idx
```
#### func (*SequenceExpression) Idx1
```go
func (self *SequenceExpression) Idx1() file.Idx
```
#### type Statement
```go
type Statement interface {
Node
// contains filtered or unexported methods
}
```
All statement nodes implement the Statement interface.
#### type StringLiteral
```go
type StringLiteral struct {
Idx file.Idx
Literal string
Value string
}
```
#### func (*StringLiteral) Idx0
```go
func (self *StringLiteral) Idx0() file.Idx
```
#### func (*StringLiteral) Idx1
```go
func (self *StringLiteral) Idx1() file.Idx
```
#### type SwitchStatement
```go
type SwitchStatement struct {
Switch file.Idx
Discriminant Expression
Default int
Body []*CaseStatement
}
```
#### func (*SwitchStatement) Idx0
```go
func (self *SwitchStatement) Idx0() file.Idx
```
#### func (*SwitchStatement) Idx1
```go
func (self *SwitchStatement) Idx1() file.Idx
```
#### type ThisExpression
```go
type ThisExpression struct {
Idx file.Idx
}
```
#### func (*ThisExpression) Idx0
```go
func (self *ThisExpression) Idx0() file.Idx
```
#### func (*ThisExpression) Idx1
```go
func (self *ThisExpression) Idx1() file.Idx
```
#### type ThrowStatement
```go
type ThrowStatement struct {
Throw file.Idx
Argument Expression
}
```
#### func (*ThrowStatement) Idx0
```go
func (self *ThrowStatement) Idx0() file.Idx
```
#### func (*ThrowStatement) Idx1
```go
func (self *ThrowStatement) Idx1() file.Idx
```
#### type TryStatement
```go
type TryStatement struct {
Try file.Idx
Body Statement
Catch *CatchStatement
Finally Statement
}
```
#### func (*TryStatement) Idx0
```go
func (self *TryStatement) Idx0() file.Idx
```
#### func (*TryStatement) Idx1
```go
func (self *TryStatement) Idx1() file.Idx
```
#### type UnaryExpression
```go
type UnaryExpression struct {
Operator token.Token
Idx file.Idx // If a prefix operation
Operand Expression
Postfix bool
}
```
#### func (*UnaryExpression) Idx0
```go
func (self *UnaryExpression) Idx0() file.Idx
```
#### func (*UnaryExpression) Idx1
```go
func (self *UnaryExpression) Idx1() file.Idx
```
#### type VariableDeclaration
```go
type VariableDeclaration struct {
Var file.Idx
List []*VariableExpression
}
```
#### type VariableExpression
```go
type VariableExpression struct {
Name string
Idx file.Idx
Initializer Expression
}
```
#### func (*VariableExpression) Idx0
```go
func (self *VariableExpression) Idx0() file.Idx
```
#### func (*VariableExpression) Idx1
```go
func (self *VariableExpression) Idx1() file.Idx
```
#### type VariableStatement
```go
type VariableStatement struct {
Var file.Idx
List []Expression
}
```
#### func (*VariableStatement) Idx0
```go
func (self *VariableStatement) Idx0() file.Idx
```
#### func (*VariableStatement) Idx1
```go
func (self *VariableStatement) Idx1() file.Idx
```
#### type WhileStatement
```go
type WhileStatement struct {
While file.Idx
Test Expression
Body Statement
}
```
#### func (*WhileStatement) Idx0
```go
func (self *WhileStatement) Idx0() file.Idx
```
#### func (*WhileStatement) Idx1
```go
func (self *WhileStatement) Idx1() file.Idx
```
#### type WithStatement
```go
type WithStatement struct {
With file.Idx
Object Expression
Body Statement
}
```
#### func (*WithStatement) Idx0
```go
func (self *WithStatement) Idx0() file.Idx
```
#### func (*WithStatement) Idx1
```go
func (self *WithStatement) Idx1() file.Idx
```
--
**godocdown** http://github.com/robertkrimen/godocdown
|