Giter Club home page Giter Club logo

ex_note's Introduction

ExNote

An experiment to see how difficult it is to create ExDoc like module attributes for things like TODOs and FIXMEs. As this is just an experiment, it isn't intended for use in production applications.

Initially I wanted something like this:

defmodule ExNoteExampleModule do
  @todo "Test this"
  @fixme "This is broken"
end

But it turns out that isn't very easy to do, since I would need to take all the AST for the module and preprocess it before compiling. By useing the ExNote module it becomes much easier. I can simply use the todo, fixme and optimize macros:

defmodule ExNoteExampleModule do
  use ExNote

  todo "Test this"
  fixme "This is broken"
end

##Usage

Use it in a module:

defmodule ExNoteExampleModule do
  use ExNote

  todo "Test this"
  fixme "This is broken"
end

The module will contain a couple functions:

# Retrieve all the notes
iex(1)> ExNoteExampleModule.notes
%{fixme: [%{line: 5, note: "This is broken"}],
  todo: [%{line: 4, note: "Test this"}]}

# Get all `todo` notes
iex(2)> ExNoteExampleModule.todos
[%{line: 4, note: "Test this"}]


# Get all `optimize` notes
iex(3)> ExNoteExampleModule.optimizes
nil

# Get all `fixme` notes
iex(4)> ExNoteExampleModule.fixmes
[%{line: 5, note: "This is broken"}]

# Get all notes in a module
iex(5)> ExNote.get_notes(ExNoteExampleModule)
%{fixme: [%{line: 5, note: "This is broken"}],
  todo: [%{line: 4, note: "Test this"}]}

ex_note's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

mjs2600

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.