-
Updated
Nov 8, 2020 - Swift
code-generator
Here are 764 public repositories matching this topic...
-
Updated
Nov 10, 2020 - Swift
-
Updated
Nov 13, 2020 - TypeScript
-
Updated
Nov 11, 2020 - Java
-
Updated
Nov 13, 2020 - Java
-
Updated
Nov 14, 2020 - Java
-
Updated
Nov 6, 2020 - TypeScript
-
Updated
Oct 11, 2020 - Go
-
Updated
Oct 13, 2020 - Java
-
Updated
Nov 11, 2020 - Java
-
Updated
Aug 28, 2020 - Go
-
Updated
Feb 23, 2020 - Swift
-
Updated
Jul 7, 2020 - Java
-
Updated
Nov 7, 2020 - PHP
-
Updated
Oct 17, 2020 - M4
-
Updated
Nov 4, 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 20, 2020 - FreeMarker
-
Updated
Nov 11, 2020 - JavaScript
建议BaseRepository 里增加返回 IQueryable 的Get / GetAsync 的方法
有了之后就可以在service 里面进行拼接LINQ 用于获取到ViewModel中关联其他类的数据
-
Updated
Nov 13, 2020 - C
-
Updated
Oct 13, 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
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