sorbet-runtime 0.5.6205 → 0.5.6223

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22654c7e33f85d5a335dd53083404514ac87e14f19d78ab9900100670b314961
4
- data.tar.gz: 180110f1ab1b0be1a30fa5db592b3cb36ed7a1d697c0040e6ff1a2157685cf4d
3
+ metadata.gz: e4965b0c556acb24bfe27316314910f4439226de05f4958f08438d92ab3854ed
4
+ data.tar.gz: 5ac1bb6baaf1e96d8d010924f0b0b8916807bf50a6009cdba4d605eceb41ac2c
5
5
  SHA512:
6
- metadata.gz: 7aedc7b99b01895c477307d956170d16643f4a007a8fb8f0e339202ceb0fe767e21b335a7a025944a7f5e1d4fad2de4f1ed707d81cd90648653d19deeb54027b
7
- data.tar.gz: e16af24448959561367b1d83db953991290c2c468efb8dd8e214e205edf1da7c6779f11353e317a876d413276424206621172f8cef54fa161a9ac8736c9b7b57
6
+ metadata.gz: 24272d365d1295e5edd880fa4f3f984191cca6e6f29431cc8c20d8531fa811df1f328533b16f2784c7cba6e2460e4c7e0276ca1e3c240a54234661d39d7e1abf
7
+ data.tar.gz: 7ac8f9af520dca8a514678db4b08c4b89d8366e98b8c57be053494128f0c82e585a35e7355ac5d037d3e3d07e063885921a5ac86dbc53804841c694201491ed8
@@ -99,18 +99,21 @@ module T::Props
99
99
  else
100
100
  "#{varname}.nil? ? nil : #{inner}"
101
101
  end
102
- elsif type.types.all? {|t| generate(t, mode, varname).nil?}
103
- # Handle, e.g., T::Boolean
104
- nil
105
102
  else
106
- # We currently deep_clone_object if the type was T.any(Integer, Float).
107
- # When we get better support for union types (maybe this specific
108
- # union type, because it would be a replacement for
109
- # Chalk::ODM::DeprecatedNumemric), we could opt to special case
110
- # this union to have no specific serde transform (the only reason
111
- # why Float has a special case is because round tripping through
112
- # JSON might normalize Floats to Integers)
113
- "T::Props::Utils.deep_clone_object(#{varname})"
103
+ inners = type.types.map {|t| generate(t, mode, varname)}.uniq
104
+ if inners.length <= 1
105
+ # Handle, e.g., T::Boolean
106
+ inners.first
107
+ else
108
+ # We currently deep_clone_object if the type was T.any(Integer, Float).
109
+ # When we get better support for union types (maybe this specific
110
+ # union type, because it would be a replacement for
111
+ # Chalk::ODM::DeprecatedNumemric), we could opt to special case
112
+ # this union to have no specific serde transform (the only reason
113
+ # why Float has a special case is because round tripping through
114
+ # JSON might normalize Floats to Integers)
115
+ "T::Props::Utils.deep_clone_object(#{varname})"
116
+ end
114
117
  end
115
118
  when T::Types::Intersection
116
119
  dynamic_fallback = "T::Props::Utils.deep_clone_object(#{varname})"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sorbet-runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6205
4
+ version: 0.5.6223
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-09 00:00:00.000000000 Z
11
+ date: 2021-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest