Ruby 3.5.0dev (2025-01-10 revision 5fab31b15e32622c4b71d1d347a41937e9f9c212)
extension.h
1#ifndef PRISM_EXT_NODE_H
2#define PRISM_EXT_NODE_H
3
4#define EXPECTED_PRISM_VERSION "1.2.0"
5
6#include <ruby.h>
7#include <ruby/encoding.h>
8#include "prism.h"
9
10VALUE pm_source_new(const pm_parser_t *parser, rb_encoding *encoding);
11VALUE pm_token_new(const pm_parser_t *parser, const pm_token_t *token, rb_encoding *encoding, VALUE source);
12VALUE pm_ast_new(const pm_parser_t *parser, const pm_node_t *node, rb_encoding *encoding, VALUE source);
13VALUE pm_integer_new(const pm_integer_t *integer);
14
15void Init_prism_api_node(void);
16void Init_prism_pack(void);
17RUBY_FUNC_EXPORTED void Init_prism(void);
18
19#endif
Encoding relates APIs.
The main header file for the prism parser.
A structure represents an arbitrary-sized integer.
Definition pm_integer.h:20
This is the base structure that represents a node in the syntax tree.
Definition ast.h:1069
This struct represents the overall parser.
Definition parser.h:640
This struct represents a token in the Ruby source.
Definition ast.h:530
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40