-
Updated
Sep 23, 2020 - Swift
code-generator
Here are 758 public repositories matching this topic...
-
Updated
Oct 11, 2020 - Swift
-
Updated
Oct 10, 2020 - TypeScript
-
Updated
Oct 7, 2020 - Java
-
Updated
Oct 8, 2020 - Java
-
Updated
Oct 9, 2020 - Java
-
Updated
Oct 8, 2020 - TypeScript
-
Updated
Oct 11, 2020 - Go
-
Updated
Jul 1, 2020 - Java
-
Updated
Oct 6, 2020 - Java
-
Updated
Aug 28, 2020 - Go
-
Updated
Feb 23, 2020 - Swift
-
Updated
Jul 7, 2020 - Java
-
Updated
Oct 11, 2020 - PHP
-
Updated
Oct 4, 2020 - M4
-
Updated
Oct 9, 2020 - C++
I haven't validated the theory directly, but I've noticed that casting to a type variable is considered "fully checked" by FreeBuilder's analyser (missing case in CAST_IS_FULLY_CHECKED visitor), so it seems likely.
Very minor issue but also trivial to fix.
-
Updated
Aug 13, 2019 - Swift
-
Updated
Oct 10, 2020 - FreeMarker
-
Updated
Oct 10, 2020 - C#
-
Updated
Oct 10, 2020 - JavaScript
-
Updated
Oct 8, 2020 - C
-
Updated
Jul 9, 2020 - JavaScript
I have this freezed class
import 'package:flutter/foundation.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
part 'time_slot.freezed.dart';
@freezed
abstract class TimeSlot implements _$TimeSlot {
const TimeSlot._();
factory TimeSlot({
String start,
String end,
}) = _TimeSlot;
@override
String toString() {
return start + end-
Updated
Jul 1, 2020 - JavaScript
-
Updated
Feb 25, 2018 - Java
Improve this page
Add a description, image, and links to the code-generator topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the code-generator topic, visit your repo's landing page and select "manage topics."
Problem statement
Not a bug, but a query and requirement.
As a new go-swagger user, I'm following doc to generate client (https://goswagger.io/generate/client.html). But the doc is too simple and lacks necessary explanation.
For example, what's the imported "github.com/myproject/client/operations" in the sample code. The generated todo-list client code doesn't contain any "operations" di