• Stars
    star
    344
  • Rank 118,578 (Top 3 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Searching for unexpected `end` syntax errors takes a lot of time. Let this gem do it for you!

SyntaxSuggest

An error in your code forces you to stop. SyntaxSuggest helps you find those errors to get you back on your way faster.

Unmatched `end', missing keyword (`do', `def`, `if`, etc.) ?

  1  class Dog
> 2    defbark
> 4    end
  5  end

This project was previously named dead_end as it attempted to find dangling end keywords. The name was changed to be more descriptive and welcoming as part of the effort to merge it into Ruby 3.2.

Installation in your codebase

To automatically annotate errors when they happen, add this to your Gemfile:

gem 'syntax_suggest'

And then execute:

$ bundle install

If your application is not calling Bundler.require then you must manually add a require:

require "syntax_suggest"

If you're using rspec add this to your .rspec file:

--require syntax_suggest

This is needed because people can execute a single test file via bundle exec rspec path/to/file_spec.rb and if that file has a syntax error, it won't load spec_helper.rb to trigger any requires.

Install the CLI

To get the CLI and manually search for syntax errors (but not automatically annotate them), you can manually install the gem:

$ gem install syntax_suggest

This gives you the CLI command $ syntax_suggest for more info run $ syntax_suggest --help.

Editor integration

An extension is available for VSCode:

What syntax errors does it handle?

Syntax suggest will fire against all syntax errors and can isolate any syntax error. In addition, syntax_suggest attempts to produce human readable descriptions of what needs to be done to resolve the issue. For example:

  • Missing end:
Unmatched keyword, missing `end' ?

> 1  class Dog
> 2    def bark
> 4  end
  • Missing keyword
Unmatched `end', missing keyword (`do', `def`, `if`, etc.) ?

  1  class Dog
  2    def speak
> 3      @sounds.each |sound|
> 5      end
  6    end
  7  end
  • Missing pair characters (like {}, [], () , or |<var>|)
Unmatched `(', missing `)' ?

  1  class Dog
