zeek / zeek/zeekscript

Cannot format zeek-7 IDs in global scope

Open
#83 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Python
Stars
11
Forks
4
Avg merge
3d 19h
Merged PRs (30d)
1

Description

zeek-7 changed the way global IDs are written from GLOBAL::XYZ to ::XYZ. This syntax is not supported by e.g., zeek-format.

type r: record { };

event zeek_init()
	{
	local x: ::r;
	}
$ zeek-format foo.zeek
cannot parse line 5, col 9: ": :"
type r: record { };

event zeek_init()
        {
        local x : : : r;
        }

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by running zeek-format on the reproducer in the issue and trace how the parser handles the ::r type annotation. Done means the example formats successfully without splitting the global-scope :: syntax.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
tooling
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
45/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.