interpreter

package
v0.0.0-...-eb36113 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 19, 2023 License: Apache-2.0, MIT Imports: 2 Imported by: 0

README

解释器模式

解释器模式定义一套语言文法,并设计该语言解释器,使用户能使用特定文法控制解释器行为。

解释器模式的意义在于,它分离多种复杂功能的实现,每个功能只需关注自身的解释。

对于调用者不用关心内部的解释器的工作,只需要用简单的方式组合命令就可以。

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddNode

type AddNode struct {
	// contains filtered or unexported fields
}

func (*AddNode) Interpret

func (n *AddNode) Interpret() int

type MinNode

type MinNode struct {
	// contains filtered or unexported fields
}

func (*MinNode) Interpret

func (n *MinNode) Interpret() int

type Node

type Node interface {
	Interpret() int
}

type Parser

type Parser struct {
	// contains filtered or unexported fields
}

func (*Parser) Parse

func (p *Parser) Parse(exp string)

func (*Parser) Result

func (p *Parser) Result() Node

type ValNode

type ValNode struct {
	// contains filtered or unexported fields
}

func (*ValNode) Interpret

func (n *ValNode) Interpret() int

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL