-
Updated
Jun 8, 2020 - Java
codegenerator
Here are 161 public repositories matching this topic...
-
Updated
Mar 9, 2019 - JavaScript
-
Updated
Jun 1, 2020 - C#
-
Updated
Jun 8, 2020 - Go
-
Updated
Jun 4, 2020 - Kotlin
-
Updated
Dec 20, 2019 - JavaScript
-
Updated
Mar 29, 2020 - Go
Reason/Context
When developing templates sometimes you make an implementation mistake in a filter could be a simple cannot call method of undefined
, however when that happens we receive no information about where in the filter the error occurred. It sometimes takes a lot of time to figure out where the error is really located, and sometimes the only approach is step by step console log and
Currently on generating the following is created:
fun url title ->
{ url = url
title = title }
|> fun f -> withFields (f)
|> fun codec ->
let decode = fst codec
let encode = snd codec
jfieldOpt ("url") (fun x -> x.url) (decode, encode)
|> fun codec ->
let decode = fst codec
let encode = snd codec
-
Updated
Jun 12, 2019 - C#
-
Updated
Jan 9, 2020 - C#
-
Updated
Jun 8, 2020 - Java
-
Updated
Jan 26, 2020 - Kotlin
-
Updated
Mar 5, 2018 - Go
-
Updated
May 31, 2019 - Java
-
Updated
Jun 8, 2020 - FreeMarker
-
Updated
Jan 16, 2019 - PHP
-
Updated
Sep 18, 2019 - Kotlin
-
Updated
May 28, 2019 - Go
-
Updated
Jun 8, 2020 - Go
-
Updated
Sep 4, 2017 - Python
-
Updated
Nov 22, 2018 - Java
-
Updated
May 23, 2019 - Rust
Improve this page
Add a description, image, and links to the codegenerator topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the codegenerator topic, visit your repo's landing page and select "manage topics."
I've been using Sourcery to generate documentation automatically for GitHub wiki (i.e. generate markdown files based on types & annotations), as it's pretty user friendly on there (as in "easy to read") and also very easy to do in templates thanks to Sourcery's capability to generate files on the fly.
However, using annotations is not very "coder-friendly" though, as it gets hard to maintain be