Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ir: add shape to ExampleQueryParameter #4222

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,77 +73,3 @@ exports[`Swift Language > makes type 1`] = `

}"
`;

exports[`Swift Language makes enum 1`] = `
"enum CodingKeys: String, CodingKey {
case name
case fallbackContent = fallback_content
}"
`;

exports[`Swift Language makes enum case 1`] = `"case fallbackContent = fallback_content"`;

exports[`Swift Language makes file 1`] = `
"// Sample.swift

import Foundation
import UIKit

open class Room {

class Person {

func getName() {
print("Hey!")
}

}

enum RoomType {
case big
case small = sml
}

func openDoor() {
print("Hey!")
}

public static func closeDoor() async throws -> Int {
print("Hey!")
}

}
"
`;

exports[`Swift Language makes file header 1`] = `"This is the header to a file"`;

exports[`Swift Language makes function 1`] = `
"fileprivate static func makePerson(name: String {

}, age: Int {

} = FIX THIS) async {
print("Hey!")
}"
`;

exports[`Swift Language makes import 1`] = `"import ExamplePackage"`;

exports[`Swift Language makes primatives 1`] = `" let count: Int"`;

exports[`Swift Language makes struct 1`] = `
"public struct TopGun: Movie {
let description: String
}"
`;

exports[`Swift Language makes type 1`] = `
"open struct ExampleObject: Codable, NSObject {

func fetchData() {
print("Hey!")
}

}"
`;
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,3 @@ exports[`convertColorsConfiguration > should support accentPrimaryDeprecated 1`]
"type": "light",
}
`;

exports[`convertColorsConfiguration should support accentPrimaryDeprecated 1`] = `
{
"accentPrimary": {
"a": 1,
"b": 238,
"g": 101,
"r": 93,
},
"background": undefined,
"border": undefined,
"cardBackground": undefined,
"headerBackground": undefined,
"sidebarBackground": undefined,
"type": "light",
}
`;
Loading
Loading