> 2    def speak(sound
> 4    end
  5  end
  • Any ambiguous or unknown errors will be annotated by the original ripper error output:
syntax error, unexpected end-of-input

  1  class Dog
  2    def meals_last_month
> 3      puts 3 *
  4    end
  5  end

How is it better than ruby -wc?

Ruby allows you to syntax check a file with warnings using ruby -wc. This emits a parser error instead of a human focused error. Ruby's parse errors attempt to narrow down the location and can tell you if there is a glaring indentation error involving end.

The syntax_suggest algorithm doesn't just guess at the location of syntax errors, it re-parses the document to prove that it captured them.

This library focuses on the human side of syntax errors. It cares less about why the document could not be parsed (computer problem) and more on what the programmer needs (human problem) to fix the problem.

Sounds cool, but why isn't this baked into Ruby directly?

We are now talking about it https://bugs.ruby-lang.org/issues/18159#change-93682.

Artificial Inteligence?

This library uses a goal-seeking algorithm for syntax error detection similar to that of a path-finding search. For more information read the blog post about how it works under the hood.

How does it detect syntax error locations?

We know that source code that does not contain a syntax error can be parsed. We also know that code with a syntax error contains both valid code and invalid code. If you remove the invalid code, then we can programatically determine that the code we removed contained a syntax error. We can do this detection by generating small code blocks and searching for which blocks need to be removed to generate valid source code.

Since there can be multiple syntax errors in a document it's not good enough to check individual code blocks, we've got to check multiple at the same time. We will keep creating and adding new blocks to our search until we detect that our "frontier" (which contains all of our blocks) contains the syntax error. After this, we can stop our search and instead focus on filtering to find the smallest subset of blocks that contain the syntax error.

Here's an example:

Use internals

To use the syntax_suggest gem without monkeypatching you can require 'syntax_suggest/api'. This will allow you to load syntax_suggest and use its internals without mutating require.

Stable internal interface(s):

  • SyntaxSuggest.handle_error(e)

Any other entrypoints are subject to change without warning. If you want to use an internal interface from syntax_suggest not on this list, open an issue to explain your use case.

Development

Handling conflicts with the default gem

Because syntax_suggest is a default gem you can get conflicts when working on this project with Ruby 3.2+. To fix conflicts you can disable loading syntax_suggest as a default gem by using then environment variable RUBYOPT with the value --disable=syntax_suggest. The RUBYOPT environment variable works the same as if we had entered those flags directly in the ruby cli (i.e. ruby --disable=syntax_suggest is the same as RUBYOPT="--disable=syntax_suggest" ruby). It's needed because we don't always directly execute Ruby and RUBYOPT will be picked up when other commands load ruby (rspec, rake, or bundle etc.).

There are some binstubs that already have this done for you. Instead of running bundle exec rake you can run bin/rake. Binstubs provided:

  • bin/bundle
  • bin/rake
  • bin/rspec

Installation

After checking out the repo, run bin/setup to install dependencies. Then, run bin/rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bin/rake install. To release a new version, update the version number in version.rb, and then run bin/rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

How to debug changes to output display

You can see changes to output against a variety of invalid code by running specs and using the DEBUG_DISPLAY=1 environment variable. For example:

$ DEBUG_DISPLAY=1 bundle exec rspec spec/ --format=failures

Run profiler

You can output profiler data to the tmp directory by running:

$ DEBUG_PERF=1 bundle exec rspec spec/integration/syntax_suggest_spec.rb

Some outputs are in text format, some are html, the raw marshaled data is available in raw.rb.marshal. See https://ruby-prof.github.io/#reports for more info. One interesting one, is the "kcachegrind" interface. To view this on mac:

$ brew install qcachegrind

Open:

$ qcachegrind tmp/last/profile.callgrind.out.<numbers>

Environment variables

  • SYNTAX_SUGGEST_DEBUG - Enables debug output to STDOUT/STDERR and/or disk at ./tmp. The contents of debugging output are not stable and may change. If you would like stability, please open an issue to explain your use case.
  • SYNTAX_SUGGEST_TIMEOUT - Changes the default timeout value to the number set (in seconds).

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/zombocom/syntax_suggest. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the SyntaxSuggest project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

More Repositories

1

ruby

The Ruby Programming Language
Ruby
20,732
star
2

rake

A make-like build utility for Ruby.
Ruby
2,293
star
3

rbs

Type Signature for Ruby
Ruby
1,876
star
4

did_you_mean

The gem that has been saving people from typos since 2014
Ruby
1,870
star
5

debug

Debugging functionality for Ruby
Ruby
1,058
star
6

www.ruby-lang.org

Source of the https://www.ruby-lang.org website.
Ruby
856
star
7

rdoc

RDoc produces HTML and online documentation for Ruby projects.
Ruby
798
star
8

prism

Prism Ruby parser
C
755
star
9

setup-ruby

An action to download a prebuilt Ruby and add it to the PATH in 5 seconds
JavaScript
753
star
10

typeprof

An experimental type-level Ruby interpreter for testing and understanding Ruby code
Ruby
706
star
11

ruby.wasm

ruby.wasm is a collection of WebAssembly ports of the CRuby.
Ruby
614
star
12

spec

The Ruby Spec Suite aka ruby/spec
Ruby
556
star
13

psych

A libyaml wrapper for Ruby
Ruby
543
star
14

racc

Racc is an LALR(1) parser generator. It is written in Ruby itself, and generates ruby programs.
Yacc
530
star
15

irb

interactive Ruby
Ruby
351
star
16

curses

Ruby binding for curses, ncurses, and PDCurses. Formerly part of the ruby standard library.
C
285
star
17

webrick

HTTP server toolkit
Ruby
246
star
18

gem_rbs_collection

A collection of RBS for gems.
Ruby
235
star
19

reline

The compatible library with the API of Ruby's stdlib 'readline'
Ruby
234
star
20

openssl

Provides SSL, TLS and general purpose cryptography.
C
233
star
21

TryRuby

This 4th iteration of TryRuby is a website where you can learn the Ruby language.
Ruby
219
star
22

power_assert

Power Assert for Ruby
Ruby
186
star
23

vscode-rdbg

VSCode Ruby rdbg Debugger
TypeScript
165
star
24

rss

RSS reading and writing
Ruby
163
star
25

csv

CSV Reading and Writing
Ruby
159
star
26

lrama

Pure Ruby LALR parser generator
Ruby
158
star
27

drb

Distributed object system for Ruby
Ruby
154
star
28

fiddle

A libffi wrapper for Ruby.
Ruby
147
star
29

error_highlight

The gem enhances Exception#message by adding a short explanation where the exception is raised
Ruby
145
star
30

benchmark

The Benchmark module provides methods for benchmarking Ruby code, giving detailed reports on the time taken for each task.
Ruby
136
star
31

timeout

Timeout provides a way to auto-terminate a potentially long-running operation if it hasn't finished in a fixed amount of time.
Ruby
128
star
32

tk

Tk interface module using tcltklib
Ruby
115
star
33

rexml

REXML is an XML toolkit for Ruby
Ruby
110
star
34

bigdecimal

Arbitrary-precision decimal floating-point number library for Ruby
C
108
star
35

ostruct

OpenStruct implementation
Ruby
106
star
36

erb

An easy to use but powerful templating system for Ruby
Ruby
103
star
37

logger

simple logging utility
Ruby
97
star
38

net-http

Net::HTTP provides a rich library which can be used to build HTTP user-agents.
Ruby
84
star
39

open3

Open3 gives you access to stdin, stdout, and stderr when running other programs.
Ruby
79
star
40

dev-meeting-log

78
star
41

uri

URI is a module providing classes to handle Uniform Resource Identifiers
Ruby
69
star
42

ruby-docker-images

Ruby Docker Images
Ruby
69
star
43

pstore

PStore implements a file based persistence mechanism based on a Hash.
Ruby
67
star
44

date

A subclass of Object includes Comparable module for handling dates.
C
66
star
45

strscan

Provides lexical scanning operations on a String.
C
66
star
46

ipaddr

A class to manipulate an IP address
Ruby
62
star
47

ruby2_keywords

Shim library for Module#ruby2_keywords
Ruby
61
star
48

fileutils

Several file utility methods for copying, moving, removing, etc.
Ruby
60
star
49

mspec

RSpec-like test runner for the Ruby Spec Suite
Ruby
57
star
50

shell

Shell implements an idiomatic Ruby interface for common UNIX shell commands
Ruby
57
star
51

matrix

An implementation of Matrix and Vector classes
Ruby
56
star
52

net-telnet

Provides telnet client functionality.
Ruby
56
star
53

iconv

iconv wrapper
C
54
star
54

tracer

Outputs a source level execution trace of a Ruby program.
Ruby
52
star
55

io-console

add console capabilities to IO instance
Ruby
51
star
56

docs.ruby-lang.org

Source of the docs.ruby-lang.org site
Ruby
48
star
57

digest

Provides a framework for message digest libraries.
C
48
star
58

optparse

OptionParser is a class for command-line option analysis.
Ruby
47
star
59

zlib

Ruby interface for the zlib compression/decompression library
C
43
star
60

securerandom

Interface for secure random number generator
Ruby
42
star
61

open-uri

OpenURI is an easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP.
Ruby
41
star
62

net-imap

Ruby client api for Internet Message Access Protocol
Ruby
41
star
63

forwardable

Provides delegation of specified methods to a designated object
Ruby
40
star
64

chkbuild

Continuous Integration tool, mainly for Ruby
Ruby
40
star
65

net-smtp

This library provides functionality to send internet mail via SMTP, the Simple Mail Transfer Protocol.
Ruby
36
star
66

xmlrpc

The Ruby standard library package 'xmlrpc'
Ruby
35
star
67

resolv

A thread-aware DNS resolver library written in Ruby
Ruby
32
star
68

prime

Prime numbers and factorization library.
Ruby
32
star
69

cgi

CGI is a large class, providing several categories of methods, many of which are mixed in from other modules.
Ruby
32
star
70

stringio

Pseudo `IO` class from/to `String`.
Java
31
star
71

rubyci

The Ruby CI for chkbuild
Ruby
31
star
72

gserver

GServer implements a generic server
Ruby
31
star
73

observer

The Observer pattern provides a simple mechanism for one object to inform a set of interested third-party objects when its state changes.
Ruby
29
star
74

snap.ruby

Ruby snap
HTML
29
star
75

ruby-builder

A repository building Ruby/JRuby/TruffleRuby releases to be used in GitHub Actions
Ruby
28
star
76

tempfile

A utility class for managing temporary files.
Ruby
26
star
77

etc

Provides access to information typically stored in UNIX /etc directory.
C
26
star
78

profile

Ruby
26
star
79

net-ftp

This class implements the File Transfer Protocol.
Ruby
24
star
80

singleton

The Singleton module implements the Singleton pattern.
Ruby
24
star
81

yaml

This module provides a Ruby interface for data serialization in YAML format.
Ruby
24
star
82

net-protocol

The abstruct interface for net-* client.
Ruby
24
star
83

actions

Ruby
22
star
84

pathname

Pathname represents the name of a file or directory on the filesystem, but not the file itself.
Ruby
22
star
85

sdbm

Provides a simple file-based key-value store with String keys and values.
C
22
star
86

un

Utilities to replace common UNIX commands
Ruby
21
star
87

set

This library provides the Set class, which deals with a collection of unordered values with no duplicates.
Ruby
21
star
88

syck

Syck from stdlib turned in to a gem
C
20
star
89

ruby-dev-builder

CRuby Dev Builds for GitHub Actions
Ruby
19
star
90

pp

Provides a PrettyPrinter for Ruby objects
Ruby
19
star
91

English

Ruby
19
star
92

play-ruby

Ruby Playground Website
TypeScript
19
star
93

base64

Support for encoding and decoding binary data using a Base64 representation
Ruby
18
star
94

git.ruby-lang.org

Manifest for the Ruby git server
Ruby
17
star
95

net-pop

This library provides functionality for retrieving email via POP3, the Post Office Protocol version 3. For details of POP3
Ruby
17
star
96

repl_type_completor

Ruby
17
star
97

delegate

This library provides three different ways to delegate method calls to an object.
Ruby
17
star
98

rbs_json_schema

Generate RBS files from JSON Schema
Ruby
16
star
99

redmine_rd_formatter

A redmine plugin for supporting RD as a wiki format
Ruby
15
star
100

b.r-l.o

[Fork] Redmine for b.r-l.o
Ruby
14
star